BookStack/resources/assets/sass/_html.scss

29 lines
384 B
SCSS
Raw Normal View History

2015-07-12 19:01:42 +00:00
* {
2015-08-31 10:43:28 +00:00
box-sizing: border-box;
2015-07-12 19:01:42 +00:00
}
2015-07-12 19:01:42 +00:00
html {
2015-08-31 10:43:28 +00:00
background-color: #FFFFFF;
height: 100%;
overflow-y: scroll;
&.flexbox {
overflow-y: hidden;
}
&.shaded {
background-color: #F2F2F2;
}
2015-07-12 19:01:42 +00:00
}
2015-07-12 19:01:42 +00:00
body {
2015-08-31 10:43:28 +00:00
font-size: $fs-m;
line-height: 1.6;
color: #616161;
-webkit-font-smoothing: antialiased;
2017-08-20 12:57:25 +00:00
&.shaded {
background-color: #F2F2F2;
}
2015-07-12 19:01:42 +00:00
}
2015-07-21 20:16:26 +00:00
button {
font-size: 100%;
2015-07-21 20:16:26 +00:00
}