-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
173 lines (144 loc) · 3.27 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
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
body {
font-family: 'Arial', sans-serif;
background-color: #000;
color: hwb(187 42% 0% / 0.952);
margin: 0;
padding: 0;
}
header {
background-color: #000;
color: hwb(187 42% 0% / 0.952);
padding: 20px;
}
.header-content {
display: flex;
align-items: center;
}
.header-links {
margin-left: auto;
}
.round-button {
display: inline-block;
padding: 10px 20px;
margin-left: 10px;
border: 2px solid hwb(187 42% 0% / 0.952);
border-radius: 25px;
color: hwb(187 42% 0% / 0.952);
text-decoration: none;
}
.about-me,
.projects,
.download-resume {
padding: 50px;
}
.projects-container {
display: flex;
overflow-x: auto;
}
.whatsapp-floating {
position: fixed;
bottom: 20px;
right: 20px;
}
.profile-picture {
width: 100px; /* Ajuste o tamanho conforme necessário */
height: 100px; /* Ajuste o tamanho conforme necessário */
border-radius: 25%;
margin-right: 20px;
}
.round-button {
display: inline-block;
padding: 10px 20px;
margin-top: 10px;
border: 2px solid hwb(187 42% 0% / 0.952);
border-radius: 25px;
color: hwb(187 42% 0% / 0.952);
text-decoration: none;
cursor: pointer;
transition: background-color 0.3s ease;
}
.round-button:hover {
background-color: hwb(187 42% 0% / 0.952);
color: hsl(0, 0%, 2%);
}
/* Adicione estilos adicionais conforme necessário */
body {
font-family: 'Arial', sans-serif;
background-color: #000;
color: hwb(187 42% 0% / 0.952);
margin: 0;
padding: 0;
}
header {
background-color: #000;
color: hwb(187 42% 0% / 0.952);
padding: 20px;
}
.header-content {
display: flex;
align-items: center;
}
.header-links {
margin-left: auto;
}
.round-button {
display: inline-block;
padding: 10px 20px;
margin-left: 10px;
border: 2px solid hwb(187 42% 0% / 0.952);
border-radius: 25px;
color: hwb(187 42% 0% / 0.952);
text-decoration: none;
}
.about-me,
.projects,
.download-resume {
padding: 50px;
}
.projects-container {
display: flex;
overflow-x: auto;
}
.whatsapp-floating {
position: fixed;
bottom: 20px;
right: 20px;
}
.profile-picture {
width: 100px; /* Ajuste o tamanho conforme necessário */
height: 100px; /* Ajuste o tamanho conforme necessário */
border-radius: 25%;
margin-right: 20px;
}
.round-button {
display: inline-block;
padding: 10px 20px;
margin-top: 10px;
border: 2px solid hwb(187 42% 0% / 0.952);
border-radius: 25px;
color: hwb(187 42% 0% / 0.952);
text-decoration: none;
cursor: pointer;
transition: background-color 0.3s ease;
}
.round-button:hover {
background-color: hwb(187 42% 0% / 0.952);
color: hsl(0, 0%, 2%);
}
.cover-photo {
width: 100%;
height: 250px;
object-fit: cover; /* Isso garante que a imagem cubra toda a área, mantendo a proporção */
object-position: center; /* Isso garante que a imagem fique centralizada na área */
}
@media (max-width: 768px) {
.cover-photo {
height: 200px; /* Diminui a altura em telas menores */
}
}
@media (max-width: 480px) {
.cover-photo {
height: 150px; /* Ajusta ainda mais a altura em telas muito pequenas */
}
}
/* Adicione estilos adicionais conforme necessário */