@@ -90,6 +90,10 @@ nav a {
90
90
transition : 0.3s transform ease-in-out;
91
91
}
92
92
93
+ nav a : hover {
94
+ color : # ccc ;
95
+ }
96
+
93
97
nav ul {
94
98
font-family : "Fredoka One" , cursive;
95
99
letter-spacing : 0.1em ;
@@ -198,7 +202,55 @@ main.area {
198
202
min-height : 30vh ;
199
203
}
200
204
205
+ .details {
206
+ display : flex;
207
+ justify-content : flex-start;
208
+ flex-direction : row;
209
+ flex-wrap : wrap;
210
+ padding : 40px 120px 30px ;
211
+ font-size : 0.7em ;
212
+ max-width : 100% ;
213
+ }
214
+
215
+ @media only screen and (max-width : 600px ) {
216
+ .details {
217
+ flex-wrap : nowrap;
218
+ overflow-x : auto;
219
+ padding : 20px 40px 10px ;
220
+ }
221
+ }
222
+
223
+ @media only screen and (max-width : 420px ) {
224
+ .details {
225
+ padding : 20px 30px 10px ;
226
+ }
227
+ }
228
+
229
+ .area .details {
230
+ padding : 0 ;
231
+ flex-wrap : wrap;
232
+ }
233
+
234
+ .details .item {
235
+ padding : 10px ;
236
+ background : rgba (0 , 0 , 0 , 0.2 );
237
+ margin-right : 20px ;
238
+ margin-bottom : 10px ;
239
+ }
240
+
241
+ .details .item h4 {
242
+ text-transform : uppercase;
243
+ font-family : "Lato" , sans-serif;
244
+ padding-bottom : 2px ;
245
+ }
246
+
247
+ .details .item p {
248
+ font-size : 1.5em ;
249
+ white-space : nowrap;
250
+ }
251
+
201
252
main .coding {
253
+ min-height : 0 ;
202
254
background : rgb (78 , 0 , 72 );
203
255
}
204
256
@@ -207,11 +259,47 @@ main.area.coding {
207
259
background : rgb (105 , 0 , 97 );
208
260
}
209
261
262
+ main .thoughts {
263
+ min-height : 0 ;
264
+ background : rgb (0 , 87 , 65 );
265
+ }
266
+
210
267
main .area .thoughts {
211
268
color : # fff ;
212
269
background : rgb (0 , 105 , 79 );
213
270
}
214
271
272
+ main .profile {
273
+ min-height : 0 ;
274
+ background : rgb (17 , 50 , 143 );
275
+ }
276
+
277
+ main .profile .details {
278
+ background : rgb (12 , 36 , 102 );
279
+ }
280
+
281
+ main .profile .employment .employment-details h3 {
282
+ text-transform : none;
283
+ display : inline-block;
284
+ padding-right : 10px ;
285
+ padding-bottom : 15px ;
286
+ }
287
+
288
+ main .profile .employment .employment-details h4 {
289
+ padding-bottom : 10px ;
290
+ }
291
+
292
+ main .profile .employment .employment-details p {
293
+ display : inline-block;
294
+ margin-bottom : 15px ;
295
+ }
296
+
297
+ @media only screen and (max-width : 600px ) {
298
+ main .profile .employment .employment-details h3 {
299
+ display : block;
300
+ }
301
+ }
302
+
215
303
main .area .profile {
216
304
color : # fff ;
217
305
background : rgb (30 , 77 , 207 );
@@ -226,6 +314,8 @@ footer {
226
314
227
315
footer a {
228
316
color : # 777 ;
317
+ text-decoration : none;
318
+ border-color : # 777 ;
229
319
}
230
320
231
321
footer .copy {
358
448
padding-right : 0.1em ;
359
449
font-style : italic;
360
450
}
451
+
452
+ .tag {
453
+ background : rgba (0 , 0 , 0 , 0.2 );
454
+ padding : 5px 10px ;
455
+ font-size : 0.8em ;
456
+ }
0 commit comments