LoveIt/assets/css/_core/_base.scss

74 lines
1.3 KiB
SCSS
Raw Normal View History

html {
2020-01-31 11:46:28 +01:00
font-family: $global-font-family;
/* scrollbar, only support webkit */
&::-webkit-scrollbar {
width: 8px;
height: 8px;
}
&::-webkit-scrollbar-thumb {
height: 40px;
2019-08-24 13:32:41 +02:00
background-color: #87878D;
border-radius: 16px;
&:hover {
2019-08-24 13:32:41 +02:00
background-color: #A9A9B3;
}
}
}
::selection {
background: rgba(0, 149, 255, 0.1);
}
body {
font-size: 16px;
font-weight: 400;
line-height: 26px;
background-color: $global-background-color;
color: $global-font-color;
&:before {
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;
}
}
}