-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSurveyForm.css
97 lines (81 loc) · 1.17 KB
/
SurveyForm.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
* {
margin: 0;
padding:0;
box-sizing: border-box;
}
/* utility classes */
.l-heading {
font-size: 3rem;
}
.m-heading {
font-size: 2rem;
}
body {
font-family: 'Fira Sans Extra Condensed';
}
.box {
padding-top: 3rem;
height: 100%;
background: #333 url('./images/benjamin-suter-gKiZquK8CEs-unsplash.jpg')
no-repeat center center /cover;
}
.box h1,p {
text-align: center;
color: #fff;
}
.container {
background: #3b5998;
border-radius: 13px;
padding-top: 1.5rem;
height: 80%;
width: 65%;
margin: auto;
color: #fff;
margin-top: 3rem;
opacity: .9;
}
form {
margin-top: 2rem;
}
form .name,
form .insert,
form select,
form textarea,
button {
display: block;
}
form label {
font-size: 1.4rem;
margin-left: 15%;
font-weight: 900;
}
form .insert,
form textarea,
button {
width: 70%;
height: 45px;
margin: auto;
border-style: none;
border-radius: 5px;
margin-bottom: 1.4rem;
}
button {
background: palegreen;
border-radius: 0;
}
button:hover {
background: lightgreen;
cursor: pointer;
}
form textarea {
height: 100px;
border-radius: 0;
}
form .rbtn {
display: block;
}
.checkBtn {
width: 20px;
height: 20px;
margin-right: 1rem;
}