-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
386 lines (326 loc) · 8.19 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&family=Playfair+Display:wght@400&display=swap');
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #ffffff;
}
header {
background-color: #2a3eb1;
color: #fff;
padding: 10px 0;
text-align: center;
}
h1 {
margin: 0;
font-size: 2rem;
font-family: 'Playfair Display', cursive;
font-weight: 400;
}
main {
width: 90%;
max-width: 800px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
form section {
margin-bottom: 20px;
}
label {
display: block;
margin-top: 10px;
font-weight: bold;
}
input, textarea, select {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
padding: 10px 20px;
background-color: #007BFF;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
.remove-button {
background-color: #FF4B4B;
margin-top: 10px;
}
.remove-button:hover {
background-color: #CC0000;
}
.buttons-container {
display: flex;
gap: 10px;
margin-top: 20px;
justify-content: center;
}
.skills-display, .languages-display {
margin-top: 10px;
}
.skills-display ul, .languages-display ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.skills-display li, .languages-display li {
display: block; /* Garante que cada item ocupe uma linha completa */
width: 100%; /* Expande o item para 100% da largura do container */
background-color: #e8f0fe;
padding: 5px 10px;
border-radius: 5px;
font-size: 0.9rem;
color: #2a3eb1;
border: 1px solid #ccc;
margin-bottom: 5px;
}
.custom-bg-color {
background-color: var(--selected-bg-color, #e8f0fe); /* Azul claro padrão */
color: var(--text-color, #000); /* Garante contraste com o fundo */
}
#resumePreview {
width: 210mm; /* Largura A4 */
height: 297mm; /* Altura A4 */
padding: 2mm; /* Mesma margem usada no PDF */
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin: 10px auto 0 auto; /* Reduz a margem superior para 10px e centraliza o layout */
overflow: auto;
display:none;
flex-direction: row;
gap: 20px;
border: 1px solid #ddd;
box-sizing: border-box; /* Garante que padding seja incluído no tamanho total */
overflow-y:auto ;
}
/* Coluna Esquerda */
.resume-left {
flex: 0 0 250px; /* Define uma largura fixa de 200px */
max-width: 250px; /* Limita a largura máxima da coluna esquerda */
padding: 20px;
background-color: #e8f0fe;
border-right: 1px solid #ddd;
border-radius: 5px 0 0 5px;
overflow: hidden; /* Impede que o conteúdo da coluna esquerda transborde */
}
.resume-left img {
width: 175px;
height: 175px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 20px;
}
.resume-left h2 {
margin-top: 0;
color: #2a3eb1;
font-family: Arial, Helvetica, sans-serif;
}
.resume-left h3 {
font-size: 1.2rem;
margin-bottom: 5px;
border-bottom: 1px solid #ffffff;
padding-bottom: 5px;
color: #2a3eb1;
}
.resume-left ul {
list-style-type: none;
padding: 0;
}
.resume-left ul li {
margin-bottom: 10px;
font-size: 0.95rem;
}
/* Estilo para o resumo na coluna esquerda */
.resume-left .summary {
margin-top: 20px;
padding-top: 10px;
border-top: 1px solid #ddd;
font-size: 1rem;
max-height: 150px; /* Limita a altura máxima do resumo */
text-overflow: ellipsis; /* Adiciona reticências se o texto for muito longo */
white-space: normal; /* Permite que o texto quebre em múltiplas linhas */
word-wrap: break-word; /* Garante que palavras longas quebrem para se ajustar à largura */
}
.invalid-summary {
border: 1px solid red; /* Altera a borda para vermelho se o resumo for inválido */
}
#summaryCounter {
margin-top: 5px; /* Espaço entre o resumo e o contador */
font-size: 0.9rem; /* Tamanho da fonte do contador */
color: #666; /* Cor do texto */
}
/* Coluna Direita */
.resume-right {
flex: 1; /* Permite que a coluna direita se ajuste ao espaço restante */
padding: 20px;
border-radius: 0 25px 25px 0;
overflow-y: auto; /* Adiciona rolagem caso o conteúdo seja muito longo */
}
.resume-right h2, .resume-right h3 {
color: #2a3eb1;
font-family: Arial, Helvetica, sans-serif;
}
.resume-right h3 {
font-size: 1.2rem;
margin-bottom: 5px;
border-bottom: 1px solid #ccc;
padding-bottom: 5px;
}
.resume-right ul {
list-style-type: none;
padding: 0;
}
.resume-right ul li {
margin-bottom: 10px;
font-size: 0.95rem;
}
.resume-right, .resume-left {
word-wrap: break-word;
white-space: normal;
}
/* Estilo para informações de contato */
.contact-info p {
margin: 0;
font-size: 1rem;
line-height: 1.5;
color: #000;
}
/* Estilo para os cards de informação e tooltips */
.info-card {
position: relative;
display: inline-block;
cursor: pointer;
}
/* Tooltip corretamente estilizado */
.tooltip {
display: none;
position: absolute;
background-color: #333;
color: #fff;
padding: 10px;
border-radius: 5px;
width: auto;
max-width: 300px;
min-width: 250px;
min-height: 50px;
text-align: center;
font-size: 1rem;
z-index: 2000; /* Aumente o z-index */
white-space: normal;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
top: 100%;
left: 50%;
transform: translateX(-50%);
transition: opacity 0.3s ease-in-out;
}
/* Exibir o tooltip ao passar o mouse sobre o ícone */
.info-card:hover .tooltip {
display: block;
opacity: 1;
}
.info-card i {
color: #030303;
margin-left: 5px;
}
.tooltip::before {
content: '';
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
border-width: 5px;
border-style: solid;
border-color: transparent transparent #333 transparent;
}
.info-card:hover .tooltip {
z-index: 9999;
display: block;
opacity: 1;
}
footer {
background-color: #2a3eb1;
color: white;
text-align: center;
padding: 3px 0;
position: fixed;
bottom: 0;
width: 100%;
font-family: 'Playfair Display', cursive;
}
footer p {
margin: 0;
}
/* Responsividade para mobile */
@media (max-width: 480px) {
main {
width: 100%;
padding: 10px;
}
#resumePreview {
width: 100%;
padding: 5px;
}
.resume-left, .resume-right {
padding: 10px;
}
/* Ajustar o tamanho das tooltips para telas menores */
.tooltip {
max-width: 90%;
}
}
@media (max-width: 600px) {
.tooltip {
max-width: 90%;
left: 50%;
transform: translateX(-50%);
}
}
/* Esconde elementos sem valor */
.resume-left p:empty, .resume-right p:empty, .resume-left ul:empty, .resume-right ul:empty {
display: none;
}
/* Cor personalizada para a coluna de dados pessoais */
.custom-bg-color {
background-color: var(--selected-bg-color, #e8f0fe); /* Cor padrão é azul claro */
}
/* Layout do currículo para formato A4 ao baixar */
#resumePreview.a4 {
width: 210mm; /* Largura A4 */
height: 297mm; /* Altura A4 */
padding: 2mm;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin: 10px auto; /* Reduz a margem superior */
}
#colorPickerSection {
margin-top: 20px;
text-align: center;
}
#colorPickerLabel {
font-size: 12pt;
margin-right: 10px;
}
#colorPicker {
width: 100%;
height: auto;
border: 1px solid #ccc;
padding: 10px;
border-radius: 5px;
cursor: pointer;
}
@media (max-width: 600px) {
.tooltip {
max-width: 90%;
left: 50%;
transform: translateX(-50%);
}
}