SHAMIL SHAHBAZ AWAN commited on
Commit
aa45565
·
verified ·
1 Parent(s): 915774e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -0
app.py CHANGED
@@ -17,6 +17,20 @@ st.markdown(
17
  background-position: center center;
18
  background-repeat: no-repeat;
19
  }}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  </style>
21
  """,
22
  unsafe_allow_html=True
@@ -121,3 +135,6 @@ if user_query:
121
  # Display the generated response
122
  st.subheader("Generated Response")
123
  st.write(response["text"])
 
 
 
 
17
  background-position: center center;
18
  background-repeat: no-repeat;
19
  }}
20
+ h1 {{
21
+ color: black;
22
+ }}
23
+ .footer {{
24
+ position: fixed;
25
+ bottom: 0;
26
+ left: 0;
27
+ right: 0;
28
+ background-color: rgba(0, 0, 0, 0.6);
29
+ color: white;
30
+ text-align: center;
31
+ padding: 10px 0;
32
+ font-size: 14px;
33
+ }}
34
  </style>
35
  """,
36
  unsafe_allow_html=True
 
135
  # Display the generated response
136
  st.subheader("Generated Response")
137
  st.write(response["text"])
138
+
139
+ # Footer
140
+ st.markdown("<div class='footer'>Created by Shamil Shahbaz</div>", unsafe_allow_html=True)