2015-07-12 20:01:42 +01:00
|
|
|
* {
|
2015-08-31 11:43:28 +01:00
|
|
|
box-sizing: border-box;
|
2019-12-16 13:15:11 +00:00
|
|
|
outline-color: var(--color-primary);
|
|
|
|
outline-width: 1px;
|
2019-08-24 18:26:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
*:focus {
|
|
|
|
outline-style: dotted;
|
2015-07-12 20:01:42 +01:00
|
|
|
}
|
2016-09-06 20:47:34 +01:00
|
|
|
|
2015-07-12 20:01:42 +01:00
|
|
|
html {
|
2015-08-31 11:43:28 +01:00
|
|
|
height: 100%;
|
2016-03-13 14:00:24 +00:00
|
|
|
overflow-y: scroll;
|
2018-10-21 20:05:11 +01:00
|
|
|
background-color: #F2F2F2;
|
2016-03-13 14:00:24 +00:00
|
|
|
&.flexbox {
|
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
2020-04-10 22:38:29 +01:00
|
|
|
&.dark-mode {
|
|
|
|
background-color: #111;
|
|
|
|
}
|
2015-07-12 20:01:42 +01:00
|
|
|
}
|
2016-09-06 20:47:34 +01:00
|
|
|
|
2015-07-12 20:01:42 +01:00
|
|
|
body {
|
2015-08-31 11:43:28 +01:00
|
|
|
font-size: $fs-m;
|
|
|
|
line-height: 1.6;
|
2020-04-10 22:38:29 +01:00
|
|
|
@include lightDark(color, #444, #AAA);
|
2015-08-31 11:43:28 +01:00
|
|
|
-webkit-font-smoothing: antialiased;
|
2020-03-18 22:28:06 -05:00
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-01-30 22:03:16 +00:00
|
|
|
}
|