23 lines
416 B
SCSS
Executable File
23 lines
416 B
SCSS
Executable File
@import "base";
|
|
|
|
* {
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
transition: color .2s, background-color .2s, border-color .2s, box-shadow .2s, stork .2s, fill .2s, opacity .2s;
|
|
}
|
|
|
|
body {
|
|
background: $light-bg-underline-color;
|
|
color: $light-text-color;
|
|
|
|
.dark-mode & {
|
|
background: $dark-bg-underline-color;
|
|
color: $dark-text-color;
|
|
}
|
|
}
|
|
|
|
// 去除a标签的默认下划线
|
|
a {
|
|
text-decoration: none;
|
|
}
|