2020-10-16 20:00:32 +00:00
|
|
|
.list {
|
2021-12-16 13:02:59 +00:00
|
|
|
.container {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
|
|
|
|
gap: 3em;
|
|
|
|
}
|
|
|
|
.list-item {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
transition: color 0.2s ease-in-out;
|
2021-12-28 14:52:13 +00:00
|
|
|
&__link {
|
|
|
|
display: block;
|
|
|
|
&:focus {
|
|
|
|
background: unset;
|
|
|
|
padding: unset;
|
|
|
|
@include focus-outline;
|
|
|
|
&:link {
|
|
|
|
color: var(--link-color);
|
|
|
|
}
|
|
|
|
&:visited {
|
|
|
|
color: var(--link-visited);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2021-12-16 13:02:59 +00:00
|
|
|
&__image {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
&__title {
|
|
|
|
font-size: 1.5em;
|
|
|
|
font-weight: 700;
|
|
|
|
margin: 1.5em 0 0.5em;
|
|
|
|
}
|
|
|
|
&__summary {
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
line-height: 1.4;
|
|
|
|
}
|
|
|
|
&__date {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
}
|
2020-10-16 20:00:32 +00:00
|
|
|
}
|