blob: 6cce509179fb42b63baafc6728c973a4251f375e (
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
|
.sidebar {
width: 25%;
overflow: auto;
position: absolute;
}
.teal {
width: 100%;
background: #0099ff;
border-bottom: 1px solid #007acc;
}
.hamburger {
width: 100%;
}
.sidebar-button {
text-align: right;
color: black;
border-right: 1px solid #000;
}
.sidebar-button:hover {
}
.sidebar-last {
border-bottom: 1px solid #000;
}
.sidebar-close {
background: #3385ff;
}
.sidebar-close:hover {
background: #0066ff;
}
|