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;

Oliwer Mattsson
committed

Oliwer Mattsson
committed
overflow-y: scroll;
/* SIZING */
margin:0;
padding:0;
height:100%;
max-width: 100%;

Oliwer Mattsson
committed
position: relative;
}
header {
/* STYLING */
background:rgba(15,15,15,0.5);
/* DEBUG */
/*border: red;
border-style: solid;*/
/* SIZING */
height: 80px;
width: 100%;

Oliwer Mattsson
committed
position: relative;
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
}
.techniques-content-container {
position: relative;
overflow: auto;
/* STYLING */
background:rgba(15,15,15,0.9);
/* SIZING */
min-height: 75%;
width: 100%;
display: flex;
flex-direction: row;
}
.techniques-list-search-form {
background:rgba(10,10,10,0.9);
position: relative;
overflow: auto;
display: flex;
flex-direction: column;
width: 30%;
height: 100%;

Oliwer Mattsson
committed
}
.techniques-project-table {
background:rgba(10,10,10,0.9);

Oliwer Mattsson
committed
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
height: 100vh;
width: 120vh;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: space-evenly;
align-content: flex-start;
padding: 10px;
}
.searchbar {
margin-left: auto;
margin-right: auto;
}
.checkboxes {
position: relative;
column-count: 4;
font-size: 12px;
}

Oliwer Mattsson
committed

Oliwer Mattsson
committed
position: relative;
overflow: auto;
/* STYLING */
background:rgba(15,15,15,0.9);
/* SIZING */

Oliwer Mattsson
committed
min-height: 75%;
width: 100%;
}
.list-search-form {
position: relative;
overflow: auto;
display: flex;
justify-content: center;
}

Oliwer Mattsson
committed
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
/* LIST.HTML */
.project-table {
background:rgba(10,10,10,0.9);
height: 100vh;
width: 120vh;
margin-left: auto;
margin-right: auto;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: space-evenly;
align-content: flex-start;
padding: 10px;
}
.project {
flex-shrink: 1;

Oliwer Mattsson
committed
height: 175px;
width: 300px;
margin-top: 50px;
}
.project-img {
height: 50%;

Oliwer Mattsson
committed
object-fit:scale-down;
}

Oliwer Mattsson
committed
.project-title {
padding: 0;
font-size: large;
margin-left: 10px;

Oliwer Mattsson
committed
color: whitesmoke;
text-decoration:underline;

Oliwer Mattsson
committed
}
.project-desc {
font-size: small;
margin-left: 10px;
text-decoration: dotted;
font-size: 11px;

Oliwer Mattsson
committed
}
/* INDEX.HTML */
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
.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;

Oliwer Mattsson
committed
/* INDEX.HTML */
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
/* PROJECT_DETAILS.HTML */
.project-showcase {
background:rgba(10,10,10,0.9);
margin-left: auto;
margin-right: auto;
display: flex;
flex-direction: column;
width: 50%;
height: 65vh;
align-items: center;
}
.project-showcase ul {
margin: 0;
}
.project-showcase a {
color: whitesmoke;
}
.showcase-desc {
margin-left: 13%;
}
.project-showcase img {
object-fit:fill;
width: 50%;
height: 50%;
}
.project-stats {
display: flex;
width: 100%;
align-content: center;
margin-bottom: 125px;
}
/* PROJECT_DETAILS.HTML */
footer {
/* STYLING */
background:rgba(15,15,15,0.5);
/* DEBUG */
/* SIZING */

Oliwer Mattsson
committed
position: relative;
bottom: 0;
left: 0;
z-index: 10;

Oliwer Mattsson
committed
height:16.73%;
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;
}