tsi-org commited on
Commit
ea2b509
·
1 Parent(s): 0584b7c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -4
app.py CHANGED
@@ -29,10 +29,29 @@ badges = """
29
 
30
  """
31
  menu = """
32
- <div style="display: flex; justify-content: space-between; align-items: center; background-color: #f4f4f4; padding: 10px;">
33
- 🎵 <span style="margin-right: 15px;"><a href="#">Item 1</a></span>
34
- <span style="margin-right: 15px;"><a href="#">Item 2</a></span>
35
- <span><a href="#">Item 3</a></span>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  </div>
37
  """
38
 
 
29
 
30
  """
31
  menu = """
32
+ <style>
33
+ .menu-bar {
34
+ display: flex;
35
+ justify-content: space-between;
36
+ align-items: center;
37
+ background-color: #333;
38
+ padding: 10px;
39
+ color: white;
40
+ }
41
+ .menu-item {
42
+ margin-right: 15px;
43
+ }
44
+ .menu-item a {
45
+ color: white;
46
+ text-decoration: none;
47
+ }
48
+ </style>
49
+
50
+ <div class="menu-bar">
51
+ 🎵
52
+ <span class="menu-item"><a href="#">Item 1</a></span>
53
+ <span class="menu-item"><a href="#">Item 2</a></span>
54
+ <span class="menu-item"><a href="#">Item 3</a></span>
55
  </div>
56
  """
57