-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (67 loc) · 1.3 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
#ui, #signin-button, #signout-button {
display: none;
}
button {
height: 30px;
outline: none;
margin: 25px;
border: none;
border-radius: 8px;
box-shadow: 2px 2px 4px rgba(0, 0, 0, .25);
cursor: pointer;
width: 100px;
background-color: #1e9b2d;
color: #ffffff
}
blockquote {
text-align: center;
background-color: rgba(128, 128, 128, .125);
font-style: italic;
margin: 4% 0;
padding: 4% 0 4% 2%;
width: 98%;
}
h2 {
color: rgb(6, 6, 6);
font-size: 25px;
font-weight: 300;
line-height: 32px;
margin: 0 0 30px;
text-align: center;
background-size: cover;
}
section {
display: flex;
flex-direction: column;
margin-bottom: 1rem;
}
button.current {
box-shadow: 0 0 0 2px white,
0 0 0 4px black;
}
select {
box-shadow: 2px 2px 4px rgba(0, 0, 0, .25);
width: 100%;
}
.progress-background {
background-color: rgba(128, 128, 128, .125);
width: 100%;
}
.progress-fill {
border-top: 3px dotted rgba(128, 128, 128, .25);
display: block;
height: 3px;
transition: background-color 250ms ease-in-out, width 50ms ease-in-out;
}
.downloading {
background-color: rgba(0, 160, 0, 0.146);
}
.finished {
background-color: rgba(0, 160, 0, .75);
}
.warning {
background-color: rgba(240, 224, 0, .5);
}
.error {
background-color: rgba(240, 0, 0, .5);
}