-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
121 lines (102 loc) · 2.01 KB
/
App.css
File metadata and controls
121 lines (102 loc) · 2.01 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/* Colors */
/*
dark blue : #476A6F
ligh blue : #258EA6
dark green :#519E8A
medium green :#7EB09B
light green : #A3C4BC
*/
.wrapper {
height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
justify-self: center;
align-items: center;
background-color: #258ea6;
}
.form-wrapper {
width: 400px;
display: flex;
flex-direction: column;
padding: 10px 30px;
border-radius: 10px;
box-shadow: 0px 10px 50px #555;
}
form {
width: 400px;
display: flex;
flex-wrap: wrap;
}
h1 {
text-shadow: 2px 2px 5px #051e23;
text-align: center;
color: #fefdfd;
font-weight: bold;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-seri;
}
label {
font-size: 0.9em;
font-weight: bold;
margin-bottom: 0.25em;
color: #1f1c1c;
}
input {
padding: 10px 10px;
border-radius: 5px;
outline: none;
border: 1px solid #cfcfcf;
}
input::placeholder {
font-size: 1.2em;
font-weight: lighter;
color: #999;
}
input.error {
border: 1px solid red;
}
.errorMessage {
color: red;
font-size: 0.75em;
display: relative;
}
.firstName {
margin-right: 1%;
}
.lastName {
margin-left: 1%;
}
.firstName,
.lastName,
.email,
.password {
display: flex;
flex-direction: column;
margin-bottom: 15px;
}
.firstName,
.lastName {
width: 49%;
}
.email,
.password {
width: 100%;
}
.createAccount {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
button {
background-color: #476A6F;
color: #A3C4BC;
font-size: medium;
border: 2px solid #7EB09B;
padding: 10px 30px;
margin: 4px 2px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-seri;
}
small {
color: #A3C4BC;
}