style.css 3.42 KB
Newer Older
Athanasios's avatar
Athanasios committed
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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif; 
}

h1 {
  margin-top: 1.5em;
}

p {
  margin-top: 1.25em;
}

.content{
  padding-left: 25%;
  padding-right: 25%;
}

Athanasios's avatar
Athanasios committed
26
27
28
29
.content ul {
  list-style-image: url(../images/list.png);
}

Athanasios's avatar
Athanasios committed
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
header {
  position: relative;
  width: 100%;
  height: 43.2vw;
  background: url(../images/header.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.row {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

nav {
  margin-top: 20px;
  margin-right: 5vw;
  letter-spacing: .8px;
}

nav ul {
  list-style: none;
  margin: 8px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
nav li {
  display: inline-block;
  padding: 0 20px;
  margin-top: 20px;
}

nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
  border-bottom: 5px solid transparent;
  padding-bottom: 5px;
}

nav a:hover {
  border-bottom: 5px solid gray;
  transition: border-bottom-color 0.5s;
}

.footer {
  margin-top: 3em;
  background-image: linear-gradient(45deg, #a999a0, #ded9d6);
}

.logo{
  width: 120px;
  height: 120px;
  margin-left: 8vw;
}

.footer-participants-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.participant {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.participant-avatar {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0px 3px 8px 0px #00000069;
  margin-left: 40px;
  margin-right: 40px;
  margin-top: 40px;
  margin-bottom: 10px;
}

.participant-avatar img {
  width: 100%;
  margin: auto;
}

.participant-social {
  margin-top: 10px;
}

.social {
  margin-left: 3px;
  margin-right: 3px;
}

.footer-logo-container {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 25%;
  background-color: white;
  display: flex;
  box-shadow: 0px 2px 6px 0px #00000069;
  margin-right: 20px;
  margin-top: 40px;
}

.footer-logo a {
  display: flex;
}

.footer-logo img {
  width: 80%;
  margin: auto;
}

Athanasios's avatar
Athanasios committed
170
171
172
173
174
175
176
177
178
179
#projectlogo {
  text-align: center;
  margin-top: auto;
}

#projectlogo img{
  max-width: 300px;
  width: 16%;
}

Athanasios's avatar
Athanasios committed
180
181
182
183
184
185
186
187
188
189
#projectname {
  font-weight: 700;
  color: #fff;
  text-align: center;
  font-size: 4vw;
  margin-bottom: 6vw;
}

.hamburger {
  display: none;
Athanasios's avatar
Athanasios committed
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
}

.legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #252525;
  padding: 10px 80px;
}

.legal-text-container {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

.legal-text {
  color: #c5c5c5;
  font-size: 0.8em;
  margin-right: 20px;
  text-decoration: none;
}

.top {
  display: flex;
  align-items: center;
  opacity: 0.8;
}

.top a {
  display: inline-block;
  line-height: 0;
}

.top:hover {
  opacity: 1;
Athanasios's avatar
Athanasios committed
227
228
229
230
231
232
233
234
235
236
237
238
239
}

audio {
  width: 100%;
}

.video-container {
  width: 100%;
}

.video-container iframe {
  width: 100%;
  max-width: 560px;
Athanasios's avatar
Athanasios committed
240
}