Newer
Older
---
---
@import "boilerplate/colors";
@import "boilerplate/mixins";
@import "common/article";
#title {
.info-col {
display: grid;
grid-template-columns: 1fr 1fr;
@include medium-is-phone {
grid-template-columns: 1fr;
}
.info-box {
padding: 1rem;
}
}
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
104
105
106
107
108
109
110
111
112
113
114
115
116
.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: 1rem;
padding-bottom: 1rem;
position: relative;
background-color: $color-helmholtz-blue;
color: white;
}