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 {
| width: 100%;
|
| @include desktop_and_print {
| width: $content-width;
| }
|
| &__list {
| font-size: 1.4rem;
| margin: 30px;
| padding: 0;
| &-item {
| padding-bottom: 5px;
| list-style-type: none;
| }
|
| &-date {
| @include themed() {
| color: t('primary-light');
| }
| float: right;
| max-width: 10%;
| text-align: right;
| }
| &-title {
| @include themed() {
| color: t('primary');
| }
| width: 90%;
| display: inline-block;
| &:hover {
| @include themed() {
| color: t('info');
| }
| }
| }
|
| &-heading {
| @include themed() {
| color: t('primary');
| }
| font-size: 2.4rem;
| font-weight: 600;
| line-height: 2.2em;
| }
| }
| }
|
|