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;
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
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
}

Oliwer Mattsson
committed

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

Oliwer Mattsson
committed
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
min-height: 75%;
width: 100%;
}
/* 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;
background:rgba(25,25,25,.1);
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;
}
/* INDEX.HTML */
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
187
188
189
190
.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 */
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;
}