blob: e22831137f5f7e17d130443d9fdbcfeb3e6df833 (
plain)
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
|
.sidebar {
width: 25%;
overflow: auto;
position: absolute;
top: 0;
left: -25%;
transition: all 500ms;
}
.sidebar-button {
text-align: right;
color: black;
border-right: 1px solid #000;
z-index:9;
}
@media (max-width: 580px) {
.sidebar {
width: 100%;
left:0 ;
top: -100%;
height: 100%;
}
.sidebar-button{
text-align: left;
}
}
.sidebar-active{
left: 0;
top: 0;
}
.teal {
display: flex;
justify-content: space-between;
width: 100%;
background: #0099ff;
border-bottom: 1px solid #007acc;
box-sizing: border-box;
margin: 0;
padding: 10px;
}
.hamburger::before {
content: "☰";
font-weight: bold;
}
.sidebar-button:hover {
}
.sidebar-last {
border-bottom: 1px solid #000;
}
.sidebar-close {
background: #3385ff;
}
.sidebar-close:hover {
background: #0066ff;
}
|