about.css
672 Bytes
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
html, body {
background-color: #4D97FF;
color: white;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bolder;
}
a:active, a:hover, a:link, a:visited {
color: currentColor;
}
a:active, a:hover {
filter: brightness(0.9);
}
.aboutBox {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align:center;
}
.aboutLogo {
max-width: 10rem;
max-height: 10rem;
margin: 1.5rem 1.5rem 0 1.5rem;
}
.aboutText {
margin: 1.5rem;
}
.aboutDetails {
font-size: x-small;
text-align:left;
margin:auto;
}
.aboutFooter {
font-size: small;
}