summaryrefslogtreecommitdiff
path: root/assets/css/auth.css
blob: 20ab50dfa6cce9795c85b79999cac80a6bda7708 (plain)
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
/* auth */
.lcolonq-auth {
    position: absolute;
    top: 0px;
    left: 0px;
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 2fr 1fr;
}

.lcolonq-auth-box-outer {
    grid-row: 2;
    grid-column: 2;
}

.lcolonq-auth-box {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.lcolonq-auth-box h1 {
    margin-top: 0rem;
}

#lcolonq-auth-submit {
    display: none;
}

#lcolonq-auth-below {
    text-align: center;
}

#lcolonq-auth-register {
    font-size: 0.7rem;
    color: CanvasText;
}

#lcolonq-auth-error {
    grid-row: 3;
    grid-column: 2;
    text-align: center;
    color: red;
}