Spaces:
Running
Running
Update styles.css
Browse files- styles.css +60 -51
styles.css
CHANGED
@@ -7,29 +7,6 @@ body {
|
|
7 |
padding: 0;
|
8 |
}
|
9 |
|
10 |
-
/* Бургер-меню для мобильных устройств */
|
11 |
-
.menu-toggle {
|
12 |
-
display: none;
|
13 |
-
flex-direction: column;
|
14 |
-
cursor: pointer;
|
15 |
-
padding: 10px;
|
16 |
-
position: fixed;
|
17 |
-
top: 10px;
|
18 |
-
left: 10px;
|
19 |
-
z-index: 1000;
|
20 |
-
background-color: #28a745;
|
21 |
-
border-radius: 5px;
|
22 |
-
}
|
23 |
-
|
24 |
-
.menu-toggle span {
|
25 |
-
width: 25px;
|
26 |
-
height: 3px;
|
27 |
-
background-color: #fff;
|
28 |
-
margin: 4px 0;
|
29 |
-
transition: 0.4s;
|
30 |
-
}
|
31 |
-
|
32 |
-
/* Контейнер для разделов */
|
33 |
.container {
|
34 |
display: flex;
|
35 |
gap: 20px;
|
@@ -38,18 +15,12 @@ body {
|
|
38 |
margin: 0 auto;
|
39 |
}
|
40 |
|
41 |
-
|
42 |
-
.section {
|
43 |
flex: 1;
|
44 |
background-color: #f9f9f9;
|
45 |
padding: 20px;
|
46 |
border-radius: 10px;
|
47 |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
48 |
-
display: none;
|
49 |
-
}
|
50 |
-
|
51 |
-
.section.active {
|
52 |
-
display: block;
|
53 |
}
|
54 |
|
55 |
h2 {
|
@@ -57,6 +28,65 @@ h2 {
|
|
57 |
color: #333;
|
58 |
}
|
59 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
/* Форма добавления товара */
|
61 |
form {
|
62 |
display: flex;
|
@@ -254,25 +284,4 @@ tr:hover {
|
|
254 |
|
255 |
#cancelSaleBtn:hover {
|
256 |
background-color: #c82333;
|
257 |
-
}
|
258 |
-
|
259 |
-
/* Адаптация для мобильных устройств */
|
260 |
-
@media (max-width: 768px) {
|
261 |
-
.menu-toggle {
|
262 |
-
display: flex;
|
263 |
-
}
|
264 |
-
|
265 |
-
.container {
|
266 |
-
flex-direction: column;
|
267 |
-
padding: 10px;
|
268 |
-
}
|
269 |
-
|
270 |
-
.section {
|
271 |
-
display: none;
|
272 |
-
margin-top: 60px; /* Отступ для бургер-меню */
|
273 |
-
}
|
274 |
-
|
275 |
-
.section.active {
|
276 |
-
display: block;
|
277 |
-
}
|
278 |
}
|
|
|
7 |
padding: 0;
|
8 |
}
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
.container {
|
11 |
display: flex;
|
12 |
gap: 20px;
|
|
|
15 |
margin: 0 auto;
|
16 |
}
|
17 |
|
18 |
+
.column {
|
|
|
19 |
flex: 1;
|
20 |
background-color: #f9f9f9;
|
21 |
padding: 20px;
|
22 |
border-radius: 10px;
|
23 |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
|
|
|
|
|
24 |
}
|
25 |
|
26 |
h2 {
|
|
|
28 |
color: #333;
|
29 |
}
|
30 |
|
31 |
+
/* Бургер-меню */
|
32 |
+
.burger-menu {
|
33 |
+
display: none; /* Скрыто по умолчанию */
|
34 |
+
position: fixed;
|
35 |
+
top: 10px;
|
36 |
+
left: 10px;
|
37 |
+
z-index: 1000;
|
38 |
+
}
|
39 |
+
|
40 |
+
.burger-icon {
|
41 |
+
font-size: 24px;
|
42 |
+
cursor: pointer;
|
43 |
+
background-color: #28a745;
|
44 |
+
color: #fff;
|
45 |
+
padding: 10px;
|
46 |
+
border-radius: 5px;
|
47 |
+
}
|
48 |
+
|
49 |
+
.menu-items {
|
50 |
+
display: none;
|
51 |
+
background-color: #fff;
|
52 |
+
border-radius: 5px;
|
53 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
54 |
+
margin-top: 10px;
|
55 |
+
}
|
56 |
+
|
57 |
+
.menu-items div {
|
58 |
+
padding: 10px;
|
59 |
+
cursor: pointer;
|
60 |
+
border-bottom: 1px solid #ddd;
|
61 |
+
}
|
62 |
+
|
63 |
+
.menu-items div:last-child {
|
64 |
+
border-bottom: none;
|
65 |
+
}
|
66 |
+
|
67 |
+
.menu-items div:hover {
|
68 |
+
background-color: #f1f1f1;
|
69 |
+
}
|
70 |
+
|
71 |
+
/* Адаптация для мобильных устройств */
|
72 |
+
@media (max-width: 768px) {
|
73 |
+
.container {
|
74 |
+
flex-direction: column;
|
75 |
+
}
|
76 |
+
|
77 |
+
.column {
|
78 |
+
display: none; /* Скрываем все колонки по умолчанию */
|
79 |
+
}
|
80 |
+
|
81 |
+
.burger-menu {
|
82 |
+
display: block; /* Показываем бургер-меню */
|
83 |
+
}
|
84 |
+
|
85 |
+
.column.active {
|
86 |
+
display: block; /* Показываем активную колонку */
|
87 |
+
}
|
88 |
+
}
|
89 |
+
|
90 |
/* Форма добавления товара */
|
91 |
form {
|
92 |
display: flex;
|
|
|
284 |
|
285 |
#cancelSaleBtn:hover {
|
286 |
background-color: #c82333;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
287 |
}
|