mail/src/sass/_scaffolding.scss

52 lines
926 B
SCSS
Raw Normal View History

2013-09-16 13:46:04 -04:00
// Reset the box-sizing
*,
*:before,
*:after {
box-sizing: border-box;
// 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;
// disable box shadow on firefox
background-image: none;
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
user-select: none;
2013-09-16 13:46:04 -04:00
}