-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
300 lines (258 loc) · 6.2 KB
/
styles.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
187
188
189
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
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
260
261
262
263
264
265
266
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
/* css styles */
/***************************************/
/***** navbar settings *****/
/***************************************/
/* logo */
.navbar-logo {
position: relative;
max-height:60px;
background-size: contain;
}
/*header text*/
.navbar li.nav-item a.nav-link span {
font-weight: bold;
}
/***************************************/
/***** carousel settings *****/
/***************************************/
.carousel.card {
padding-top: 2em;
}
.carousel img {
width: 300px;
margin-bottom: 110px;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
margin-bottom: 110px;
}
.carousel-caption {
padding-top: 1em;
}
/***************************************/
/***** flipcard settings *****/
/***************************************/
.flip-card {
background-color: transparent;
width: 300px;
height: 300px;
perspective: 1000px; /* required for 3D effect */
}
/* This container is needed to position the front and back side */
.flip-card-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
}
/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
}
/* Position the front and back side */
.flip-card-front, .flip-card-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden; /* Safari */
backface-visibility: hidden;
}
/* Style the front side (fallback if image is missing) */
.flip-card-front {
background-color: #bbb;
color: black;
}
/* Style the back side */
.flip-card-back {
background-color: dodgerblue;
color: white;
transform: rotateY(180deg);
}
/***************************************/
/***** container settings *****/
/***************************************/
.container {
display: flex;
width: 100%;
justify-content: center;
align-items: center;
margin-left: auto;
margin-right: auto;
gap: 30px; /* Adjust the space between the image and the text */
}
.column-container {
display: flex;
gap: 30px;
}
.column {
flex: 1;
flex-direction: column;
gap: 10px; /* Adjust the space between the elements inside the columns */
}
/***************************************/
/***** video wrapper settings *****/
/***************************************/
.video-wrapper {
position: relative;
padding-bottom: 42.857%; /* 100 / (21 / 9) */
padding-top: 0;
height: 0;
overflow: hidden;
}
.video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/***************************************/
/***** timeline settings *****/
/***************************************/
:root {
--white: #fff;
--black: #323135;
--crystal: #a8dadd;
--columbia-blue: #cee9e4;
--midnight-green: #01565b;
--yellow: #e5f33d;
}
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.timeline {
position: relative;
white-space: nowrap;
padding: 0 10px;
margin: 0 auto;
display: grid;
grid-gap: 20px;
background: white; /* TODO: change background color for entire timeline area */
}
.timeline::before,
.timeline::after {
content: "";
position: absolute;
top: 0;
bottom: 30px;
width: 100px;
z-index: 2;
}
.timeline ol::-webkit-scrollbar {
height: 12px;
}
.timeline ol::-webkit-scrollbar-thumb,
.timeline ol::-webkit-scrollbar-track {
border-radius: 92px;
}
.timeline ol::-webkit-scrollbar-thumb {
background: var(--midnight-green); /* TODO: change scroll bar color */
}
.timeline ol::-webkit-scrollbar-track {
background: var(--yellow); /* TODO: change background color for scroll bar */
}
.timeline ol {
font-size: 0;
padding: 250px 0;
transition: all 1s;
overflow-x: scroll;
scroll-snap-type: x mandatory;
}
.timeline ol li {
position: relative;
display: inline-block;
list-style-type: none;
width: 160px;
height: 5px;
background: green; /* TODO: change color for the timeline itself*/
scroll-snap-align: start;
}
.timeline ol li:first-child {
width: 80px; /* the first line-segment is shorter than others*/
}
.timeline ol li:last-child {
width: 300px; /* the last line-segment is longer than others*/
}
.timeline ol li:not(:first-child) {
margin-left: 14px;
}
.timeline ol li:not(:last-child)::after {
content: "";
position: absolute;
top: 50%;
left: calc(100% + 1px);
bottom: 0;
width: 16px;
height: 16px;
transform: translateY(-50%);
border-radius: 50%;
background: red; /* TODO: change color for dots on the timeline*/
z-index: 1;
}
.timeline ol li div {
position: absolute;
left: calc(100% + 7px);
width: 280px;
padding: 15px;
font-size: 1rem;
white-space: normal;
color: white; /* TODO: change text color for text area*/
background: blue; /* TODO: change background color for text area*/
border-radius: 0 10px 10px 10px;
}
.timeline ol li div::before {
content: "";
position: absolute;
top: 100%;
left: 0;
width: 0;
height: 0;
border-style: solid;
}
.timeline ol li:nth-child(odd) div {
top: -16px;
transform: translateY(-100%);
border-radius: 10px 10px 10px 0;
}
.timeline ol li:nth-child(odd) div::before {
top: 100%;
border-width: 8px 8px 0 0;
border-color: blue transparent transparent transparent; /* TODO: change arrow color to match background color for text area*/
}
.timeline ol li:nth-child(even) div {
top: calc(100% + 16px);
}
.timeline ol li:nth-child(even) div::before {
top: -8px;
border-width: 8px 0 0 8px;
border-color: transparent transparent transparent blue; /* TODO: change arrow color to match background color for text area*/
}
.timeline time {
display: block;
font-size: 1.4rem;
font-weight: bold;
margin-bottom: 8px;
color: white; /* TODO: change text color for TIME in the text area*/
}
/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 800px) {
.timeline {
display: block;
}
.timeline::before,
.timeline::after {
width: 50px;
}
.timeline::before {
left: 0;
}
.timeline .info {
display: none;
}
}