-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
118 lines (100 loc) · 2.02 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* kalam-regular - latin-ext_latin */
@font-face {
font-family: 'Kalam';
font-style: normal;
font-weight: 400;
src: local(''),
url('fonts/kalam-v11-latin-ext_latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/kalam-v11-latin-ext_latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* kalam-700 - latin-ext_latin */
@font-face {
font-family: 'Kalam';
font-style: normal;
font-weight: 700;
src: local(''),
url('fonts/kalam-v11-latin-ext_latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/kalam-v11-latin-ext_latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
html {
font-family: Kalam, serif;
font-size: 150%;
background: linear-gradient(#333, #222);
color: #eee;
line-height: 1.5;
}
h1 {
text-align: center;
line-height: 1.3;
}
#content {
max-width: 820px;
padding: 10px;
margin: 0 auto;
}
.date {
white-space: nowrap;
font-weight: bold;
}
.number {
text-align: right;
min-width: 9ex;
}
.muted {
color: gray;
}
.lead {
text-align: center;
font-size: 200%;
}
#tada{
display: inline-block;
animation: spin 1s linear infinite;
}
@keyframes spin {
25% { transform:rotate(5deg); }
75% { transform:rotate(-5deg); }
100% { transform:rotate(0deg); }
}
#sum {
font-weight: bold;
}
#details {
text-align: center;
}
#details table {
margin: 0 auto;
}
.bar {
width: 60%;
min-width: 7ex;
max-width: 18ex;
padding-left: 1ex;
}
.colourbar {
height: 1em;
background: linear-gradient(to right, #a0d, #d5f);
border-radius: 3px;
}
.language-navi {
font-family: sans-serif;
font-size: 70%;
text-align: center;
}
a {
color: white;
}
label {
display: inline-block;
min-width: 10ex;
}
input {
font-size: 100%;
padding: .2rem;
margin-bottom: .2rem;
}
button {
padding: .3rem .7rem;
font-family: Kalam, serif;
font-size: 130%;
}