blob: dc40d112fc9ed4d4f1c9ef1115a5f96e286edee0 (
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
|
#frontPage {
align-items: center;
border-bottom-left-radius: 1rem;
border-bottom-right-radius: 1rem;
display: flex;
justify-content: center;
height: calc(100vh + 1rem);
padding-bottom: 1rem;
width: 100vw;
body.about & {
background-color: $achernarColour; }
body.benoit & {
background-image: url("/svg/benoit-background.svg");
background-size: cover;
}
body.bzipper & {
background-color: #FFFFFF;
}
body.eas & {
background-color: #01CD93;
}
body.luma & {
background-color: #6051B2;
}
body.pollex & {
background-color: #4D4084;
}
#glyph {
display: block;
font-size: 4rem;
font-weight: bold;
height: fit-content;
width: calc(100vmin / 2);
text-align: center;
}
}
|