-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformacao.css
More file actions
133 lines (132 loc) · 2.52 KB
/
formacao.css
File metadata and controls
133 lines (132 loc) · 2.52 KB
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
.formacao {
background-color: #141414;
color: white;
}
.formacao-container {
max-width: 1200px;
padding: 120px 20px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 2fr;
gap: 100px;
position: relative;
}
.formacao-container::after {
content: "";
display: block;
width: 130px;
height: 100px;
background: url('./img/detalhe.svg') no-repeat center center;
position: absolute;
bottom: -50px;
left: 20px;
}
.formacao .subtitulo {
color: #000000;
max-width: 5ch;
}
.formacao-texto {
font-size: 1.5rem;
line-height: 1.33rem;
max-height: 40ch;
margin-bottom: 60px;
color: #a3a3a3;
}
.formacao-texto strong {
color: #fff;
}
.faculdade-lista {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 60px;
}
.faculdade {
flex: 1;
background-color: #000;
padding: 20px;
border-radius: 4px;
display: flex;
flex-direction: column;
}
.faculdade-tipo {
font-size: .875rem;
text-transform: uppercase;
color: #a3a3a3;
margin-bottom: 10px;
}
.faculdade-curso {
font-size: 1.125rem;
line-height: 1.4;
margin-bottom: 40px;
position: relative;
flex: 1;
}
.faculdade-curso::before {
content: "";
width: 4px;
height: 24px;
background: linear-gradient(#b6f829, #67dd0a);
position: absolute;
display: block;
top: 0px;
left: -24px;
}
.faculdade-instituicao {
font-size: 1.125rem;
color: #a3a3a3;
}
.cursos {
margin-bottom: 60px;
}
.formacao-extra h3 {
font-size: 0.875rem;
line-height: 1.4;
color: #8f8f8f;
text-transform: uppercase;
margin-bottom: 30px;
position: relative;
}
.formacao-extra h3::before {
display: block;
content: "";
width: 24px;
height: 24px;
position: absolute;
top: -4px;
left: -36px;
}
.cursos h3::before {
background: url('./img/cursos.svg') no-repeat center center;
}
.idiomas h3::before {
background: url('./img/idiomas.svg') no-repeat center center;
}
.formacao-extra li {
font-size: 1.125rem;
line-height: 1.1;
margin-bottom: 20px;
}
.formacao-extra span {
color: #8f8f8f;
}
.cursos li {
display: flex;
justify-content: space-between;
}
@media (max-width: 800px) {
.formacao-container {
grid-template-columns: 1fr;
padding: 60px 20px;
}
.formacao .subtitulo {
color: #fff;
}
.formacao-texto {
font-size: 1.25rem;
}
.formacao-extra h3::before {
position: initial;
margin-bottom: 10px;
}
}