blob: 84ef42e3a2b71fc4df31cb60c1c0d8e8ee367503 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
$info_item_separation: 0.9em;
.info_section {
margin-bottom: 1.5em;
}
.info_section__title {
background-color: $purple_color;
color: white;
padding: 0.4em;
}
.post_list {
list-style-type: none;
margin-left: 0;
}
.post_list__title {
margin-bottom: 0;
}
.post_list__element {
margin-bottom: $info_item_separation;
}
.post_list__excerpt {
margin-bottom: 0;
}
.event_list {
list-style-type: none;
margin-left: 0;
}
.event_list__row {
display: block;
width: 100%;
}
.event_list .summary {
@extend h4;
@extend .event_list__row;
margin-bottom: 0;
}
.event_list .description {
@extend .event_list__row;
margin-bottom: $info_item_separation;
}
|