aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_modals/login-modal/login-modal.component.css
blob: f8ffe797e44320460b2e554198ba853072868663 (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
.modal-content {
    text-align: center;
    width: 80%;
    margin: auto;
}

.modal-footer {
    text-align: center;
}

#loginButton {
    color: white;
    background-color: #003459;
    margin-right: 10px;
}

#loginButton,
#doNotLoginButton {
    padding: 2% 6%;
}

.close-button {
    margin: 2%;
}

#link {
    text-decoration: underline;
}

#link:hover {
    color: var(--offwhite);
    font-size: 110%;
}

#wrong-creds {
    color: var(--ns-warn);
}