blob: adc1e86f1d437a8c453b81a087ba6b10ca9ea2d7 (
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
|
.container {
width: 100%;
height: 100%;
display: flex;
overflow: hidden;
}
.main {
height: 100%;
flex: 1 1 auto;
}
.asideToggle {
display: none;
}
@media only screen and (max-width: 500px) {
.asideToggle {
width: 36px;
height: 36px;
padding-bottom: 3px;
padding-left: 2px;
border: 2px solid rgba(0, 0, 0, 0.2);
border-radius: 4px;
display: block;
position: absolute;
top: 10px;
left: 10px;
z-index: 999;
transform: rotate(90deg);
font-family: 'Lucida Console', Monaco, monospace;
font-size: 18px;
font-weight: 700;
letter-spacing: -5px;
background-color: #fff;
background-clip: padding-box;
cursor: pointer;
user-select: none;
outline: currentcolor none medium;
}
.asideToggle:hover {
background-color: #f4f4f4;
}
.asideOpen {
left: 0;
}
}
|