-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathindex.css
45 lines (40 loc) · 866 Bytes
/
index.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
* {
box-sizing: border-box;
}
body {
background-color: #1d1f23;
color: #ededed;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
'Droid Sans', 'Helvetica Neue', sans-serif;
font-size: 16px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
zoom: 115%;
}
.loader {
display: inline-block;
border: 0.2em solid #f3f3f3; /* Light grey */
border-top: 0.2em solid #555; /* Blue */
border-radius: 50%;
width: 1em;
height: 1em;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.usernameForm form {
display: flex;
justify-content: space-between;
align-items: center;
width: 18em;
}
.usernameForm input {
font-size: 0.85em;
padding: 0.26em;
}