-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSurveyFormTest.css
More file actions
41 lines (38 loc) · 785 Bytes
/
SurveyFormTest.css
File metadata and controls
41 lines (38 loc) · 785 Bytes
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
html{
background-image: linear-gradient( 115deg, rgba(58, 58, 158, 0.8), rgba(136, 136, 206, 0.7) ), url("https://cdn.freecodecamp.org/testable-projects-fcc/images/survey-form-background.jpeg");
font-family: 'Poppins', sans-serif;
}
.header{
display: "block";
text-align: center;
color: white;
padding-top: 30px;
}
.survey-form{
color: white;
background-color: rgba(27, 27, 50, 0.8);
margin-left: auto;
margin-right: auto;
max-width: 60%;
padding: 2.5rem;
border-radius: 5px;
font-weight: bold;
}
.name,.email,.number,.dropdown{
width: 95%;
margin-left: auto;
margin-right: auto;
padding: 10px;
}
textarea{
height: 120px;
width: 900px;
}
button{
height: 60px;
width: 900px;
background-color: #4CAF50;
border: none;
color: white;
}
}