-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
87 lines (72 loc) · 1.15 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
/* Geral */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
background-color: #f4f4f9;
color: #333;
padding: 20px;
}
/* Cabeçalho */
header {
text-align: center;
padding: 20px 0;
background-color: #3c6e71;
color: white;
}
header h1 {
font-size: 2.5rem;
}
header p {
font-size: 1.0rem;
margin-top: 10px;
}
#pretencao {
font-size: 1.8rem;
margin-top: 10px;
}
/* Seções */
section {
margin-bottom: 30px;
}
h2 {
font-size: 1.8rem;
border-bottom: 2px solid #3c6e71;
padding-bottom: 5px;
margin-bottom: 15px;
color: #3c6e71;
}
/* Objetivo Perfil */
.objetivo .perfil p {
font-size: 1.2rem;
line-height: 1.8;
}
/* Experiência e Formação */
ul {
list-style-type: none;
}
ul ol li {
margin-bottom: 20px;
}
ul ol li h3 {
font-size: 1.5rem;
color: #284b63;
}
ul ol li p {
font-size: 1.1rem;
margin-top: 5px;
}
/* Rodapé */
footer {
text-align: center;
padding: 10px 0;
background-color: #284b63;
color: white;
position: relative;
bottom: 0;
width: 100%;
}