-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
style.css
63 lines (58 loc) · 1.13 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
#error {
color: red;
}
#progress_bar {
margin: 10px 0;
padding: 3px;
border: 1px solid #000;
font-size: 14px;
clear: both;
opacity: 0;
-moz-transition: opacity 1s linear;
-o-transition: opacity 1s linear;
-webkit-transition: opacity 1s linear;
}
#progress_bar.loading {
opacity: 1.0;
}
#progress_bar .percent {
background-color: #99ccff;
height: auto;
width: 0;
}
/* Buttons */
.button {
border: none;
border-radius: 5px;
color: white;
padding-top: 15px;
padding-bottom: 15px;
padding-right: 30px;
padding-left: 30px;
margin-right: 6px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 24px;
cursor: pointer;
}
#upload {
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;
}
#upload + label {
background-color: #4CAF50;
}
#upload:focus + label,
#upload + label:hover {
background-color: #3E8E41;
}
#download {background-color: #4CAF50;}
#download:hover {background-color: #3E8E41;}
#cancel {background-color: #7c7f7c;}
#cancel:hover {background-color: #af504c;}
/* End Buttons */