blob: 9015abd4901676fda93042faaaacd6e92269229f (
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
|
#footer {
background-color: var(--foregroundColour);
border-radius: 1rem;
font-family: $monospaceFont;
margin-top: 1rem;
padding: 1rem;
text-align: center;
h1 {
font-size: 2em;
font-weight: bold;
text-align: center;
&::after {
background-color: var(--textColour);
border-radius: $separatorWidth;
content: "";
display: block;
height: $separatorWidth;
margin-bottom: 1rem;
margin-top: $separatorWidth;
width: 100%;
}
}
#cvrNumber {
font-weight: bold;
margin: auto;
width: fit-content;
}
#emailAddress {
aspect-ratio: 183/8;
background-color: var(--textColour);
display: block;
image-rendering: pixelated;
margin: auto;
mask-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALcAAAAICAYAAAC78m4/AAAA80lEQVRYw+1YQQ7EIAiETf//ZfeyJqRRhAFN18rNEhGGAbFMRFRKKXTkyEbCzMyV2MzMUikJ39Pdv0d0VW/RIcXoicF6hgezXgxy7cWlZUNbe3LkiTvCF8uZo33d86yAZ+ruTo++WXQWcLy+oDY9MWTua9mJ5igaewbWHr7I9YV2rV5lZY04kS79L9fmjNg1u2+Ty0pUDTRZNXLUiRB/BqlnJB61iY4GKJ6WYtqtmXyswJafIEkczVyrBI1htU0UT80Pzc8n5Si9c9dZKaMrIA8SbZbyPFieIi08kXkevfFWEbSV9yiXvHzRztt6rj3y7l+BX5T3s/pA2wdgAAAAAElFTkSuQmCC");
mask-position: center;
mask-repeat: no-repeat;
mask-size: cover;
max-height: 1em;
max-width: calc(183em / 8);
width: 100%;
}
#socials {
display: flex;
font-weight: bold;
gap: 1rem;
margin: auto;
width: fit-content;
@media (orientation: portrait) {
flex-direction: column;
}
}
}
|