forked from tsoding/emoteJAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
70 lines (60 loc) · 1.01 KB
/
main.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
body {
margin: 40px auto;
max-width: 650px;
line-height: 1.6;
font-size:18px;
color:#444;
padding: 0 10px
}
h1 {
font-size: 400%;
line-height: 1.2;
}
h2 {
font-size: 200%;
line-height: 1.2;
padding-top: 30px;
padding-bottom: 10px;
}
p {
margin-top: 20px;
}
.widget {
width: 100%;
padding-top: 10px;
}
.widget-element {
display: table;
margin: 0 auto;
padding-top: 10px;
}
.progress-bar {
width: 100%;
}
.progress {
width: 0%;
height: 20px;
background: #07a;
}
.spinning-wheel {
width: 92px;
height: 92px;
border-left: 20px solid #07a;
border-right: 20px solid #00000000;
border-top: 20px solid #00000000;
border-bottom: 20px solid #00000000;
border-radius: 112px;
animation: spinning 0.5s infinite;
animation-timing-function: linear;
}
@keyframes spinning {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
#custom-preview {
width: 112px;
}