motarawneh.com/assets/scss/base/list.scss

16 lines
374 B
SCSS
Raw Normal View History

2020-11-12 09:51:26 +00:00
.list {
}
2020-11-10 07:30:43 +00:00
.list-item {
2020-11-12 09:51:26 +00:00
@media (min-width: 600px) {font-size: 1.25em}
@media (min-width: 768px) {font-size: 1.5em}
2020-11-10 07:30:43 +00:00
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;}
}
2020-11-12 09:51:26 +00:00
.list-item__title {font-weight: 700; margin-bottom: 0.25em}
2020-11-10 07:30:43 +00:00
.list-item__date {}