blob: 721d106520d4791fade9fb2a897edd1efe7bcf1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
.news-index {
display: flex;
flex-direction: column;
gap: var(--spacing-block-lg);
}
.news-index__item {
display: block;
transition: background 100ms;
padding-block: var(--spacing-block-md);
padding-inline: var(--spacing-inline-sm);
margin-block: var(--spacing-block-sm);
}
.news-index__item:hover {
background: var(--background-highlight-color);
transition-duration: 300ms;
}
.news-index__item :first-child {
margin-block-start: 0;
}
.news-index__item :last-child {
margin-block-end: 0;
}
|