-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobile.css
More file actions
91 lines (70 loc) · 1.52 KB
/
mobile.css
File metadata and controls
91 lines (70 loc) · 1.52 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
85
86
87
88
89
90
91
.menu-des, #menu-des, .menu-label{
display: none;
}
@media (max-width: 776px) {
.nav-list-principal {
position: absolute;
display: none;
flex-direction: column;
top: 3.875rem;
left: 12%;
width: 54%;
align-items: center;
background-color: #ceaed5;
border: 2px solid black;
border-top: 0;
padding: 4% 0%;
font-size: 1.125rem;
z-index: 1;
}
.nav-item{
gap: 0.938rem;
}
.nav-list-principal>.nav-item:first-child::before{
content: "🏡";
}
.nav-list-principal>.nav-item:nth-child(2)::before{
content: "👚";
}
.nav-list-principal>.nav-item:nth-child(3)::before{
content: "🎁";
}
.nav-list-principal>.nav-item:nth-child(4)::before{
content: "📱";
}
.navegador {
justify-content: space-between;
}
.icono-principal{
height: 2.188rem;
width: 2.188rem;
margin-top: 0.25rem;
}
.menu-label, .menu-des, .menu-label{
display: flex;
cursor: pointer;
}
.menu-label img{
width: 1.875rem;
height: 1.875rem;
margin-top: 0.375rem;
}
#menu-des:checked + .nav-list-principal{
display: flex;
}
}
@media (max-width: 416px) {
.icono-principal{
display: none;
}
.nav-list-principal{
top: 3.313rem;
left: 5%;
}
.boton-ingreso img{
margin: 0;
}
.menu-label img{
margin: 0;
}
}