-
Notifications
You must be signed in to change notification settings - Fork 7
/
status.css
148 lines (130 loc) · 2.54 KB
/
status.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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
body{
padding: 100px 120px 0 120px;
background: url("https://juliocesar.io/voyager_static/img/tex.jpg");
background-size: cover;
}
.keys {
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
text-align: center;
line-height: 8rem;
height: 16rem;
}
.keys div {
display: inline-block;
margin: 0 0.5rem;
height: 4rem;
width: 4rem;
line-height: 3.6rem;
text-align: center;
vertical-align: bottom;
color: white;
border-style: solid;
border-width: 0.4rem 0.45rem 0.6rem;
border-radius: 0.8rem;
border-color: #eee #858585 #424242 #212121;
background: #2b2728;
-moz-transition: all 80ms ease;
-o-transition: all 80ms ease;
-webkit-transition: all 80ms ease;
transition: all 80ms ease;
}
.keys .pressed {
border-bottom-width: 0.5rem;
text-shadow: 0 0 10px #23aadf;
color: #23aadf;
}
.key-wrapper {
position: relative;
}
.row {text-align: center;}
.key {
margin: 3px 1px;
width: 50px;
height: 50px;
border: 2px solid #333;
border-radius: 5px;
display: inline-block;
line-height: 52px;
text-align: center;
text-transform: uppercase;
-webkit-transition: .5s;
-moz-transition: .5s;
-o-transition: .5s;
-ms-transition: .5s;
transition: .5s;
}
.k32 {
width: 330px;
}
.k16 {
width: 80px;
}
.active {
border: 2px solid #23aadf;
color: #23aadf;
-webkit-transition: 0s;
-moz-transition: 0s;
-ms-transition: 0s;
transition: 0s;
}
.menu {
float: left;
position: absolute;;
text-align: left;
top:150px;
}
.status-bar {
float: right;
position: relative;
top:-200px;
margin-right: 20px;
text-align: left;
}
.menu li {
list-style: none;
text-align: left;
}
.panel {
background: white;
opacity: 0.95;
}
#player {
width: 350px;
height: 50px;
position: relative;
margin: 0 auto;
top: 10px;
}
#volume {
position: absolute;
left: 24px;
margin: 0 auto;
height:15px;
width: 300px;
background: url('https://juliocesar.io/voyager_static/img/volume-empty.png') no-repeat left top;
border: none;
outline: none;
}
#volume .ui-slider-range-min {
height:15px;
width: 300px;
position: absolute;
background: url('https://juliocesar.io/voyager_static/img/volume-full.png') no-repeat left top;
border: none;
outline: none;
}
#volume .ui-slider-handle {
width: 38px;
height:39px;
background: url('https://juliocesar.io/voyager_static/img/volume-knob.png') no-repeat left top;
position: absolute;
margin-left: -15px;
cursor: pointer;
outline: none;
border: none;
top: -40%;
}