Newer
Older
html, body {
/* STYLING */
background-image: url("../images/background.png");
background-repeat: repeat;
background-color: #151515;
color: whitesmoke;
font-family: "Afacad Flux", sans-serif;
font-optical-sizing: auto;
overflow-x: hidden;
overflow-y: hidden;
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
/* SIZING */
margin:0;
padding:0;
height:100%;
max-width: 100%;
}
header {
/* STYLING */
background:rgba(15,15,15,0.5);
/* DEBUG */
/*border: red;
border-style: solid;*/
/* SIZING */
height: 80px;
width: 100%;
display: flex;
justify-content: center;
}
.logo {
margin-top: -1px;
font-size:7px;
padding-right: 55px;
}
header ul {
list-style-type: none;
}
header li {
float: left;
}
header a {
display: inline-block;
font-size: x-large;
color: whitesmoke;
text-decoration: none;
margin-right: 65px;
padding-top: 5px
}
.content-container {
/* STYLING */
background:rgba(15,15,15,0.9);
/* SIZING */
min-height: 60%;
padding-bottom: 110px;
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
}
.info-container {
height: 60vh;
width: 120vh;
margin-left: auto;
margin-right: auto;
display: flex;
justify-content:center;
align-items: center;
}
.info-container * {
background:rgba(10,10,10,0.9);
border-radius: 30px;
}
.img-container {
height: 75%;
width: 30vh;
}
.img-container div {
width: 100%;
margin: 0 auto;
text-align: center;
font-size: 14px;
resize: none;
}
.img-container img {
width: 100%;
}
.intro-box {
height: 75%;
width: 50%;
padding: 15px;
margin-left: 5vh;
resize: none;
}
footer {
/* STYLING */
background:rgba(15,15,15,0.5);
/* DEBUG */
/* SIZING */
position: relative;
right: 0;
bottom:0;
width:100%;
height:200px;
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
margin-right: auto;
margin-left: auto;
display: flex;
justify-content: space-evenly;
align-items:baseline;
}
footer p {
font-size: large;
font-weight: bold;
color: whitesmoke;
}
footer a {
position: absolute;
font-size: medium;
font-weight: normal;
color: #959595;
text-decoration:underline;
}
footer ul {
list-style: none;
}