-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
68 lines (50 loc) · 1.14 KB
/
styles.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
#sim {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
margin: 0;
}
.panel {
position: absolute;
right: 0;
top: 0;
height: 100vh;
border-left: 1px rgba(0, 0, 0, 0.3) solid;
background: white;
}
.state-wrapper {
width: 200px;
overflow: hidden;
list-style: none;
padding: 0px;
transition: width 1s;
}
.panel.closed .state-wrapper {
width: 0px;
}
.state {
border-top: 1px rgba(0, 0, 0, 0.3) solid;
text-align: center;
font-weight: bold;
font-size: 25px;
font-family: Arial, Helvetica, sans-serif;
transition: background-color 600ms;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
padding: 12px;
white-space: nowrap;
cursor: pointer;
}
.state:hover {
background-color: rgba(17, 92, 179, 0.3);
}
.state:last-child {
border-bottom: 1px rgba(0, 0, 0, 0.3) solid;
}
.state.active {
background-color: rgba(17, 60, 179, 0.5);
}