-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
189 lines (153 loc) · 2.76 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/** font settings **/
@font-face {
font-family: Config;
src: url("./config.otf") format("opentype");
}
html {
font-family: 'Config', serif;
font-size: 16px;
line-height: 2em;
letter-spacing: 0.06em;
}
h1 {
font-size: 2.2em;
}
h2 {
font-size: 1.6em;
}
@media screen and (max-width: 699px) {
html {
font-size: 13px;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.4em;
}
}
div.section p {
padding-left: 1em;
}
body {
background: radial-gradient(31.74% 3046.23% at 50% 49.81%, #242a42 0, #121524 100%);
color: #fff;
}
button {
font-family: 'Config', serif;
font-size: 1.2em;
line-height: 2em;
letter-spacing: 0.06em;
background-color: #dc5d17;
border-radius: 3px;
border: none;
color: #fff;
padding: 0.1em 0.6em 0.1em 0.6em;
cursor: pointer;
}
button.dark {
background-color: #4b5e81;
}
a {
color: #dc5d17;
}
span.highlight {
color: #dc5d17;
}
span.prestige {
color: #32e9ea;
}
span.coins {
color: #fadf86;
}
input[type="text"] {
font-family: 'Config', serif;
font-size: 1.1em;
line-height: 1.6em;
letter-spacing: 0.05em;
padding: 0.001em 0.6em 0.001em 0.6em;
width: 3.5em;
color: #fff;
background-color: #4b5e81;
border: 0;
border-radius: 3px;
outline: 0;
}
input:focus {
outline: none !important;
}
hr {
color: #666;
}
/** input layout **/
form {
display: table;
}
div.form {
/** background **/
background-color: rgba(200, 200, 200, 0.1);
padding: 1em;
border-radius: 6px;
display: inline-block;
}
form p {
display: table-row;
}
form label {
display: table-cell;
}
form input {
display: table-cell;
margin-left: 10px;
margin-bottom: 6px;
}
/** tabs **/
div.tabs {
background-color: rgba(200, 200, 200, 0.1);
padding: 1em;
border-radius: 6px;
display: inline-block;
}
div.tabs span {
cursor: pointer;
}
div.tabs span.selected {
background-color: #dc5d17;
padding: 0.4em 0.6em 0.4em 0.6em;
border-radius: 3px;
}
/** progress bars **/
.progress {
margin-left: 1em;
width: 20em;
display: flex;
overflow: hidden;
background-color: rgba(200, 200, 200, 0.5);
border-radius: 3px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2);
}
.progress span {
display: flex;
flex-direction: column;
justify-content: center;
overflow: hidden;
text-align: center;
white-space: nowrap;
transition: width 0.6s ease;
height: 1em;
}
.progress span.base {
color: black;
background-color: #dc5d17;
}
.progress span.prestige {
color: black;
background-color: #32e9ea;
}
/** about section **/
div.about {
color: #777;
}
div.about a {
filter: brightness(70%);
}