-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (61 loc) · 1.43 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
html, body{
box-sizing: border-box;
line-height: 18px;
height: 100px;
width: 200px;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
font-family: Arial, sans-serif;
font-size: 15px;
padding: 1em;
text-align: center;
}
.hidden{
display: none!important;
}
#status {
/* avoid an excessively wide status text */
white-space: pre;
text-overflow: ellipsis;
overflow: hidden;
max-width: 400px;
}
#loading{
max-width: 100px;
}
#finished{
max-width: 20px;
margin-top: 10px;
}
button,
.button{
border: 1px solid transparent;
border-radius: 2px 0 0 2px;
box-sizing: content-box;
color: #fff;
cursor: pointer;
background-color: #d14836;
background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#d14836));
background-image: -webkit-linear-gradient(top,#dd4b39,#d14836);
background-image: -moz-linear-gradient(top,#dd4b39,#d14836);
background-image: -ms-linear-gradient(top,#dd4b39,#d14836);
background-image: -o-linear-gradient(top,#dd4b39,#d14836);
background-image: linear-gradient(top,#dd4b39,#d14836);
display: block;
min-width: 54px;
font-family: Arial, sans-serif;
font-size: 11px;
font-weight: bold;
height: 27px;
padding: 0 8px;
line-height: 27px;
margin: 1em;
text-align: center;
text-decoration: none;
text-shadow: 0 1px rgba(0,0,0,0.1);
text-transform: uppercase;
transition: all 218ms;
}