-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (82 loc) · 1.47 KB
/
style.css
File metadata and controls
90 lines (82 loc) · 1.47 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
86
87
88
89
90
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: url("./img/the_netflix_login_background__canada__2024___by_logofeveryt_dh0w8qv-pre.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#container {
max-width: 1240px;
/* height: 1036px; */
background-color: rgb(0, 0, 0, 0.3);
margin: auto;
margin-top: 30px;
}
#header {
text-align: center;
}
#title {
color: #fff;
font-family: "Bowlby One SC", serif;
font-size: 50px;
letter-spacing: 0.05em;
}
span {
color: #ff0000;
}
#description {
font-family: "Sorts Mill Goudy", serif;
font-weight: 400;
font-style: italic;
}
#survey-form-container {
width: 500px;
height: 800px;
background-color: rgb(0, 0, 0, 0.8);
margin: auto;
padding: 30px 40px;
margin-bottom: 30px;
}
#name,
#age,
#email,
#dropdown,
#feedback {
width: 100%;
padding: 10px;
margin-top: 10px;
}
.input-box {
margin-top: 10px;
}
#check-box,
#radio {
margin-top: 40px;
}
#feedback {
resize: none;
height: 91.46px;
}
#form-button {
width: 160px;
height: 45px;
background-color: #ff0000;
border-radius: 50px;
border: none;
color: white;
cursor: pointer;
}
#form-button:hover {
background-color: #fff;
color: red;
}
.form-submit{
text-align: center;
/* width: 160px;
margin: auto; */
}