-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaoide.css
More file actions
88 lines (77 loc) · 1.22 KB
/
aoide.css
File metadata and controls
88 lines (77 loc) · 1.22 KB
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
@keyframes info-slide {
from {
right: -408px;
}
to {
right: 0;
}
}
body {
font-family: sans-serif;
overflow-x: hidden;
}
#source {
position: absolute;
top: 0;
right: 0;
bottom: 41px;
left: 0;
}
.highlight {
background: rgba(52, 152, 219, 0.25);
position: absolute;
}
#info {
position: absolute;
top: 0;
right: -408px;
bottom: 41px;
width: 400px;
border-left: 8px solid #f0f0f0;
background: #fff;
overflow-y: scroll;
z-index: 1000;
}
#info-inner {
padding: 32px;
}
.info-slide-in {
animation: info-slide 0.4s cubic-bezier(0.86, 0, 0.07, 1) forwards;
}
.info-slide-out {
animation: info-slide 0.4s cubic-bezier(0.86, 0, 0.07, 1) reverse forwards;
}
#controls {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 21px;
background: #dcdcdc;
padding: 10px;
font-size: 21px;
color: #333;
text-align: center;
}
#progress {
position: absolute;
z-index: 500;
bottom: 0;
left: 0;
width: 0vw;
height: 41px;
background: #03A9F4;
}
#aoide {
position: absolute;
bottom: 44px;
right: 6px;
font-family: sans-serif;
color: rgba(100, 100, 100, 0.35);
user-select: none;
}
.control {
position: relative;
z-index: 1000;
cursor: pointer;
}