blob: 766522ee4858e672a372fc036bd7f53ba7c2d3d2 (
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
|
* {
transition: .2s;
}
form {
width: 100%;
}
#content hr {
width: 100%;
border: 1px solid black;
box-sizing: border-box;
}
.input-selection:nth-of-type(1) {
margin-top: 1.2em;
}
.submit-btn {
margin-bottom: .2em;
}
.redirect-to-register {
color: var(--focus-color);
background-color: var(--bg-color);
border-color: var(--focus-color);
}
.redirect-to-register:hover {
border-color: black !important;
color: black;
}
|