aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/register/register.component.css
blob: 93d80065472917dde51108990e6f9989445803e7 (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! */

* {
  transition: 0.2s;
}

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;
}

.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;
}