-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
499 lines (443 loc) · 10.4 KB
/
style.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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
/* Importação das fontes Merriweather Sans com Weight 400, 500 e 700 */
@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@400;500;700&display=swap");
/* declarações de variaveis raiz com todas as cores padrões setadas */
:root {
--body-bg-color: #22212c;
--text-color: #837e9f;
--bg-cards: #302f3d;
--bg-techs: #cb92b1;
--border-profile-img: #00ff00;
--box-shadow: rgba(0, 0, 0, 0.25);
--border-black-boxes: #000000;
--color-icon-language: #e7de79;
}
/* padronização de tamanho de tela e background para layout */
body {
margin: 0;
width: 98.8vw;
height: auto;
background-color: var(--body-bg-color);
box-sizing: border-box;
font-family: "Merriweather Sans", sans-serif;
}
/* container maior para organizar divs menores */
.container {
box-sizing: inherit;
width: 100%;
height: 100%;
display: flex;
justify-content: space-evenly;
flex-direction: row;
background-color: var(--body-bg-color);
}
/* todos os titulos do layout */
.title-boxes {
font-weight: 700;
font-size: x-large;
display: inline;
}
.subtitle-boxes {
font-weight: 400;
font-size: x-small;
display: inline;
}
/* classe para estilização comum das divs */
.box {
box-sizing: border-box;
color: var(--text-color);
}
/* div que alinha coluna esquerda com divs menores */
.box-left {
display: flex;
flex-direction: column;
align-items: center;
width: 50%;
height: 100%;
justify-content: space-around;
gap: 30px;
}
/* 1º div filho da box-left, responsável pela foto de perfil, nome e função do individuo. */
.box-profile {
background-color: var(--bg-cards);
order: -2;
width: 80%;
height: 40%;
margin-top: 3vh;
border-radius: 20px;
text-align: center;
box-shadow: 0px 4px 4px var(--box-shadow);
display: flex;
flex-direction: column;
align-items: center;
}
/* estilização titulo do perfil */
#title-profile{
margin-top: 5vh;
margin-bottom: 0.5px;
}
/* estilização subtitulo do perfil */
#subtitle-profile{
margin-bottom: 5vh;
}
/* classe da imagem do perfil */
.imgProfileRound {
box-sizing: inherit;
border-radius: 50%;
width: auto;
height: 15vh;
border: 2px solid var(--border-profile-img);
}
/* 2º div filho da box-left, responsável pelos links relacionados ao individuo */
.box-links {
background-color: var(--bg-cards);
order: -1;
width: 80%;
height: 30%;
border-radius: 20px;
box-shadow: 0px 4px 4px var(--box-shadow);
display: flex;
flex-direction: column;
box-sizing: inherit;
align-content: center;
font-weight: 400;
font-size: small;
}
/* div filho de box-links, responsável por alinhar os textos ao lado dos icones */
.box-inside-links {
display: flex;
flex-direction: column;
box-sizing: inherit;
align-items: baseline;
}
/* div filho de box-inside-links, responsável por alinhar os icones e espaçamentos */
.box-image-links {
display: inline-flex;
gap: 20px;
margin-left: 15%;
}
/* alinha o primeiro conteudo de box-links para ter espaçamento de acordo com layout */
#localizacaoDiv {
margin-top: 5%;
}
/* remove sublinhado da div dos links e estiliza com cor padrão */
#localizacaoLink,
#malaLink,
#githubLink,
#linkedinLink,
#twitterLink,
#globeLink,
#mailLink {
text-decoration: none;
color: var(--text-color);
}
/* alinha o ultimo conteudo de box-links para ter espaçamento de acordo com layout */
#mailDiv {
margin-bottom: 5%;
}
/* troca a cor dos icones de preto para a cor padrão do box-links */
.linksIcons {
filter: invert(53%) sepia(8%) saturate(1097%) hue-rotate(209deg)
brightness(94%) contrast(87%);
}
/* 3º div filho de box-left, responsável pela organização dos botões de tecnologias do individuo. */
.box-tech {
background-color: var(--bg-cards);
order: 0;
width: 80%;
height: 20%;
border-radius: 20px;
box-shadow: 0px 4px 4px var(--box-shadow);
display: flex;
flex-direction: column;
box-sizing: inherit;
padding-bottom: 2.5%;
}
/* ajusta alinhamento do titulo da box-tech */
#title-tech {
margin-left: 5%;
}
/* div que envolve o titulo da box-tech */
.div-title-tech {
width: 100%;
}
/* div que envolve os botões da box-tech*/
.box-techButtons {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 20% 5%;
margin: 5% 5% 10% 5%;
}
/* botões da box-tech e suas estilizações */
.techButtons {
background-color: var(--bg-techs);
border-radius: 20px;
box-sizing: inherit;
width: 6vw;
height: 2.5vh;
font-size: small;
font-weight: bold;
text-align: center;
color: var(--border-black-boxes);
/* necessário\/ pois os botões tem por padrão uma pequena borda */
border: none;
cursor: pointer;
}
/* 4º div filho do box-left, responsável pela lista de experiencias com suas estilizações */
.box-experiences {
background-color: var(--bg-cards);
order: 1;
width: 80%;
height: 20%;
border-radius: 20px;
box-shadow: 0px 4px 4px var(--box-shadow);
}
/* titulo da box-experiences */
#title-experiences {
margin-left: 5%;
font-size: large;
font-weight: 700;
font-style: normal;
}
/* estilização de fontes dos titulos secundarios da box-experiences */
.box-experiences div ul li{
font-size: medium;
font-weight: 400;
font-style: normal;
}
/* estilização de fontes dos paragrafos da box-experiences*/
.box-experiences div ul p{
font-size: small;
font-weight: 400;
font-style: normal;
}
/* estilização das datas da box-experiences */
#subsub-title-experiences1,
#subsub-title-experiences2,
#subsub-title-experiences3,
#subsub-title-experiences4{
font-weight: 300;
font-size: smaller;
}
/* 5º div filho do box-left, responsável por listar os cursos do individuo. */
.box-education {
background-color: var(--bg-cards);
order: 2;
width: 80%;
height: 20%;
margin-bottom: 5%;
border-radius: 20px;
box-shadow: 0px 4px 4px var(--box-shadow);
}
/* titulo da box-education e seus styles */
#title-education {
margin-left: 5%;
font-weight: 700;
font-size: large;
font-style: normal;
}
/* estilização dos titulos secundarios da box-education */
.box-education div ul li{
font-size: medium;
font-weight: 400;
font-style: normal;
}
/* estilização dos paragrafos da box-education */
.box-education ul p{
font-size: small;
font-weight: 400;
font-style: normal;
}
/* estilização das datas da box-education */
#subsub-title-education1,
#subsub-title-education2,
#subsub-title-education3,
#subsub-title-education4{
font-weight: 300;
font-size: smaller;
}
/* div que alinha a coluna direita com divs menores. */
.box-right {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-areas:
"myproject myproject"
"projectOne projectTwo"
"recentPosts recentPosts"
"posts posts";
border: inherit;
width: 100%;
height: 100%;
gap: 30px;
}
/* 1º div filho de box-right, responsável por apresentar os projetos */
.box-myprojects {
width: 90%;
height: auto;
grid-area: myproject;
margin-top: 3vh;
margin-right: 5%;
border-radius: 20px;
background-color: var(--bg-cards);
box-shadow: 0px 4px 4px var(--box-shadow);
display: flex;
flex-direction: row;
justify-content: space-between;
}
.myprojects-items {
display: inline-flex;
padding: 2% 5% 2% 5%;
}
#title-myprojects{
font-weight: 700;
font-style: normal;
font-size: large;
}
#other-option-myprojects{
font-weight: 400;
font-style: normal;
font-size: medium;
}
/* div filho de box-right, responsável por apresentar o primeiro projeto */
.box-projectOne {
width: 90%;
height: auto;
border-radius: 20px;
grid-area: projectOne;
background-color: var(--bg-cards);
box-shadow: 0px 4px 4px var(--box-shadow);
padding: 5% 10% 5% 10%;
}
/* alinhamento do folder dos assets com o texto */
.box-projectOne-folder,
.box-projectTwo-folder {
display: inline-flex;
gap: 1.5vw;
}
.box-projectOne-star,
.box-projectTwo-star,
.box-projectOne-git-branch,
.box-projectTwo-git-branch {
display: inline-flex;
}
.box-projectOne-git-branch,
.box-projectTwo-git-branch {
margin-left: 5%;
}
.box-icon-language {
display: inline-flex;
flex-direction: row;
align-items: center;
justify-content: right;
}
.box-icons-assets {
display: inline-flex;
align-items: center;
justify-content: space-around;
flex-direction: row;
}
.align-box-icon-language {
display: flex;
flex-direction: row;
align-items: center;
width: 15vw;
height: auto;
justify-content: flex-end;
}
.icon-language {
background-color: var(--color-icon-language);
border: 2px solid var(--text-color);
border-radius: 50%;
width: 0.75vw;
height: 1.5vh;
}
/* div filho de box-right, responsável por apresentar o segundo projeto */
.box-projectTwo {
width: 90%;
height: auto;
grid-area: projectTwo;
border-radius: 20px;
background-color: var(--bg-cards);
box-shadow: 0px 4px 4px var(--box-shadow);
padding: 5% 10% 5% 10%;
}
/* div filho de box-right, responsável de apresentar posts recentes */
.box-recentPosts {
width: 90%;
height: 10vh;
margin-right: 5%;
grid-area: recentPosts;
border-radius: 20px;
background-color: var(--bg-cards);
box-shadow: 0px 4px 4px var(--box-shadow);
}
.title-recent-posts {
display: flex;
flex-direction: row;
width: auto;
height: 100%;
align-items: center;
margin-left: 5%;
}
/* div filho de box-right, responsável de apresentar as postagens */
.box-posts {
width: 90%;
height: 40vh;
grid-area: posts;
border-radius: 20px;
background-color: var(--bg-cards);
box-shadow: 0px 4px 4px var(--box-shadow);
box-sizing: border-box;
padding: 2.5%;
display: grid;
grid-template-rows: 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-areas:
"img middleTop middleTop middleTop"
"img middleBottom middleBottom middleBottom";
}
.box-img-post {
width: auto;
height: 100%;
box-sizing: inherit;
grid-area: img;
display: flex;
justify-content: center;
align-items: center;
}
.imgPostRound {
box-sizing: inherit;
border-radius: 50%;
width: auto;
height: 15vh;
}
.box-align-post-middleTop {
box-sizing: inherit;
grid-area: middleTop;
font-size: large;
font-weight: 700;
font-style: bold;
width: 100%;
height: auto;
}
#font400 {
font-size: small;
font-weight: 400;
font-style: normal;
text-align: left;
}
.box-align-post-middleBottom {
box-sizing: inherit;
grid-area: middleBottom;
font-style: normal;
font-weight: 400;
width: 100%;
height: auto;
}
#box-align-post-bottom {
box-sizing: inherit;
display: inline-flex;
flex-direction: row;
gap: 5%;
font-size: small;
white-space: nowrap;
}