13 lines
164 B
SCSS
13 lines
164 B
SCSS
|
@charset "utf-8";
|
||
|
|
||
|
@import "variables";
|
||
|
|
||
|
body .sitemap-list {
|
||
|
a {
|
||
|
color: $theme-gray;
|
||
|
|
||
|
&:hover {
|
||
|
color: lighten($theme-color-main, 10%);
|
||
|
}
|
||
|
}
|
||
|
}
|