-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (62 loc) · 1.46 KB
/
style.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
/* Contenedor principal del menú */
.menu-container {
position: absolute;
bottom: 2%;
left: 2%;
background: rgba(0, 0, 0, 0.8);
padding: 10px;
border-radius: 8px;
z-index: 100; /* Siempre por encima */
display: flex;
flex-direction: column;
gap: 10px;
}
/* Estilo del botón principal del menú */
.menu-item {
display: flex;
align-items: center;
justify-content: flex-start;
padding: 10px;
color: white;
transform: rotate(-12deg);
font-size: 18px;
cursor: pointer;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 4px;
transition: background 0.3s, transform 0.2s;
}
/* Icono dentro del botón principal */
.menu-item span {
margin-right: 10px;
font-size: 20px;
transform: rotate(-10deg);
}
/* Efecto hover en el botón principal */
.menu-item:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateX(10px);
}
/* Contenido desplegable */
.menu-content {
display: none; /* Ocultar por defecto */
position: fixed;
top: 0;
left: 0;
width: 30%;
height: 94%;
clip-path: polygon(0% 0%, 100% 0%, 45% 100%, 0% 100%);
background: linear-gradient(to bottom right, #808080, #000000 90%);
padding: 20px;
box-sizing: border-box;
flex-direction: column;
gap: 10px;
z-index: 99; /* Asegurar que está por detrás del menú principal */
}
/* Mostrar contenido desplegable al marcar el checkbox */
#toggle:checked ~ .menu-content {
display: flex;
}
/* Checkbox oculto */
.hidden-input {
display: none;
}