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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| .archive {
| margin: 30px;
|
| &__heading {
| font-size: 2.4rem;
| font-weight: 600;
| line-height: 2.2em;
|
| @include themed() {
| color: t('primary');
| }
| }
|
| &__list {
| padding: 0;
|
| &-item {
| display: flex;
| justify-content: space-between;
| padding-bottom: 5px;
| list-style-type: none;
| }
|
| &-date {
| text-align: right;
|
| @include themed() {
| color: t('primary-light');
| }
| }
|
| &-title {
| display: inline-block;
| flex: 0.96;
| text-transform: uppercase;
|
| @include themed() {
| color: t('primary');
| }
| &:hover {
| @include themed() {
| color: t('info');
| }
| }
| }
| }
| }
|
|