-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
206 lines (181 loc) · 4.23 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
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/* Define a fonte padrão, cor de fundo e estilo geral da página */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
/* Estilo do contêiner principal */
.container {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Centraliza o título */
h1 {
text-align: center;
}
/* Estilo do formulário para disposição em coluna */
form {
display: flex;
flex-direction: column;
}
/* Espaçamento para os rótulos */
label {
margin-top: 10px;
}
/* Estilo da seção de customização do QR Code */
#qrCustomize {
border: 1px dashed #ccc;
border-radius: 8px;
padding: 10px;
margin-top: 10px;
}
/* Disposição dos rótulos de customização */
#qrCustomizeLabels {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
/* Estilo dos rótulos do menu */
.menuLabels {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}
/* Disposição dos botões de customização */
#qrCustomizeButtons {
display: flex;
justify-content: space-between;
}
/* Esconde os inputs de cor e arquivo */
#qrCustomizeButtons input[type="color"],
#qrCustomizeButtons input[type="file"] {
display: none;
}
/* Estilo dos botões de customização */
#qrCustomizeButtons label {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 50px;
border-radius: 8px;
margin: 0px 5px;
background-color: #d0ffb6;
cursor: pointer;
transition: background-color 0.3s;
}
/* Mudança de cor ao passar o mouse sobre os botões */
#qrCustomizeButtons label:hover {
background-color: #ccc;
}
/* Ícones para os inputs de arquivo e cor */
#qrCustomizeButtons label input[type="file"] + span::before {
content: '📁';
font-size: 24px;
}
#qrCustomizeButtons label input[type="color"] + span::before {
content: '🎨';
font-size: 24px;
}
#qrCustomizeButtons label input[type="range"] + span::before {
content: '';
font-size: 24px;
}
/* Estilo do input de faixa (range) */
#qrCustomizeButtons input[type="range"] {
width: 100px;
cursor: pointer;
background: transparent;
-webkit-appearance: none;
appearance: none;
}
/* Estilo da trilha do input de faixa */
#qrCustomizeButtons input[type="range"]::-webkit-slider-runnable-track {
width: 100%;
height: 8px;
cursor: pointer;
background: #68be68;
border-radius: 5px;
}
/* Estilo do polegar do input de faixa */
#qrCustomizeButtons input[type="range"]::-webkit-slider-thumb {
border: 1px solid #000;
height: 20px;
width: 20px;
border-radius: 50%;
background: #10B030;
cursor: pointer;
-webkit-appearance: none;
margin-top: -6px;
}
/* Remove a borda ao focar no input de faixa */
#qrCustomizeButtons input[type="range"]:focus {
outline: none;
}
/* Estilo do polegar do input de faixa no Firefox */
#qrCustomizeButtons input[type="range"]::-moz-range-thumb {
border: 1px solid #000;
height: 20px;
width: 20px;
border-radius: 50%;
background: #10B030;
cursor: pointer;
}
/* Estilo do input de texto */
input[type="text"] {
margin-top: 5px;
padding: 10px;
border: 1px dashed #ccc;
border-radius: 4px;
width: 100%;
box-sizing: border-box;
}
/* Estilo do botão de envio */
button {
margin-top: 15px;
padding: 10px;
background-color: #28a745;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}
/* Mudança de cor ao passar o mouse sobre o botão */
button:hover {
background-color: #218838;
}
/* Contêiner do QR Code */
#qrCodeContainer {
width: 512px;
height: 512px;
display: flex;
justify-content: space-evenly;
align-items: center;
}
/* Estilo do QR Code */
#qrCode {
margin-top: 20px;
text-align: center;
}
/* Estilo do rodapé */
footer {
display: flex;
bottom: 0;
height: 5vh;
width: 100%;
background: rgb(0, 0, 0);
color: #fff;
position: fixed;
justify-content: center;
align-items: center;
font-size: large;
font-weight: bold;
border-top: 4px #218838 solid;
}