-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaudio_demo.css
70 lines (58 loc) · 1.1 KB
/
audio_demo.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
/* Volume Meter Classes */
.fill {
-webkit-text-fill-color : rgb(211, 211, 211);
color: rgb(211, 211, 211);
-webkit-transition: height 70ms ease;
-moz-transition: height 70ms ease;
-ms-transition: height 70ms ease;
transition: height 70ms ease;
max-height: 45%;
overflow: hidden;
}
.stroked {
-webkit-text-stroke: 1px #1f6fd9;
-webkit-text-fill-color: #1f6fd9;
color: #1f6fd9;
}
.stroked-green {
-webkit-text-stroke: 1px #138651;
-webkit-text-fill-color: #138651;
color: #138651;
}
.stroked-orange {
-webkit-text-stroke: 1px #ff6910;
-webkit-text-fill-color: #ff6910;
color: #ff6910;
}
.stroked-red {
-webkit-text-stroke: 1px #a12525;
-webkit-text-fill-color: #a12525;
color: #a12525;
}
.glyph {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.align_bottom {
vertical-align: bottom;
}
/* Mispro Demo Classes */
.big-text {
font-size: 20;
font-weight: 200;
line-height: 1.4;
}
.strong {
font-weight: 500;
}
.slant {
font-style: italic;
}
.content-buttons {
margin-bottom: 15px;
}
.mispro {
color: red;
}