Newer
Older
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
---
---
@import "boilerplate/colors";
@import "boilerplate/mixins";
@import "common/article";
#title {
h2 {
a {
vertical-align: middle;
}
}
}
.frontpage-card {
@include drop-shadow;
width: 15rem;
max-width: 15rem;
margin: 1rem;
color: black;
.card-body {
display: flex;
flex-flow: column nowrap;
.badge {
margin: 0.1rem;
}
a {
margin-top: auto;
}
}
}
.frontpage-image-card {
@extend .frontpage-card;
@include drop-shadow(
$color: rgba(black, 0.5)
);
color: white;
background-color: black;
}
.frontpage-jumbotron {
padding-right: 0;
padding-left: 0;
border-radius: 0;
margin-top: 0;
margin-bottom: 0;
background-position: center;
background-size: cover;
background-color: $color-content-light-gray;
color: $color-helmholtz-blue;
text-align: center;
h1, h2, h3 {
@include font-heading;
margin-top: 0.50rem;
margin-bottom: 0.25rem;
}
/* NOTE consider moving this to common/_general.scss and fix the articles */
section > * {
margin-left: auto;
margin-right: auto;
max-width: 60rem;
}
.flex-content-wrapper {
display: flex;
flex-flow: wrap;
justify-content: center;
}
.toast {
color: black;
}
}
.frontpage-mission-jumbotron {
@extend .frontpage-jumbotron;
padding-top: 3rem;
padding-bottom: 3rem;
position: relative;
background-color: $color-helmholtz-blue;
color: white;
}