-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (66 loc) · 1.02 KB
/
style.css
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
:root {
font-family: "Open Sans", sans-serif;
}
body {
display: grid;
place-items: center;
}
h1 {
border: 2px solid black;
border-bottom: none;
border-top-left-radius: 1rem;
border-top-right-radius: 1rem;
padding: 1rem 4rem;
background: #eee;
}
label,
input,
button {
display: block;
}
label[for="toggle-password-visibility"] {
margin-left: 0.25rem;
}
.checkbox-group {
font-size: 0.75rem;
display: flex;
}
form {
padding: 4rem;
padding-top: 3rem;
border: 2px solid;
border-bottom-left-radius: 1rem;
border-bottom-right-radius: 1rem;
}
form > * + * {
margin-top: 1.25rem;
}
.input-group > * + * {
margin-top: 0.5rem;
}
button {
cursor: pointer;
}
.show-password {
border: none;
background: none;
font-size: 0.75rem;
}
.show-password:hover {
text-decoration: underline;
}
button[type="submit"] {
margin-top: 2rem;
background: black;
color: white;
border: none;
padding: 0.75rem 1rem;
font-weight: bold;
}
.requirement {
font-size: 0.7rem;
color: darkslategrey;
}
.display-error {
color: red;
}