Junaidb commited on
Commit
4727ea5
·
verified ·
1 Parent(s): 2340af5

Update ui.py

Browse files
Files changed (1) hide show
  1. ui.py +7 -21
ui.py CHANGED
@@ -41,32 +41,15 @@ def APP():
41
 
42
  def SHOWTABS():
43
 
44
-
45
- st.markdown("""
46
- <style>
47
- @keyframes blink {
48
- 0% { opacity: 1; }
49
- 50% { opacity: 0; }
50
- 100% { opacity: 1; }
51
- }
52
-
53
- .blinking-text {
54
- animation: blink 2s infinite;
55
- font-size: 20px;
56
- font-weight: bold;
57
- color: red;
58
- }
59
- </style>
60
- """, unsafe_allow_html=True)
61
-
62
- st.markdown('<div class="blinking-text"> CAUTION ! </div>', unsafe_allow_html=True)
63
 
64
  with tab1:
65
 
66
 
67
  option_map = {
 
68
  0: ":material/pill:",
69
  1: ":material/vaccines:",
 
70
 
71
  }
72
 
@@ -78,7 +61,7 @@ def APP():
78
  )
79
  #match selection:
80
  if selection == 0:
81
- st.markdown("<p style='color:white;background-color:orange'> Nanobody [CANCER targeted]</p>",unsafe_allow_html=True)
82
  with st.form("bio",border=False):
83
 
84
  uid=None
@@ -132,8 +115,11 @@ def APP():
132
 
133
 
134
  if selection == 1:
135
- st.markdown("<p style='color:white;background-color:orange'>Vaccine [Supported] </p>",unsafe_allow_html=True)
136
  st.code("coming soon")
 
 
 
137
 
138
 
139
 
 
41
 
42
  def SHOWTABS():
43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
 
45
  with tab1:
46
 
47
 
48
  option_map = {
49
+
50
  0: ":material/pill:",
51
  1: ":material/vaccines:",
52
+ 2: ":material/labresearch:"
53
 
54
  }
55
 
 
61
  )
62
  #match selection:
63
  if selection == 0:
64
+ st.markdown("<p style='color:white;background-color:orange;font-weight:bold'> Nanobody [CANCER targeted]</p>",unsafe_allow_html=True)
65
  with st.form("bio",border=False):
66
 
67
  uid=None
 
115
 
116
 
117
  if selection == 1:
118
+ st.markdown("<p style='color:white;background-color:orange;font-weight:bold'>Vaccine [Supported] </p>",unsafe_allow_html=True)
119
  st.code("coming soon")
120
+
121
+ if selection ==2:
122
+ st.markdown("<p style='color:white;background-color:orange;font-weight:bold'>Operation Details </p>",unsafe_allow_html=True)
123
 
124
 
125