You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
264 B
SCSS
21 lines
264 B
SCSS
4 years ago
|
@import "variables";
|
||
|
@import "dark-mode";
|
||
|
@import "gaps";
|
||
|
|
||
|
body{
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
// 播放控件与正文表格间隔
|
||
|
audio{
|
||
|
margin-bottom: 15px;
|
||
|
}
|
||
|
|
||
|
$link: $blue;
|
||
|
a{
|
||
|
//text-decoration: none;
|
||
|
color: darken($link, 15%);
|
||
|
&:hover{
|
||
|
color: $link;
|
||
|
}
|
||
|
}
|