2019-06-18 14:53:24 +08:00
|
|
|
@import './fonts/Lato.scss';
|
2019-12-22 15:31:04 +08:00
|
|
|
@import './fonts/FiraCode.scss';
|
2019-12-28 13:46:37 +08:00
|
|
|
@import './fonts/FiraSans.scss';
|
2020-02-11 14:44:29 +08:00
|
|
|
@import './themes/common.scss';
|
2019-12-20 16:59:37 +08:00
|
|
|
@import './themes/light/index.scss';
|
2019-07-21 23:58:01 +08:00
|
|
|
@import './Detachable.scss';
|
2019-05-29 17:49:01 +08:00
|
|
|
|
2019-12-20 16:59:37 +08:00
|
|
|
@include setup-light-theme();
|
2019-09-18 22:01:34 +08:00
|
|
|
|
|
|
|
html {
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
2019-09-19 00:11:02 +08:00
|
|
|
// font-smoothing: antialiased;
|
2019-09-18 22:01:34 +08:00
|
|
|
// font-weight: 400;
|
|
|
|
}
|
|
|
|
|
2019-05-24 20:09:35 +08:00
|
|
|
body {
|
2019-06-03 13:47:12 +08:00
|
|
|
margin: 0;
|
2019-12-20 16:59:37 +08:00
|
|
|
font-family: $--n-font-family;
|
2019-06-06 16:44:10 +08:00
|
|
|
min-width: 1280px;
|
2019-06-13 14:53:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2019-12-20 16:59:37 +08:00
|
|
|
color: $--primary-6;
|
2019-07-03 17:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
2019-12-20 16:59:37 +08:00
|
|
|
font-family: $--n-font-family;
|
2019-07-03 17:52:13 +08:00
|
|
|
font-size: inherit;
|
2019-08-16 16:48:36 +08:00
|
|
|
}
|
|
|
|
|
2020-01-30 16:00:38 +08:00
|
|
|
.n-positioning-container {
|
2019-08-16 16:48:36 +08:00
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
2020-01-30 16:00:38 +08:00
|
|
|
right: 0;
|
2019-08-16 16:48:36 +08:00
|
|
|
top: 0;
|
2019-08-25 16:58:04 +08:00
|
|
|
bottom: 0;
|
2020-01-30 16:00:38 +08:00
|
|
|
pointer-events: none;
|
|
|
|
transform: translateZ(0);
|
2019-08-16 16:48:36 +08:00
|
|
|
}
|
|
|
|
|
2020-01-30 16:00:38 +08:00
|
|
|
.n-positioning-container.n-positioning-container--absolute {
|
2019-10-19 20:26:30 +08:00
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2020-01-30 16:00:38 +08:00
|
|
|
.n-positioning-content {
|
|
|
|
pointer-events: all;
|
2019-05-24 20:09:35 +08:00
|
|
|
}
|