blob: b319e24d49401592e304b32cff41d41defe67ee7 (
plain) (
blame)
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
|
@font-face {
font-family: "Share Tech Mono";
src: url('/fonts/ShareTechMono.ttf') format("TrueType");
}
body {
margin: 0 auto;
}
.main {
font-family: "Share Tech Mono", monospace;
color: #424242;
padding: 0;
margin: 0;
}
*:focus {
outline: none;
}
button {
color: #424242;
}
.flex {
display: flex;
flex-flow: wrap column;
width: 100vw !important;
height: 100vh !important;
overflow: hidden;
text-align: center;
justify-content: center;
align-items: center;
}
.flex div {
margin: 10px;
}
.flex form input, .flex button {
background: none;
padding: 5px;
border: 1px solid #424242;
border-radius: 10px;
}
.flex .button, .switch {
text-decoration: none;
background-color: #424242;
padding: 5px;
border: 1px solid #424242;
border-radius: 10px;
color: #fff;
}
.flex .button:visited, .switch {
color: #fff;
}
.username {
color: #7f8c8d;
}
|