36 lines
570 B
SCSS
36 lines
570 B
SCSS
|
.index {
|
||
|
@include clean-ul;
|
||
|
border-bottom: 1px solid $grey;
|
||
|
margin: 0 0 $gutter;
|
||
|
padding-bottom: $gutter / 2;
|
||
|
&:last-of-type { border-bottom: 0; }
|
||
|
|
||
|
li {
|
||
|
line-height: 1.8em;
|
||
|
|
||
|
.btn {
|
||
|
margin-left: $gutter / 2;
|
||
|
padding: 0 5px;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: $dark;
|
||
|
text-decoration: underline;
|
||
|
&:visited { color: $copy; }
|
||
|
|
||
|
&:hover,
|
||
|
&:active {
|
||
|
color: $hover-copy;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.name {
|
||
|
font-size: 1.2em;
|
||
|
text-transform: capitalize;
|
||
|
.btn { font-size: 1rem; }
|
||
|
}
|
||
|
|
||
|
ul { margin-left: $gutter; }
|
||
|
}
|