-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenulateral.html
144 lines (131 loc) · 3.58 KB
/
menulateral.html
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
* {
margin:0;
padding:0;
}
#check {
display: none;
}
#icone {
cursor: pointer;
padding:15px;
position: absolute;
z-index: 20;
}
.barra {
background-color: #d9d6b4;
height: 100%;
width: 300px;
position: absolute;
transition: all .2s linear;
left: -300px;
}
nav {
width: 100%;
position: absolute;
top: 60px;
}
nav a {
text-decoration: none;
}
.link {
background-color:#1056c7;
padding: 20px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 15px;
transition: all 0.5s ease;
color: #f4f4f9;
border-bottom: 12px solid burlywood;
opacity: 0.5;
margin-top: 200px;
}
.slink {
background-color:#1056c7;
padding: 20px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 15px;
transition: all 0.5s ease;
color: #f4f4f9;
border-bottom: 12px solid burlywood;
opacity: 1;
margin-top: 0px;
}
.slink:hover {
background-color: #05275e;
}
.link:hover {
background-color: white;
color: #05275e;
text-align: center;
text-transform: uppercase;
border-bottom: 12px solid goldenrod;
}
.sublink {
text-align: right;
background-color:#05275e;
padding: 20px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 15px;
transition: all 0.5s ease;
color: #f4f4f9;
border-bottom: 12px solid burlywood;
margin-top: 0px;
}
.sublink:hover {
background-color: white;
color: #05275e;
text-align: center;
text-transform: uppercase;
border-bottom: 12px solid goldenrod;
padding: 20px;
}
#check:checked ~ .barra{
transform: translateX(300px);
}
#check:checked ~ .barra nav a .link{
opacity: 1;
margin-top: 0;
transition-delay: .2s;
}
.menu ul ul{
display: none;
}
.menu ul li:hover > ul{
display:block;
}
.menu ul ul ul{
margin-left: 201px;
top: 0px;
}
</style>
<body>
<input type="checkbox" id="check">
<label for="check" id="icone"><img src="imagens/icone.png"></label>
<div class="barra">
<nav class="menu">
<ul>
<li><a href=""><div class="link">Home</div></a></li>
<li><a href=""><div class="link">Listas de Material</div></a></li>
<li><div class="slink">Serviços</div>
<ul>
<li><a href=""><div class="sublink">Transferências</div></a></li>
<li><a href=""><div class="sublink">Transporte Escolar</div></a></li>
<li><a href=""><div class="sublink">Aulas de Reforço</div></a></li>
<li><a href=""><div class="sublink">Delivery de Merenda</div></a></li>
</ul>
</li>
<li><a href=""><div class="link">Cadastro</div></a></li>
<li><a href=""><div class="link">Contato</div></a></li>
</ul>
</nav>
</div>
<body>
</body>
</html>