aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/css/layout.css
blob: cb0850ef3d0377973c5248efbc9cb06afbc11f93 (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
body {
    margin: 0 auto;
}

.main {
    font-family: Arial, Helvetica, sans-serif;
    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 {
    text-decoration: none;
    background: none;
    padding: 5px;
    border: 1px solid #424242;
    border-radius: 10px;
}

.flex .button:visited {
    color: #424242;
}

.username {
    color: #7f8c8d;
}