-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.css
126 lines (102 loc) · 1.66 KB
/
example.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
.musicbox{
width:100%;
background-color: rgba(0,0,0,0.8);
border: rgba(0,0,0,0.8) solid 1px;
border-radius: 15px;
color: rgba(256,256,256,0.8);
font-family: Helvetica, Arial;
font-size: 5vmin;
border-radius: 10px;
width: 100%;
height: 100%;
text-align: left;
padding: 10px;
transition: 1s;
}
.playerlogo{
font-size: 10px;
font-weight: lighter;
cursor: pointer;
padding: 5px;
vertical-align: middle;
margin:auto;
display: inline-block;
}
.playerlogo img{
height: 25px;
width: auto;
}
.coverimgtd{
text-align: center;
}
.coverimg{
border: rgba(0,0,0,0) 1px solid;
border-radius: 15px;
margin-top: 20px;
}
.songinfocont{
font-size:4vh;
margin: 0px 20px;
margin-bottom: 10px;
}
.songinfostatus{
margin-bottom: 10px;
font-weight: bold;
}
.songinfosong{
font-weight: bold;
font-size:5vh;
}
.songunder{
font-weight: lighter;
margin: 20px 0px;
font-size:16px;
cursor: pointer;
}
.left{
text-align:left;
float:left;
}
.right{
text-align:right;
float:right;
}
.songinfoartist{
font-weight: lighter;
margin-bottom: 10px;
display: inline-block;
}
.songinfosong:hover, .songinfoartist:hover{
cursor: pointer;
color: #d3b3ff;
}
.songinfoplayerprogressback{
border: 0.10em solid #333;
height: 1em;
border-radius: 15px;
}
.songinfoplayerprogress{
border: 0.1em solid #60e;
border-radius: 12px;
transition: width 2s;
z-index:-1;
background-color: #60e;
height: 0.9em;
transition: width 2s;
max-width: 97%;
}
.songinfoplayertime{
margin-top:5px;
text-align: center;
}
@media screen and (max-width: 1200px) {
.songinfocont{
font-size:10vw;
}
.songinfostatus{
font-size:5vw;
}
.songinfoartist{
font-size:5vw;
}
}