blob: f84969739da3ca1788556fd66adcb80461fba65d (
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
|
.modal-content {
text-align: center;
margin: auto;
}
.modal-footer {
text-align: center;
}
#registerButton {
color: white;
background-color: #003459;
margin-right: 10px;
}
#registerButton,
#doNotRegisterButton {
padding: 2% 7%;
}
.close-button {
margin: 2%;
}
#link {
text-decoration: underline;
}
#link:hover {
color: var(--offwhite);
font-size: 110%;
}
.mat-form-field {
width: 80%;
}
.wrong-creds {
color: var(--ns-warn);
}
p {
font-size: 11px;
}
|