-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
46 lines (37 loc) · 872 Bytes
/
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
/* styles.css */
/* ... (mesmo conteúdo anterior) ... */
/* Estilos específicos para dispositivos móveis */
@media screen and (max-width: 768px) {
.navbar {
flex-direction: column;
align-items: center;
text-align: center;
}
.nav-list {
display: none;
}
.mobile-menu {
display: block;
cursor: pointer;
margin-top: 10px;
}
.mobile-menu span {
display: block;
width: 30px;
height: 3px;
background-color: #333;
margin: 6px auto;
transition: all 0.3s ease-in-out;
}
.hero-content {
text-align: center;
}
.cta-button {
margin-top: 1rem;
}
.portfolio-items {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 1rem;
}
}
/* ... (mesmo conteúdo anterior) ... */