nagasurendra commited on
Commit
10e9c4c
·
verified ·
1 Parent(s): 807b0c3

Update static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +42 -0
static/styles.css CHANGED
@@ -1,6 +1,48 @@
1
  body {
2
  font-family: Arial, sans-serif;
3
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
 
5
  .menu-card {
6
  border: 1px solid #ddd;
 
1
  body {
2
  font-family: Arial, sans-serif;
3
  }
4
+ .menu-item {
5
+ display: flex;
6
+ justify-content: space-between;
7
+ align-items: center;
8
+ padding: 10px;
9
+ border: 1px solid #ddd;
10
+ margin-bottom: 10px;
11
+ border-radius: 5px;
12
+ }
13
+
14
+ .menu-details {
15
+ flex: 1;
16
+ }
17
+
18
+ .menu-img {
19
+ width: 80px;
20
+ height: 80px;
21
+ object-fit: cover;
22
+ border-radius: 5px;
23
+ }
24
+
25
+ .add-button {
26
+ background-color: #28a745;
27
+ color: white;
28
+ border: none;
29
+ padding: 5px 10px;
30
+ border-radius: 5px;
31
+ cursor: pointer;
32
+ }
33
+
34
+ .modal {
35
+ position: fixed;
36
+ top: 50%;
37
+ left: 50%;
38
+ transform: translate(-50%, -50%);
39
+ background: white;
40
+ border-radius: 5px;
41
+ padding: 20px;
42
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
43
+ z-index: 1000;
44
+ width: 60%;
45
+ }
46
 
47
  .menu-card {
48
  border: 1px solid #ddd;