Spaces:
Sleeping
Sleeping
Update static/styles.css
Browse files- static/styles.css +33 -0
static/styles.css
CHANGED
@@ -27,6 +27,37 @@ body {
|
|
27 |
border-radius: 5px;
|
28 |
}
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
.add-button {
|
31 |
background-color: #28a745;
|
32 |
color: white;
|
@@ -68,3 +99,5 @@ body {
|
|
68 |
font-size: 20px;
|
69 |
cursor: pointer;
|
70 |
}
|
|
|
|
|
|
27 |
border-radius: 5px;
|
28 |
}
|
29 |
|
30 |
+
.add-button {
|
31 |
+
background-color: #28a745;
|
32 |
+
color: white;
|
33 |
+
border: none;
|
34 |
+
padding: 5px 10px;
|
35 |
+
border-radius: 5px;
|
36 |
+
cursor: pointer;
|
37 |
+
}
|
38 |
+
/* Main Page Styles */
|
39 |
+
.menu-card {
|
40 |
+
display: flex;
|
41 |
+
justify-content: space-between;
|
42 |
+
align-items: center;
|
43 |
+
border: 1px solid #ddd;
|
44 |
+
padding: 10px;
|
45 |
+
margin-bottom: 10px;
|
46 |
+
border-radius: 5px;
|
47 |
+
background-color: white;
|
48 |
+
}
|
49 |
+
|
50 |
+
.menu-card-content {
|
51 |
+
flex: 1;
|
52 |
+
}
|
53 |
+
|
54 |
+
.menu-card-image {
|
55 |
+
width: 80px;
|
56 |
+
height: 80px;
|
57 |
+
object-fit: cover;
|
58 |
+
border-radius: 5px;
|
59 |
+
}
|
60 |
+
|
61 |
.add-button {
|
62 |
background-color: #28a745;
|
63 |
color: white;
|
|
|
99 |
font-size: 20px;
|
100 |
cursor: pointer;
|
101 |
}
|
102 |
+
|
103 |
+
|