aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/css/layout.css
blob: a0a8f3728c04f43ea5a04f9fb3a3b301a8b473c8 (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
63
64
65
66
67
68
69
70
71
72
73
74
@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;
}

.navigation {
    padding: 8px;
    position: absolute;
    top: 0;
    left: 0;
}

.navigation a {
    text-decoration: none;
    color: inherit;
}

.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;
}