Spaces:
Running
Running
Update styles.css
Browse files- styles.css +27 -36
styles.css
CHANGED
@@ -83,55 +83,46 @@ th {
|
|
83 |
|
84 |
tr:hover {
|
85 |
background-color: #222;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
cursor: pointer;
|
|
|
87 |
}
|
88 |
|
89 |
-
.
|
90 |
-
|
91 |
-
|
92 |
-
top: 0;
|
93 |
-
left: 0;
|
94 |
-
width: 100%;
|
95 |
-
height: 100%;
|
96 |
-
background-color: rgba(0, 0, 0, 0.7);
|
97 |
-
justify-content: center;
|
98 |
-
align-items: center;
|
99 |
-
z-index: 1000;
|
100 |
}
|
101 |
|
102 |
-
.
|
103 |
-
background-color: #
|
104 |
-
padding: 20px;
|
105 |
-
border-radius: 10px;
|
106 |
-
text-align: center;
|
107 |
-
width: 300px;
|
108 |
}
|
109 |
|
110 |
-
.
|
111 |
-
|
|
|
112 |
}
|
113 |
|
114 |
-
.
|
115 |
-
|
116 |
-
width: 100%;
|
117 |
-
margin: 10px 0;
|
118 |
-
padding: 10px;
|
119 |
-
font-size: 16px;
|
120 |
-
border: none;
|
121 |
-
border-radius: 5px;
|
122 |
-
cursor: pointer;
|
123 |
}
|
124 |
|
125 |
-
.
|
126 |
-
|
|
|
127 |
}
|
128 |
|
129 |
-
.
|
130 |
-
|
131 |
-
top: 10px;
|
132 |
-
right: 10px;
|
133 |
-
font-size: 24px;
|
134 |
-
cursor: pointer;
|
135 |
}
|
136 |
|
137 |
.cart {
|
|
|
83 |
|
84 |
tr:hover {
|
85 |
background-color: #222;
|
86 |
+
}
|
87 |
+
|
88 |
+
.actions {
|
89 |
+
display: flex;
|
90 |
+
gap: 5px;
|
91 |
+
}
|
92 |
+
|
93 |
+
.add-to-cart-btn, .add-stock-btn, .delete-btn {
|
94 |
+
padding: 5px 10px;
|
95 |
+
border: none;
|
96 |
+
border-radius: 3px;
|
97 |
cursor: pointer;
|
98 |
+
font-size: 14px;
|
99 |
}
|
100 |
|
101 |
+
.add-to-cart-btn {
|
102 |
+
background-color: #17a2b8;
|
103 |
+
color: #fff;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
}
|
105 |
|
106 |
+
.add-to-cart-btn:hover {
|
107 |
+
background-color: #138496;
|
|
|
|
|
|
|
|
|
108 |
}
|
109 |
|
110 |
+
.add-stock-btn {
|
111 |
+
background-color: #ffc107;
|
112 |
+
color: #000;
|
113 |
}
|
114 |
|
115 |
+
.add-stock-btn:hover {
|
116 |
+
background-color: #e0a800;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
}
|
118 |
|
119 |
+
.delete-btn {
|
120 |
+
background-color: #dc3545;
|
121 |
+
color: #fff;
|
122 |
}
|
123 |
|
124 |
+
.delete-btn:hover {
|
125 |
+
background-color: #c82333;
|
|
|
|
|
|
|
|
|
126 |
}
|
127 |
|
128 |
.cart {
|