2015-07-13 03:01:42 +08:00
|
|
|
* {
|
2015-08-31 18:43:28 +08:00
|
|
|
box-sizing: border-box;
|
2019-12-16 21:15:11 +08:00
|
|
|
outline-color: var(--color-primary);
|
|
|
|
outline-width: 1px;
|
2019-08-25 01:26:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
*:focus {
|
|
|
|
outline-style: dotted;
|
2015-07-13 03:01:42 +08:00
|
|
|
}
|
2016-09-07 03:47:34 +08:00
|
|
|
|
2015-07-13 03:01:42 +08:00
|
|
|
html {
|
2015-08-31 18:43:28 +08:00
|
|
|
height: 100%;
|
2016-03-13 22:00:24 +08:00
|
|
|
overflow-y: scroll;
|
2018-10-22 03:05:11 +08:00
|
|
|
background-color: #F2F2F2;
|
2016-03-13 22:00:24 +08:00
|
|
|
&.flexbox {
|
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
2015-07-13 03:01:42 +08:00
|
|
|
}
|
2016-09-07 03:47:34 +08:00
|
|
|
|
2015-07-13 03:01:42 +08:00
|
|
|
body {
|
2015-08-31 18:43:28 +08:00
|
|
|
font-size: $fs-m;
|
|
|
|
line-height: 1.6;
|
2018-11-04 22:41:52 +08:00
|
|
|
color: #444;
|
2015-08-31 18:43:28 +08:00
|
|
|
-webkit-font-smoothing: antialiased;
|
2018-10-22 03:05:11 +08:00
|
|
|
background-color: #F2F2F2;
|
2015-07-22 04:16:26 +08:00
|
|
|
}
|