forked from AditiDiti/HelpingHands2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.css
99 lines (89 loc) · 1.6 KB
/
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
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 {
font-family: 'Lato', 'Lucida Grande', 'Lucida Sans Unicode', Tahoma, Sans-Serif;
}
.main {
background-image: url(https://foreseetheday.com/wp-content/uploads/2019/06/geometric-constructions-step-by-step-925x540.jpg);
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
color: #ffffff;
overflow-y: scroll;
font-size: 24px
}
.main::after {
content: "";
background-color: rgb(0, 0, 0,.8);
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.main > h1,
.main > p {
text-align: center;
font-family: 35px;
z-index: 2;
position: relative
}
.main-content {
background-color: rgba(27, 43, 50, 0.9);
max-width: 650px;
display: flex;
flex-direction: column;
padding: 40px;
margin: 0 auto;
margin-bottom: 40px;
border-radius: 5px;
z-index: 2;
position: relative;
box-shadow: 0px -1px 10px 5px #0060B9;
}
#name, #email, #number, #dropdown, #comment {
display: block;
width: 100%;
height: 35px;
padding: 5px 10px;
color: #000000;
background-color: #ffffff;
border: 1px solid #eeeeee;
border-radius: 5px;
font-size: 20px;
margin-bottom: 40px;
}
label[for=name],
label[for=email],
label[for=number],
label[for=dropdown],
label[for=comment] {
margin-bottom: 10px;
display: inline-block;
}
#video-length,
#content-quality,
#more-videos,
fieldset input {
height: 20px;
width: 20px;
margin-right: 15px;
margin-bottom: 15px;
}
#comment {
min-height: 180px;
}
label[for=comment]{
margin-top: 30px
}
#submit {
display: block;
width: 100%;
padding: 0.75rem;
background: #0060B9;
border-radius: 2px;
cursor: pointer;
border: 0;
color: #ffffff;
font-size: 20px;
}