blob: f13008bb2cda9f9e2ccc2305c900540f84335a3d (
plain) (
blame)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/* Layout */
body>header,
footer {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
nav[aria-label="breadcrumb"] {
--pico-nav-breadcrumb-divider: '/';
}
h1,
h2,
h3,
h4 {
font-family: 'Parkinsans';
}
header h1,
header h2,
header h3,
header h4 {
color: var(--pico-primary);
}
header svg {
color: var(--pico-contrast);
}
body>header {
padding-bottom: 0px;
}
svg {
color: inherit;
}
footer svg {
height: 1em;
width: auto;
}
section.events [role="group"] {
display: grid;
max-width: 100%;
grid-template-columns: repeat(3, 1fr);
gap: .5em;
}
article.event {
margin: 0px;
display: flex;
flex-direction: column;
justify-content: space-between;
border-radius: var(--pico-border-radius);
}
article.event main {
display: flex;
flex-direction: column;
justify-content: start;
height: 100%;
}
article.event img {
object-fit: cover;
width: 100%;
height: 200px;
display: block;
padding: 0px;
margin: 0px;
border-radius: inherit;
}
article.event h4 {
color: var(--pico-primary);
min-height: 2em;
}
|