blob: b239d08b3748440fd4a02b601fe7bdd182b153e2 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
body {
font-family: 'arial';
padding: 0;
margin: 0;
font-size: 1.1em;
background-color: #fff;
}
img {
max-width: 99%;
width: auto;
height: auto;
}
a:hover {
text-decoration: underline;
}
a {
text-decoration: none;
color: #000;
}
#topnav {
width: 100%;
background-color: #000000;
}
#topnav div {
width: 600px;
max-width: 95%;
margin-left: auto;
margin-right: auto;
display: flex;
flex-direction: row;
height: 30px;
align-items: center;
justify-items: center;
}
#topnav img {
height: 20px;
}
#topnav div a {
flex-grow: 1;
text-align: center;
color: #ffffff;
vertical-align: middle;
font-weight: bold;
text-transform: uppercase;
height: 100%;
padding-top: 7px
}
#topnav div a:hover {
background-color: #ffffff;
color: #000000;
text-decoration: none;
}
h1 {
font-size: 2.5em;
margin: 0;
text-transform: uppercase;
}
main, header, footer {
width: 600px;
max-width: 95%;
margin-left: auto;
margin-right: auto;
}
header {
padding: 5px;
padding-bottom: 30px;
}
footer {
text-align: center;
padding: 10px 0 10px 0;
font-size: 0.5em;
}
header nav {
display: flex;
}
header a {
color: #000000;
}
header nav a {
flex-grow: 1;
text-align: center;
}
#logo-space a {
display: flex;
flex-direction: row;
width: 100%;
}
#logo-space img {
align-self: center;
}
#logo-space h1 {
display: flex;
flex-grow: 2;
}
#logo-space #logo {
display: flex;
flex: 0 0 45px;
}
h2 {
padding: 0;
margin: 0;
color: #000000;
text-transform: uppercase;
font-size: 1.5em;
}
h3 {
text-transform: uppercase;
}
main {
padding: 5px;
}
article {
margin-bottom: 20px;
padding: 10px;
text-align: justify;
}
article a {
text-decoration: underline;
}
.next-link {
float: right;
}
|