-
Notifications
You must be signed in to change notification settings - Fork 0
/
style6.css
178 lines (156 loc) · 3.54 KB
/
style6.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/* Estilo geral */
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0; /* Cor de fundo geral */
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
padding: 20px; /* Adicionado padding para evitar que o conteúdo encoste nas bordas em telas pequenas */
}
.finalizacao-pedido {
background-color: #4CAF50; /* Cor de fundo verde */
border-radius: 10px; /* Borda arredondada */
padding: 20px;
width: 100%;
max-width: 400px; /* Largura máxima para telas grandes */
box-shadow: 0 0 10px rgba(0,0,0,0.2); /* Sombra suave */
}
.cabecalho {
text-align: center;
color: white; /* Cor do texto do cabeçalho */
}
.conteudo {
margin-top: 10px;
}
.conteudo label {
display: block;
margin-bottom: 5px;
color: white; /* Cor do texto dos labels */
}
.conteudo input[type="text"],
.conteudo input[type="number"],
.conteudo select {
width: 100%;
padding: 8px;
border: none;
border-radius: 5px;
margin-bottom: 10px;
box-sizing: border-box;
}
.conteudo button {
background-color: #ffffff; /* Cor de fundo branca */
color: #4CAF50; /* Cor do texto verde */
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin-top: 10px;
cursor: pointer;
border-radius: 5px;
display: block;
width: 100%;
}
.conteudo button:hover {
background-color: #e0e0e0; /* Cor de fundo ao passar o mouse */
}
.rodape {
margin-top: 20px;
text-align: center;
}
.rodape a {
color: white; /* Cor do texto do link */
text-decoration: none;
}
.rodape a:hover {
text-decoration: underline; /* Efeito de sublinhado no hover */
}
/* Estilos para o texto explicativo */
.texto-explicativo {
color: #ffffff; /* Cor branca */
padding: 10px;
border-radius: 8px;
margin-bottom: 20px;
text-align: justify;
box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Sombra para melhor legibilidade */
}
/* Estilos para os campos de seleção */
.selecao {
margin-bottom: 20px;
}
.selecao label {
display: block;
font-weight: bold;
margin-bottom: 5px;
color: #333;
}
.selecao select {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
font-size: 16px;
}
/* Estilos para o botão de finalizar pedido */
button {
background-color: #4CAF50;
color: white;
padding: 12px 24px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #45a049;
}
/* Estilos para o rodapé */
.rodape {
text-align: center;
margin-top: 20px;
}
.rodape a {
text-decoration: none;
color: #333;
font-weight: bold;
}
.rodape a:hover {
text-decoration: underline;
}
/* Estilos para a mensagem de parabéns */
#parabens {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
background-color: rgba(255, 255, 255, 0.9);
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
z-index: 1000;
}
/* Estilos para os confetes */
#confetes {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 999;
}
.confete {
width: 10px;
height: 10px;
background-color: #e6e6e6; /* Cor dos confetes */
position: absolute;
top: -20px;
animation