-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
186 lines (157 loc) · 2.63 KB
/
main.css
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/**
* © 2023 Michael Gamlem III. All Rights Reserved.
* @format
*/
* {
font-family: "Source Sans Pro", sans-serif;
color: #ffffff;
}
a {
color: unset;
text-emphasis: unset;
text-decoration: unset;
}
a:hover {
color: unset;
text-emphasis: unset;
text-decoration: unset;
}
body {
font-family: "Source Sans Pro", sans-serif;
color: #ffffff;
margin: 0;
width: 100vw;
}
body section {
max-width: 100vw;
overflow: hidden;
content-visibility: auto;
}
body section h1,
h2,
h3,
h4 {
font-family: "Source Sans Pro", sans-serif;
font-size: 46px;
text-align: center;
line-height: 1.3em;
margin: 20px 0;
z-index: 2;
}
body section h2 {
font-size: 32px;
}
body section h3 {
font-size: 24px;
}
body section h4 {
font-size: 14px;
}
body section p {
font-size: 24px;
font-family: "Source Sans Pro", sans-serif;
}
.background-box {
background-color: #008cff;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
padding: 10px 16px 10px 16px;
border-radius: 6px;
}
.border-radius {
border-radius: 6px;
}
.flex-center {
display: flex;
justify-content: center;
align-items: center;
}
nav {
position: relative;
width: 100vw;
height: 75px;
z-index: 1000;
box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
background-color: #008cff;
display: flex;
justify-content: flex-start;
align-items: center;
}
nav .logo-link {
height: 85%;
}
nav img.logo {
position: relative;
height: 85%;
margin: 0 26px 0 12px;
}
nav .button-container {
min-width: 40px;
height: 100%;
background-color: transparent;
padding: 0 8px;
}
nav .button-container:hover {
background-color: #007be0;
}
nav .button-container .button {
color: #ffffff;
font-size: 20px;
height: 100%;
width: 100%;
font-family: "Source Sans Pro", sans-serif;
font-weight: normal;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
}
nav .button-container .button a:hover {
text-emphasis: unset;
color: unset;
}
.z-100 {
z-index: 100;
}
.footer {
background-color: #007be0;
min-height: 100px;
display: flex;
justify-content: space-around;
align-items: center;
z-index: 100;
position: sticky;
}
.footer .copyright {
font-style: italic;
}
.footer .icon-container {
display: flex;
justify-content: center;
align-items: center;
padding: 0;
}
.footer .icon-container svg {
margin: 0 8px;
}
.footer .links {
min-width: 16%;
max-width: 33%;
flex-grow: 0.1;
display: flex;
justify-content: space-between;
}
@media screen and (max-width: 480px) {
.background-box {
max-width: 80%;
}
.footer {
flex-direction: column-reverse;
min-height: 120px;
padding: 12px 0;
}
.footer .links {
max-width: unset;
min-width: 50%;
flex-grow: unset;
}
}