BookStack/resources/sass/_html.scss

25 lines
347 B
SCSS
Raw Normal View History

2015-07-12 21:01:42 +02:00
* {
2015-08-31 12:43:28 +02:00
box-sizing: border-box;
outline-color: #444444;
}
*:focus {
outline-style: dotted;
2015-07-12 21:01:42 +02:00
}
2015-07-12 21:01:42 +02:00
html {
2015-08-31 12:43:28 +02:00
height: 100%;
overflow-y: scroll;
background-color: #F2F2F2;
&.flexbox {
overflow-y: hidden;
}
2015-07-12 21:01:42 +02:00
}
2015-07-12 21:01:42 +02:00
body {
2015-08-31 12:43:28 +02:00
font-size: $fs-m;
line-height: 1.6;
2018-11-04 15:41:52 +01:00
color: #444;
2015-08-31 12:43:28 +02:00
-webkit-font-smoothing: antialiased;
background-color: #F2F2F2;
2015-07-21 22:16:26 +02:00
}