aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/assets/main.css
blob: 0f0e42f03031359d8c15c2dbf31ad8f1336a5066 (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
body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

form {
    border: 1px solid #f1f1f1;
    border-radius: .25em;
    padding: 1em;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

h3 {
    color: cccccc;
}

input[type=text], input[type=password] {
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    border: 1px solid #f1f1f1;
    border-radius: 2px;
    padding: 0.25em;
    width: 100%;
}

button {
    border-radius: 2px;
    background-color: #0daa1a;
    color: #ffffff;
    padding: 1em;
    border: none;
    cursor: pointer;
    width: 100%;
}
button:hover {
    opacity: 0.8;
}
img {
    margin-bottom: 2em;
}

.alert {
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 2px;
    background-color: #ff6f6f;
    color: #5c0500;
}