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
.footer {
@include width-full-viewport;
@include drop-shadow(
$offset-x: -0.1rem,
$offset-y: -0.1rem,
$color: rgba(black, 0.25)
);
.transition {
@include rotate-180;
color: $color-helmholtz-blue;
margin-bottom: -1px; /* Drag in a bit to avoid rendering artifacts */
}
#footer-content-container {
@include width-full-content;
background-color: $color-helmholtz-blue;
color: white;
padding-top: $document-bottom-margin;
padding-left: $document-side-margin;
padding-right: $document-side-margin;
padding-bottom: $document-bottom-margin;
display: flex;
justify-content: space-between;
align-items: center;
/*
Instead of ugly broken navigation on the right, allow the flexbox
to put it beneath the logo on smaller screens.
*/
@include medium-is-tablet-minus {
flex-direction: column;
}
nav {
display: flex;
flex-flow: row wrap;
justify-content: center;
@include medium-is-tablet-minus {
margin-top: 0.5rem;
}
}
}
}