-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (70 loc) · 1.13 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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body{
background-image: url(image/background_image.jpg);
color: white;
}
#container{
max-width: 1240px;
/* height: 1036px; */
background-color: rgba(0, 0, 0, 0.3);
margin: auto;
margin-top: 30px;
}
#title{
font-size: 3.1 rem;
color: white;
font-family: 'Bowlby One SC', cursive;
letter-spacing: 0.05em;
}
span{
color:red;
}
#description{
font-family: 'Sorts Mill Goudy', serif;
}
#header{
text-align: center;
}
textarea{
resize: none;
}
#survey-form-container{
width: 500px;
background-color: rgb(0, 0, 0, 0.8);
margin: auto;
padding: 30px 40px;
}
#name,
#age,
#email,
#dropdown,
#feedback{
width: 100%;
padding: 10px;
margin-top:10px;
}
.input-box{
margin-top: 10px;
}
#form-button{
width: 160px;
height: 45px;
border-radius: 50px;
background-color: red;
color: white;
border: none;
cursor: pointer;
}
.form-submit{
margin: auto;
width: 160px;
margin-top: 15px;
}
#form-button:hover{
background-color: white;
color: red;
}