blob: 973c6f0b101223425974b01907f9b191e3aab8f6 (
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
|
/* A lot of stuff are moved to the global styles! */
form {
width: 100%;
}
@media screen and (max-height: 630px) {
#content {
height: fit-content !important;
}
}
#content hr {
width: 100%;
border: 1px solid black;
box-sizing: border-box;
}
.submit-btn {
transition: 0.2s;
}
.input-selection:nth-of-type(1) {
margin-top: 1.2em;
}
.submit-btn {
margin-bottom: .2em;
}
.redirect-to-login {
color: var(--focus-color);
background-color: var(--bg-color);
border-color: var(--focus-color);
}
.redirect-to-login:hover {
border-color: black !important;
color: black;
}
|