-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyles.css
More file actions
99 lines (88 loc) · 1.79 KB
/
Styles.css
File metadata and controls
99 lines (88 loc) · 1.79 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
body {
margin: 0px;
background-image: url(./assets/images/background.svg);
background-position: center;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: Arial, sans-serif;
}
.flex-outer {
display: flex;
justify-self: center;
justify-content: center;
justify-items: center;
background-color: white;
border-radius: 20px;
border: 1px solid rgb(215, 215, 215);
}
.flex-inner {
display: grid;
justify-self: center;
justify-content: center;
background-color: white;
padding: 5vmax;
border-radius: 10px;
border: 1px solid white;
}
.password-rules {
font-size: 0.95rem;
margin-top: 8px;
padding: 10px 15px;
background-color: white;
border-left: 3px solid rgb(50, 110, 190);
border-radius: 10px;
}
.flex-inner label{
margin-bottom: 16px;
font-size: 16px;
padding: 5px;
width: 25vmax;
text-align: center;
font-size: 16px;
box-sizing: border-box;
}
.flex-inner input {
margin-bottom: 16px;
font-size: 12px;
border-radius: 4px;
padding: 10px;
width: 25vmax;
text-align: center;
font-size: 16px;
box-sizing: border-box;
border: 1px solid black;
}
#submit {
box-sizing: border-box;
border-radius: 4px;
background-color: rgb(50, 110, 190);
color: white;
border: 0px;
margin-top: 15px;
}
#forgot {
display: grid;
justify-self: end;
font-size: 14px;
margin-bottom: 10px;
}
p {
text-align: center;
}
a {
color: rgb(50, 110, 190);
text-decoration: none;
font-size: 16px;
}
.password-rules ul {
margin: 0;
padding-left: 20px;
color: rgb(60, 60, 60)
}
.password-rules li {
margin-bottom: 4px;
list-style-type: disc;
}