Spaces:
Running
Running
Update styles.css
Browse files- styles.css +25 -30
styles.css
CHANGED
@@ -25,7 +25,7 @@ body {
|
|
25 |
|
26 |
h2 {
|
27 |
margin-top: 0;
|
28 |
-
color: #
|
29 |
}
|
30 |
|
31 |
/* Бургер-меню */
|
@@ -40,7 +40,7 @@ h2 {
|
|
40 |
.burger-icon {
|
41 |
font-size: 24px;
|
42 |
cursor: pointer;
|
43 |
-
background-color: #
|
44 |
color: #fff;
|
45 |
padding: 10px;
|
46 |
border-radius: 5px;
|
@@ -58,6 +58,7 @@ h2 {
|
|
58 |
padding: 10px;
|
59 |
cursor: pointer;
|
60 |
border-bottom: 1px solid #ddd;
|
|
|
61 |
}
|
62 |
|
63 |
.menu-items div:last-child {
|
@@ -98,7 +99,7 @@ form {
|
|
98 |
input {
|
99 |
padding: 10px;
|
100 |
font-size: 16px;
|
101 |
-
border: 1px solid #
|
102 |
border-radius: 5px;
|
103 |
background-color: #fff;
|
104 |
color: #000;
|
@@ -107,7 +108,7 @@ input {
|
|
107 |
button {
|
108 |
padding: 10px;
|
109 |
font-size: 16px;
|
110 |
-
background-color: #
|
111 |
color: #fff;
|
112 |
border: none;
|
113 |
border-radius: 5px;
|
@@ -115,7 +116,7 @@ button {
|
|
115 |
}
|
116 |
|
117 |
button:hover {
|
118 |
-
background-color: #
|
119 |
}
|
120 |
|
121 |
/* Таблицы */
|
@@ -128,11 +129,11 @@ table {
|
|
128 |
th, td {
|
129 |
padding: 12px;
|
130 |
text-align: left;
|
131 |
-
border-bottom: 1px solid #
|
132 |
}
|
133 |
|
134 |
th {
|
135 |
-
background-color: #
|
136 |
color: #fff;
|
137 |
}
|
138 |
|
@@ -154,30 +155,30 @@ tr:hover {
|
|
154 |
}
|
155 |
|
156 |
.add-to-cart-btn {
|
157 |
-
background-color: #
|
158 |
color: #fff;
|
159 |
}
|
160 |
|
161 |
.add-to-cart-btn:hover {
|
162 |
-
background-color: #
|
163 |
}
|
164 |
|
165 |
.add-stock-btn {
|
166 |
-
background-color: #
|
167 |
-
color: #
|
168 |
}
|
169 |
|
170 |
.add-stock-btn:hover {
|
171 |
-
background-color: #
|
172 |
}
|
173 |
|
174 |
.delete-btn {
|
175 |
-
background-color: #
|
176 |
color: #fff;
|
177 |
}
|
178 |
|
179 |
.delete-btn:hover {
|
180 |
-
background-color: #
|
181 |
}
|
182 |
|
183 |
/* Корзина */
|
@@ -187,11 +188,11 @@ tr:hover {
|
|
187 |
|
188 |
#sellCartBtn {
|
189 |
margin-top: 10px;
|
190 |
-
background-color: #
|
191 |
}
|
192 |
|
193 |
#sellCartBtn:hover {
|
194 |
-
background-color: #
|
195 |
}
|
196 |
|
197 |
/* Стили для контейнера скидки */
|
@@ -204,12 +205,13 @@ tr:hover {
|
|
204 |
|
205 |
.discount-container label {
|
206 |
font-weight: bold;
|
|
|
207 |
}
|
208 |
|
209 |
.discount-container input {
|
210 |
padding: 10px;
|
211 |
font-size: 16px;
|
212 |
-
border: 1px solid #
|
213 |
border-radius: 5px;
|
214 |
background-color: #fff;
|
215 |
color: #000;
|
@@ -258,6 +260,7 @@ tr:hover {
|
|
258 |
right: 10px;
|
259 |
font-size: 24px;
|
260 |
cursor: pointer;
|
|
|
261 |
}
|
262 |
|
263 |
.modal-content h2 {
|
@@ -272,12 +275,12 @@ tr:hover {
|
|
272 |
|
273 |
#receiptTable th, #receiptTable td {
|
274 |
padding: 8px;
|
275 |
-
border-bottom: 1px solid #
|
276 |
text-align: left;
|
277 |
}
|
278 |
|
279 |
#receiptTable th {
|
280 |
-
background-color: #
|
281 |
color: #fff;
|
282 |
}
|
283 |
|
@@ -288,22 +291,14 @@ tr:hover {
|
|
288 |
border-radius: 5px;
|
289 |
cursor: pointer;
|
290 |
font-size: 16px;
|
291 |
-
|
292 |
-
|
293 |
-
#confirmSaleBtn {
|
294 |
-
background-color: #28a745;
|
295 |
color: #fff;
|
296 |
}
|
297 |
|
298 |
#confirmSaleBtn:hover {
|
299 |
-
background-color: #
|
300 |
-
}
|
301 |
-
|
302 |
-
#cancelSaleBtn {
|
303 |
-
background-color: #dc3545;
|
304 |
-
color: #fff;
|
305 |
}
|
306 |
|
307 |
#cancelSaleBtn:hover {
|
308 |
-
background-color: #
|
309 |
}
|
|
|
25 |
|
26 |
h2 {
|
27 |
margin-top: 0;
|
28 |
+
color: #000;
|
29 |
}
|
30 |
|
31 |
/* Бургер-меню */
|
|
|
40 |
.burger-icon {
|
41 |
font-size: 24px;
|
42 |
cursor: pointer;
|
43 |
+
background-color: #000;
|
44 |
color: #fff;
|
45 |
padding: 10px;
|
46 |
border-radius: 5px;
|
|
|
58 |
padding: 10px;
|
59 |
cursor: pointer;
|
60 |
border-bottom: 1px solid #ddd;
|
61 |
+
color: #000;
|
62 |
}
|
63 |
|
64 |
.menu-items div:last-child {
|
|
|
99 |
input {
|
100 |
padding: 10px;
|
101 |
font-size: 16px;
|
102 |
+
border: 1px solid #000;
|
103 |
border-radius: 5px;
|
104 |
background-color: #fff;
|
105 |
color: #000;
|
|
|
108 |
button {
|
109 |
padding: 10px;
|
110 |
font-size: 16px;
|
111 |
+
background-color: #000;
|
112 |
color: #fff;
|
113 |
border: none;
|
114 |
border-radius: 5px;
|
|
|
116 |
}
|
117 |
|
118 |
button:hover {
|
119 |
+
background-color: #333;
|
120 |
}
|
121 |
|
122 |
/* Таблицы */
|
|
|
129 |
th, td {
|
130 |
padding: 12px;
|
131 |
text-align: left;
|
132 |
+
border-bottom: 1px solid #000;
|
133 |
}
|
134 |
|
135 |
th {
|
136 |
+
background-color: #000;
|
137 |
color: #fff;
|
138 |
}
|
139 |
|
|
|
155 |
}
|
156 |
|
157 |
.add-to-cart-btn {
|
158 |
+
background-color: #000;
|
159 |
color: #fff;
|
160 |
}
|
161 |
|
162 |
.add-to-cart-btn:hover {
|
163 |
+
background-color: #333;
|
164 |
}
|
165 |
|
166 |
.add-stock-btn {
|
167 |
+
background-color: #000;
|
168 |
+
color: #fff;
|
169 |
}
|
170 |
|
171 |
.add-stock-btn:hover {
|
172 |
+
background-color: #333;
|
173 |
}
|
174 |
|
175 |
.delete-btn {
|
176 |
+
background-color: #000;
|
177 |
color: #fff;
|
178 |
}
|
179 |
|
180 |
.delete-btn:hover {
|
181 |
+
background-color: #333;
|
182 |
}
|
183 |
|
184 |
/* Корзина */
|
|
|
188 |
|
189 |
#sellCartBtn {
|
190 |
margin-top: 10px;
|
191 |
+
background-color: #000;
|
192 |
}
|
193 |
|
194 |
#sellCartBtn:hover {
|
195 |
+
background-color: #333;
|
196 |
}
|
197 |
|
198 |
/* Стили для контейнера скидки */
|
|
|
205 |
|
206 |
.discount-container label {
|
207 |
font-weight: bold;
|
208 |
+
color: #000;
|
209 |
}
|
210 |
|
211 |
.discount-container input {
|
212 |
padding: 10px;
|
213 |
font-size: 16px;
|
214 |
+
border: 1px solid #000;
|
215 |
border-radius: 5px;
|
216 |
background-color: #fff;
|
217 |
color: #000;
|
|
|
260 |
right: 10px;
|
261 |
font-size: 24px;
|
262 |
cursor: pointer;
|
263 |
+
color: #000;
|
264 |
}
|
265 |
|
266 |
.modal-content h2 {
|
|
|
275 |
|
276 |
#receiptTable th, #receiptTable td {
|
277 |
padding: 8px;
|
278 |
+
border-bottom: 1px solid #000;
|
279 |
text-align: left;
|
280 |
}
|
281 |
|
282 |
#receiptTable th {
|
283 |
+
background-color: #000;
|
284 |
color: #fff;
|
285 |
}
|
286 |
|
|
|
291 |
border-radius: 5px;
|
292 |
cursor: pointer;
|
293 |
font-size: 16px;
|
294 |
+
background-color: #000;
|
|
|
|
|
|
|
295 |
color: #fff;
|
296 |
}
|
297 |
|
298 |
#confirmSaleBtn:hover {
|
299 |
+
background-color: #333;
|
|
|
|
|
|
|
|
|
|
|
300 |
}
|
301 |
|
302 |
#cancelSaleBtn:hover {
|
303 |
+
background-color: #333;
|
304 |
}
|