13 lines
258 B
SCSS
13 lines
258 B
SCSS
.list {}
|
|
.list-item {
|
|
display: block;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
padding: 1em;
|
|
background: #eee;
|
|
margin-bottom: 1em;
|
|
transition: 0.4s opacity ease-in-out;
|
|
&:hover {opacity: 0.4;}
|
|
}
|
|
.list-item__title {font-weight: 700;}
|
|
.list-item__date {} |