SathvikGanta commited on
Commit
e91c97a
·
verified ·
1 Parent(s): 5242734

Update static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +13 -2
static/styles.css CHANGED
@@ -1,10 +1,21 @@
 
1
  .popup {
2
  position: fixed;
3
  top: 50%;
4
  left: 50%;
5
  transform: translate(-50%, -50%);
6
- background-color: white;
7
  padding: 20px;
8
  border-radius: 10px;
9
- box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
 
 
 
 
 
 
 
 
 
 
10
  }
 
1
+ /* Popup */
2
  .popup {
3
  position: fixed;
4
  top: 50%;
5
  left: 50%;
6
  transform: translate(-50%, -50%);
7
+ background: white;
8
  padding: 20px;
9
  border-radius: 10px;
10
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
11
+ }
12
+
13
+ /* Menu */
14
+ .menu-item {
15
+ margin-bottom: 20px;
16
+ }
17
+
18
+ /* Cart */
19
+ .cart {
20
+ margin-top: 20px;
21
  }