16 lines
231 B
SCSS
16 lines
231 B
SCSS
.c-archive-list {
|
|
list-style-type: none;
|
|
padding-left: 0;
|
|
margin: 0;
|
|
|
|
&__item {
|
|
transition: 0.3s $ease-out-quart 0s;
|
|
& + & {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: #eeeeee;
|
|
}
|
|
}
|
|
}
|