Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ryan778
GitHub Repository: Ryan778/Ryan778.github.io
Path: blob/master/adaptive-music/styles.css
574 views
1
html{
2
background: #f0fbff;
3
}
4
h1{
5
font-size: 2.5em}
6
7
h2{
8
font-size: 2.25em}
9
p{
10
font-size: 1.25em}
11
.btn{
12
text-transform: none}
13
.inl{
14
display: inline-block}
15
16
#main{
17
padding: 5px 10px 5px;
18
background: #ebfaff;
19
}
20
21
#btn_reqMic{
22
width: 150px;
23
}
24
#vol-total{
25
position: relative;
26
width: 202px;
27
height: 22px;
28
background: #eee;
29
border: 1px solid #ddd;
30
overflow: hidden;
31
}
32
33
#vol-peak{
34
overflow: hidden;
35
width: 0px;
36
height: 20px;
37
top: 0;
38
border-right: 1px solid #a5a5a5;
39
background: #e4ffe7;
40
transition: width 0.1s;
41
text-align: right;
42
font-size: 11px;
43
padding-top: 2px;
44
color: #222;
45
}
46
47
#vol-peak span{
48
padding-right: 4px;
49
opacity: 0.1;
50
transition: opacity 0.4s;
51
}
52
53
#vol-cur{
54
opacity: 0.85;
55
position: absolute;
56
width: 0px;
57
height: 20px;
58
top: 0;
59
border-right: 1px solid #00b94a;
60
background: linear-gradient(to right, #bfc, #afc);
61
transition: width 0.1s, opacity 0.1s;
62
}
63
64
#vol-cur:hover{
65
opacity: 0.45;
66
}
67