-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (70 loc) · 1.1 KB
/
style.css
File metadata and controls
85 lines (70 loc) · 1.1 KB
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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body{
color: white;
background-image: url(./670ba48d-b5c8-480c-89c6-333a53717677.jpg);
}
#form-container{
max-width: 1240px;
margin: auto;
margin-top: 30px;
background-color: rgba(0, 0, 0, 0.3);
}
#form-title{
color: white;
font-family: 'Oswald', sans-serif;
font-size: 3.125rem;
letter-spacing: 0.05em;
}
span{
color: red;
}
#form-description{
font-size: 1.4rem;
font-family: 'Sorts Mill Goudy', serif;
}
#form-header{
text-align: center;
}
#survey-form-container{
max-width: 500px;
height: 897px;
background-color: rgba(0, 0, 0, 0.8);
margin: auto;
padding: 10px;
}
#survey-form{
max-width: 460px;
margin: auto;
font-size: 1rem;
}
#name,
#age,
#email,
#dropdown,
#feedback {
width: 100%;
padding: 10px 10px;
margin-top: 5px;
}
.input-box{
margin-top: 20 px;
}
#form-button{
width: 160px;
height: 45px;
background-color: red;
color: white;
font-size: 1rem;
border: none;
cursor: pointer;
border-radius: 50px;
}
#form-submit{
width: 160px;
margin: auto;
margin-top: 15px;
}