31 lines
501 B
SCSS
31 lines
501 B
SCSS
@charset "utf-8";
|
|
|
|
@import "variables";
|
|
|
|
body .sitemap-list {
|
|
a {
|
|
color: $theme-gray;
|
|
|
|
&:hover {
|
|
color: lighten($theme-color-main, 10%);
|
|
}
|
|
}
|
|
&.sitemap-list.level-1 > li{
|
|
margin-bottom: 15px;
|
|
padding-bottom: 4px;
|
|
}
|
|
&.sitemap-list.level-1 > li > a{
|
|
font-size: 22px;
|
|
color: $theme-color-main;
|
|
margin-bottom: 15px;
|
|
&:hover{
|
|
color: lighten( $theme-color-main , 10%);
|
|
}
|
|
}
|
|
&.level-2 > li{
|
|
margin-bottom: 10px;
|
|
> a{
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
} |