toolBox.css
2.84 KB
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
*{
margin: 0;
padding: 0;
}
.record-ctrl{
height: 60px;
width: 100%;
z-index: 999;
padding: 0 136px;
background-color: #23383f;
box-sizing: border-box;
}
.ctrl-wrap{
float: left;
}
.tool-item{
padding-top: 6px;
cursor: pointer;
float: left;
display: none;
}
.tool-item img{
width: 48px;
}
@keyframes jump {
from {
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
}
to {
transform: translateY(0);
-webkit-transform: translateY(0);
}
}
#start-recording {
position: relative;
}
#start-recording .start-recording-tips {
position: absolute;
background: #fff;
border: 1px solid #1FB6FF;
color: #1FB6FF;
bottom: 100%;
left: 50%;
margin-left: -100px;
width: 200px;
line-height: 50px;
font-size: 18px;
/*font-weight: bold;*/
text-align: center;
border-radius: 6px;
animation: jump ease 1s infinite;
-webkit-animation: jump ease 1s infinite;
pointer-events: none;
}
#start-recording .start-recording-tips:before, #start-recording .start-recording-tips:after {
position: absolute;
left: 50%;
top: 100%;
margin-left: -10px;
content: "";
border: 10px solid transparent;
border-bottom: 0;
border-top: 10px solid #1FB6FF;
}
#start-recording .start-recording-tips:after {
margin-top: -1px;
border-top-color: #fff;
}
.recording-time{
float: left;
height: 60px;
line-height: 60px;
padding: 0 12px;
color: #fff;
font-size: 18px;
}
.recording-time:before{
content: '';
display: inline-block;
width: 8px;
height: 8px;
background-color: red;
z-index: 99;
margin: 2px 8px;
border-radius: 50%;
}
.save-wrap, .score-wrap {
float: right;
height: 60px;
line-height: 60px;
}
.save-wrap input{
display: inline-block;
width: 80px;
height: 30px;
line-height: 30px;
text-align: center;
border-radius: 15px;
color: #FFF;
cursor: pointer;
margin-left: 12px;
}
.save-wrap .upload-stud, .save-wrap .upload-teach {
/*border: 1px solid #999;*/
}
.save-wrap #cancel {
background-color: transparent;
border: 1px solid #1FB6FF;
color: #1FB6FF;
}
.score-wrap {
padding: 0 20px;
color: #fff;
}
.upload-teach, .upload-stud{
// background: -webkit-linear-gradient(left, #505151, #939494);
// background: -moz-linear-gradient(left, #505151, #939494);
background-color: rgba(255,255,255,0.2);
}
.recording-finish{
background: -webkit-linear-gradient(left, #1FB6FF, #62DDF5);
background: -moz-linear-gradient(left, #1FB6FF, #62DDF5);
}
.start-recording img{
width: 50px !important;
}
.play-wrap{
padding-left: 8px;
}
#audio-play{
text-align: center;
margin-left: 24px;
}
#audio-play img{
width: 16px;
}
.tooltip-content-large {
font-size: 18px;
}