-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenuoculto.css
92 lines (77 loc) · 1.39 KB
/
menuoculto.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
.sub-item{
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #888;
display: block;
transition: 0.3s;
position:-webkit-sticky;
}
.barra{
background: rgba(255,255,255 , 0.1);
backdrop-filter:blur(15px);
width: 290px;
height: 100vh;
position: fixed;
top:0;
left: -100%;
overflow-y: auto;
transition: 0.6s ease;
transition-property: left;
background-color: rgb(36, 97, 173 );
}
.barra.active{
left: 0;
}
.barra .menu{
width: 100%;
margin-top: 80px;
}
.barra .menu .item{
position:relative;
cursor:pointer;
}
.barra .menu .item a{
color: #bbbbbb;
font-size: 16px;
text-decoration: none;
display: block;
padding: 5px 30px;
line-height: 60px;
}
.barra .menu .item a:hover{
background: #f5f3f3;
transition: 0.3s ease;
}
.barra .menu .item i{
margin-right: 15px;
}
.barra .menu .item a .suspende{
position: absolute;
right:0;
margin: 20px;
transition: 0.3s ease;
}
.barra .menu .item .sub-menu{
background: rgba(255,255,255 , 0.1);
display:none;
}
.barra .menu .item .sub-menu a{
padding-left: 80px;
}
.rotacao{
transform: rotate(90deg);
}
.fecha-btn{
position: fixed;
color: #fdfdfd;
font-size: 20px;
right: 0;
margin: 25px;
cursor: pointer;
}
.footer{
text-align: center;
font-size: 0px;
margin-top: 0%;
}