-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
60 lines (52 loc) · 1.01 KB
/
styles.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
* {
margin: 0;
padding: 0;
}
body {
background-size: cover;
/* background-attachment: fixed; */
background-repeat: no-repeat;
background-image: url(https://www.designveloper.com/wp-content/uploads/2021/01/Web-Development-Bootcamp-1.jpg);
background-image: linear-gradient(115deg,
rgba(58, 58, 158, 0.8),
rgba(62, 62, 133, 0.7).7)
}
.overlay {
background-color: rgba(0, 0, 0, 0.534);
background-size: cover;
padding: 50px;
}
#title {
color: white;
font-family: sans-serif;
font-size: 40px;
/* margin: 1em auto; */
text-align: center;
}
#description {
color: white;
text-align: center;
font-family: sans-serif;
font-size: 20px;
margin: 0 auto;
}
#survey-form {
position: relative;
box-sizing: border-box;
color: white;
/* width: 80vw; */
max-width: 800px;
margin: 10px auto;
padding: 40px;
box-shadow: 0 0 10px 0 rgb(75, 55, 55);
}
label {
display: block;
/* margin: 0.5rem 0; */
}
#name, #email {
width: 80%;
height: 20px;
margin: 4px;
padding: 2px;
}