-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu-responsivo-style.css
More file actions
84 lines (75 loc) · 1.73 KB
/
Copy pathmenu-responsivo-style.css
File metadata and controls
84 lines (75 loc) · 1.73 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Space Grotesk' ;
}
body{
width: 100%;
min-height: 100vh;
background-color: rgba(60,60,60,1);
}
nav{
width: 100%;
padding: 16px 32px;
background-color: rgba(50,50,50,1) ;
}
nav> .menu-container{
width: 100%;
max-width: 1080px;
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 auto;
}
nav >.menu-container>.logotipo{
font-size: 32px;
color: rgba(255,255,255,1);
font-weight: 300;
}
nav >.menu-container>.items> ul{
display: flex;
list-style-type: none;
gap: 16px;
transition: 0.5s;
}
nav >.menu-container>.items> ul > li > a {
font-size: 16px;
color: rgba(255,255,255,1);
text-decoration: none;
transition: 0.5s;
border-bottom: 1px solid rgba(255,255,255,0);
}
nav >.menu-container>.items> ul> li> a:hover{
border-bottom: 1px solid rgba(255,255,255,1);
}
nav >.menu-container>.items> button{
display: none;
}
@media screen and (max-width: 480px){
nav >.menu-container>.items> ul{
position: fixed;
left: -100%;
top: 0;
background-color: rgba(40,40,40,1);
width: 70%;
height: 100vh;
flex-wrap: wrap;
align-content: flex-start;
}
nav >.menu-container>.items> ul> li {
width: 100%;
}
nav >.menu-container>.items> ul> li > a{
width: 100%;
display: inline-block;
padding: 16px 32px;
}
nav >.menu-container>.items> button{
display: block;
font-size: 16px;
color: rgba(255,255,255,1);
background-color: transparent;
border: 0;
}
}