2013-09-16 13:46:04 -04:00
|
|
|
// Reset the box-sizing
|
|
|
|
|
|
|
|
*,
|
|
|
|
*:before,
|
|
|
|
*:after {
|
|
|
|
box-sizing: border-box;
|
2014-04-22 10:42:31 -04:00
|
|
|
|
|
|
|
// remove flickering on item touch selection in ios
|
|
|
|
-webkit-tap-highlight-color: transparent !important;
|
2013-09-16 13:46:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Body reset
|
|
|
|
|
|
|
|
html {
|
|
|
|
font-size: 62.5%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: $font-family-base;
|
|
|
|
font-size: $font-size-base;
|
|
|
|
line-height: $line-height-base;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset fonts for relevant elements
|
|
|
|
input,
|
|
|
|
button,
|
|
|
|
select,
|
|
|
|
textarea {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
2013-09-18 16:05:51 -04:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2013-09-16 13:46:04 -04:00
|
|
|
}
|
|
|
|
|
2014-07-31 15:39:43 -04:00
|
|
|
fieldset {
|
|
|
|
border: 1px solid $color-grey-lighter;
|
|
|
|
}
|
|
|
|
|
2013-09-16 13:46:04 -04:00
|
|
|
// Basic layout
|
2013-09-17 13:11:30 -04:00
|
|
|
.main-app-view {
|
|
|
|
height: 100%;
|
2013-10-05 10:07:42 -04:00
|
|
|
|
2013-11-11 09:29:22 -05:00
|
|
|
// allow text selection
|
2014-04-02 13:47:50 -04:00
|
|
|
user-select: none;
|
2013-09-16 13:46:04 -04:00
|
|
|
}
|