-
Notifications
You must be signed in to change notification settings - Fork 7
/
style.css
119 lines (105 loc) · 2.16 KB
/
style.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
body {
width: 300px;
}
.audio_area #playhead {
width: 2px;
height: 2px;
background-color: #0CBB08;
}
.audio_area {
width: 100%;
display: inline-block;
vertical-align: top;
margin: 17px 1px 16px 0;
font-size: 0;
position: relative;
font-weight: 400;
text-decoration: none;
-webkit-text-size-adjust: none;
}
.audio_wrp {
border: 1px solid #ebebeb;
background-color: #fcfcfc;
overflow: hidden;
padding: 12px 20px 12px 12px;
}
.audio_play_area {
float: left;
margin: 9px 22px 10px 5px;
font-size: 0;
width: 18px;
height: 25px;
}
.audio_area .pic_audio_default {
display: none;
width: 18px;
}
.audio_area .audio_length {
float: right;
font-size: 14px;
margin-top: 3px;
margin-left: 1em;
}
.audio_info_area {
overflow: hidden;
}
.audio_area .audio_title {
font-weight: 400;
font-size: 17px;
margin-top: -2px;
width: auto;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal;
}
.audio_area .audio_source {
font-size: 14px;
}
.tips_global {
color: #8c8c8c;
}
.audio_area .progress_bar {
position: absolute;
left: 0;
bottom: 0;
background-color: #eee;
height: 2px;
width: 100%;
}
.audio_play_area .icon_audio_default {
background: transparent url(./img/icon_audio_unread26f1f1.png) no-repeat 0 0;
width: 18px;
height: 25px;
vertical-align: middle;
display: inline-block;
-webkit-background-size: 18px auto;
background-size: 18px auto;
}
.audio_play_area .icon_audio_playing {
background: transparent url(./img/icon_audio_reading_126f1f1.png) no-repeat 0 0;
width: 18px;
height: 25px;
vertical-align: middle;
-webkit-background-size: 18px auto;
background-size: 18px auto;
-webkit-animation: audio_playing 1s infinite;
display: none;
}
@-webkit-keyframes audio_playing {
30% {
background-image: url(./img/icon_audio_reading_126f1f1.png)
}
31% {
background-image: url(./img/icon_audio_reading_226f1f1.png)
}
61% {
background-image: url(./img/icon_audio_reading_226f1f1.png)
}
62% {
background-image: url(./img/icon_audio_reading_326f1f1.png)
}
100% {
background-image: url(./img/icon_audio_reading_326f1f1.png)
}
}