-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
129 lines (113 loc) · 2.26 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
body {
color: rgb(0, 0, 0);
font-weight: 600;
background-image: url('img/img-fundo.jpg');
/* Adicione a URL da imagem */
background-size: cover;
/* Faz a imagem cobrir todo o espaço disponível */
background-repeat: no-repeat;
/* impede a repetição da imagem */
background-position: center;
/* Garante que o body tenha a altura total da viewport */
background-attachment: fixed;
/* Cria a ilusão de que o conteúdo da página está passando por cima de uma imagem estacionária. */
height: 100vh;
/* Remove a margem padrão do body */
margin: 0;
font-family: 'Poppins', sans-serif;
font-size: 1rem;
}
*,
*::before,
*::after {
box-sizing: border-box;
/* Inclui padding e borda no tamanho total do elemento */
}
#survey-form {
background-color: none;
width: 60vw;
max-width: 500px;
min-width: 300px;
margin: 0 auto;
padding-bottom: 2em;
}
#name-label {
text-align: center;
margin-left: 0;
}
#title,
#description {
text-align: center;
}
label {
display: flex;
align-items: center;
font-size: 1.125rem;
margin-bottom: 0.5rem;
}
p {
font-size: 20px;
margin-left: 5px;
}
#name,
#email {
font-size: 17px;
height: 5vh;
width: 400px;
border: white;
border-radius: 5px;
text-align: center;
align-items: center;
margin-left: 5px;
}
#dropdown {
background-color: white;
font-size: 15px;
height: 5vh;
border-radius: 5px;
margin-left: 5px;
}
textarea {
font-family:'Poppins', sans-serif ;
font-size: 20px;
width: 300px;
height: 10vh;
margin-left: 10x;
padding: 0px;
border-radius: none;
border: none;
}
#submit {
background-color: rgb(116, 116, 131);
font-size: 25px;
border-color: none;
border-radius: 5px;
}
#submit:hover {
background-color: rgb(65, 83, 245);
}
#email {
margin-left: 10px;
}
#number {
text-align: center;
font-weight: 600px;
text-align: center;
max-width: 70px;
min-width: 60px;
width: 20vw;
height: 5vh;
margin: 0;
border: none;
border-radius: 10px;
}
#number:hover {
background-color: rgb(116, 116, 131);
}
a {
color: black;
text-decoration: none;
}
a:hover {
color: rgb(65, 83, 245);
}