41 lines
547 B
SCSS
41 lines
547 B
SCSS
.sitemap-title {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.sitemap {
|
|
margin-top: 0.9375rem;
|
|
|
|
h2 {
|
|
color: $title;
|
|
text-transform: uppercase;
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
margin-left: -15px;
|
|
width: 100%;
|
|
height: 35px;
|
|
}
|
|
|
|
ul {
|
|
margin-left: -15px;
|
|
margin-top: 20px;
|
|
|
|
&.nested {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
li {
|
|
font-size: 0.9rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-down(md) {
|
|
.sitemap {
|
|
margin-top: 0;
|
|
}
|
|
.sitemap ul {
|
|
margin-bottom:40px;
|
|
}
|
|
}
|