2019-08-16 21:40:34 +02:00
|
|
|
html {
|
2020-01-31 11:46:28 +01:00
|
|
|
font-family: $global-font-family;
|
2020-02-14 18:42:31 +01:00
|
|
|
font-size: 16px;
|
2020-02-01 12:47:58 +01:00
|
|
|
}
|
2019-08-16 21:40:34 +02:00
|
|
|
|
2020-02-01 12:47:58 +01:00
|
|
|
/* scrollbar, only support webkit */
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
}
|
2019-08-16 21:40:34 +02:00
|
|
|
|
2020-02-01 12:47:58 +01:00
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background-color: $scrollbar-color;
|
2019-08-16 21:40:34 +02:00
|
|
|
|
2020-02-01 12:47:58 +01:00
|
|
|
&:hover {
|
|
|
|
background-color: $scrollbar-hover-color;
|
2019-08-16 21:40:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
::selection {
|
2020-02-01 12:47:58 +01:00
|
|
|
background: $selection-color;
|
|
|
|
|
|
|
|
.dark-theme & {
|
|
|
|
background: $selection-color-dark;
|
|
|
|
}
|
2019-08-16 21:40:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-weight: 400;
|
2020-02-01 12:47:58 +01:00
|
|
|
line-height: 1.5rem;
|
2019-08-16 21:40:34 +02:00
|
|
|
background-color: $global-background-color;
|
|
|
|
color: $global-font-color;
|
2020-02-13 06:30:58 +01:00
|
|
|
overflow-wrap: break-word;
|
2019-08-16 21:40:34 +02:00
|
|
|
|
2020-02-01 12:47:58 +01:00
|
|
|
&::before {
|
2019-08-16 21:40:34 +02:00
|
|
|
content: "";
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
opacity: 0.05;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
z-index: -1;
|
|
|
|
-webkit-filter: grayscale(100%);
|
|
|
|
-moz-filter: grayscale(100%);
|
|
|
|
-ms-filter: grayscale(100%);
|
|
|
|
-o-filter: grayscale(100%);
|
|
|
|
filter: grayscale(100%);
|
|
|
|
filter: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.dark-theme {
|
|
|
|
color: $global-font-color-dark;
|
|
|
|
background-color: $global-background-color-dark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $global-link-color;
|
|
|
|
text-decoration: none;
|
|
|
|
transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $global-link-hover-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-theme & {
|
|
|
|
color: $global-link-color-dark;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $global-link-hover-color-dark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|