-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.css
66 lines (54 loc) · 803 Bytes
/
form.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
* {
margin: 0;
padding: 0;
font-family: 'Work Sans', sans-serif;
}
body {
background-color: #000;
}
h1 {
}
#joinUs {
margin-left: auto;
margin-right: auto;
margin-top:25vh;
padding: 3vh 0 3vh 0;
width:50vw;
min-width: 200px;
border: 3px solid #ccc;
border-radius: 1vw;
background-color: #fff;
}
.formFeildContainer {
text-align: center;
width:100%;
}
.inputLabel{
margin-left: auto;
margin-right: auto;
padding-top:1vh;
width:70%;
font-size: 0.7em;
font-weight: 600;
}
input {
width:70%;
}
.error {
margin-left: auto;
margin-right: auto;
width:70%;
font-size: 0.7em;
font-weight: 400;
color: red;
}
.formSubmitContainer {
padding-top: 1vh;
text-align: center;
}
#characters {
font-weight:400;
}
#special {
font-weight: 400;
}