-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.css
136 lines (113 loc) · 2.02 KB
/
App.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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
.App {
height: 100vh;
display: flex;
color: white;
}
.App__Aside {
width: 50%;
background-color: orangered;
}
.App__Form {
width: 50%;
background-color: whitesmoke;
padding: 25px 40px;
overflow: auto;
}
label {
display: inline-block;
width: 300px;
color: #445366;
}
input:invalid+span:after {
content: '✖';
padding-left: 5px;
}
input:valid+span:after {
content: '✓';
padding-left: 5px;
}
label {
display: block;
font: 1rem 'Fira Sans', sans-serif;
}
input,
label {
margin: .4rem 0;
}
.note {
font-size: .8em;
}
.FormTitle {
color: #707C8B;
margin-bottom: 50px;
justify-content: center;
display: flex;
}
.FormTitle__Link {
color: #707C8B;
text-decoration: none;
display: inline-block;
font-size: 1.7em;
margin: 0 10px;
padding-bottom: 5px;
}
.FormField {
margin-bottom: 40px;
}
.FormField__Label {
display: block;
text-transform: uppercase;
font-size: .9em;
color: rgb(201, 173, 173);
}
.FormField__Input {
width: 85%;
background-color: transparent;
border: none;
color: rgb(214, 153, 153);
outline: none;
border-bottom: 1px solid #445366;
font-size: 1em;
font-weight: 300;
padding-bottom: 10px;
margin-top: 10px;
}
.FormField__Input::placeholder {
color: rgb(202, 211, 223);
}
.FormField__Button {
font-size: 20px;
border-radius: 15px;
color: white;
background-color: orangered;
border: 2px solid orangered;
transition: all ease-in-out 500ms;
padding-left:10px;
padding-right:10px;
}
.FormField__Buuton:hover{
box-shadow: 0px 0px 0px 2px #fff inset;
}
.FormField__Link {
color: #66707D;
text-decoration: none;
display: inline-block;
border-bottom: 1.5px solid #225E62;
padding-bottom: 5px;
}
.FormField__CheckboxLabel {
color: rgb(15, 21, 29);
font-size: .9em;
}
.FormField__Checkbox {
position: relative;
top: 1.5px;
}
.FormField__TermsLink {
color: rgb(179, 139, 139);
border-bottom: 1px solid #78b4af;
text-decoration: none;
display: inline-block;
padding-bottom: 2px;
margin-left: 5px;
}