toolBox.css
1.45 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
*{
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{
width: 48px;
padding-top: 6px;
cursor: pointer;
float: left;
display: none;
}
.tool-item img{
width: 48px;
}
.recording-time{
float: left;
height: 60px;
line-height: 60px;
padding: 0 18px;
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{
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;
}
.upload-teach, .upload-stud{
background: -webkit-linear-gradient(left, #505151, #939494);
background: -moz-linear-gradient(left, #505151, #939494);
}
.recording-finish{
background: -webkit-linear-gradient(left, #1FB6FF, #62DDF5);
background: -moz-linear-gradient(left, #1FB6FF, #62DDF5);
}