-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (91 loc) · 1.33 KB
/
style.css
File metadata and controls
102 lines (91 loc) · 1.33 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
html,body {
padding: 0px;
margin: 0px;
width: 100%;
height: 100%;
background: black;
}
#beats {
z-index: 10;
margin: 0px;
padding: 0px;
display: table;
width: 100%;
height: 100%;
}
#beats li {
display: table-cell;
width: 25%;
}
#beats li.current {
background: steelblue;
}
#beats.chorus li.current {
background: orange;
}
#widget {
z-index: 100;
position: absolute;
right: 10px;
bottom: 70px;
width: 250px;
height: 200px;
}
#widget_ctrl {
display: none;
z-index: 100;
position: absolute;
right: 10px;
bottom: 30px;
padding: 0px;
margin: 0px;
width: 250px;
}
#widget_ctrl li {
display: table-cell;
background: rgba(40,40,40,0.5);
color: white;
height: 10px;
font-size: 10px;
line-height: 30px;
padding: 0px 10px;
text-align: center;
}
#widget_ctrl li:hover {
cursor: pointer;
background: orange;
}
.memo {
display: none;
z-index: 100;
position: absolute;
right: 10px;
bottom: 10px;
width: 250px;
color: white;
font-size: 11px;
text-align: center;
}
#chord {
z-index: 20;
position: absolute;
left: 0px; top: 0px;
margin: 0px;
padding: 0px;
font-size: 130px;
line-height: 100%;
padding: 50px;
color: white;
}
#chorus_alert {
display: none;
z-index: 20;
position: absolute;
right: 0px; top: 0px;
margin: 0px;
padding: 0px;
font-size: 130px;
line-height: 100%;
padding: 50px;
color: white;
}