-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (70 loc) · 1.24 KB
/
style.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
* {
margin: 0;
padding: 0;
}
body {
background-image: url("netflixbackground.jpg");
color: white;
}
#container {
background-color: rgba(0, 0, 0, 0.3);
margin: 30px 100px;
}
#title {
text-align: center;
font-size: 50px;
font-family: "Bowlby One SC", cursive;
padding-top: 10px;
letter-spacing: 7px;
}
span {
color: #ff0000;
}
#description {
text-align: center;
font-family: "Sorts Mill Goudy", serif;
font-size: 23px;
margin-bottom: 12px;
}
#survey-form {
width: 500px;
height: auto;
background-color: rgba(0, 0, 0, 0.8);
margin: auto;
padding-top: 10px;
}
#name,
#number,
#email,
#dropdown {
margin-top: 14px;
height: 36px;
width: 400px;
padding: 8px;
}
select {
box-sizing: content-box;
resize: none;
}
.box {
margin-top: 14px;
margin-left: 40px;
}
.textarea {
margin-top: 10px;
}
#submit {
background-color: red;
font-size: larger;
height: 45px;
width: 160px;
border-radius: 50px;
border: none;
color: white;
cursor: pointer;
margin: 16px 0px 16px 150px;
}
#submit:hover {
background-color: white;
color: red;
}