blob: b270b2e93580ee654bccc195b6d962062f9e686a (
plain)
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
|
:root {
--https-blue: #0a84ff;
--darker-blue: #0060df;
--text-main: #000;
--text-secondary: #464646;
--light-grey: #ececec;
}
body {
align-content: center;
background-color: var(--light-grey);
color: var(--text-main);
display: flex;
flex-direction: column;
flex-wrap: wrap;
font-family: 'Lucida Grande', 'Segoe UI', Tahoma, 'DejaVu Sans', Arial, sans-serif;
justify-content: center;
}
img {
width: 100%;
}
img.footer_img {
width: 15%;
}
h1.description {
text-align: center;
}
.updates_header {
text-align: center;
}
.updates_details {
margin: 18px;
padding: 1%;
}
footer {
margin: 18px 0;
text-align: center;
}
|