Katie-Ch commited on
Commit
8221e44
·
verified ·
1 Parent(s): b836a3b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +25 -0
app.py CHANGED
@@ -5,6 +5,31 @@ import streamlit as st
5
 
6
  PASS_CODE = "12345"
7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  st.sidebar.title("Navigation")
9
  page = st.sidebar.radio("Go to", ["Home", "About us", "Guidelines & Standarts used"])
10
 
 
5
 
6
  PASS_CODE = "12345"
7
 
8
+
9
+ st.markdown(
10
+ """
11
+ <style>
12
+ .css-nzvw1x {
13
+ background-color: #061E42 !important;
14
+ background-image: none !important;
15
+ }
16
+ .css-1aw8i8e {
17
+ background-image: none !important;
18
+ color: #FFFFFF !important
19
+ }
20
+ .css-ecnl2d {
21
+ background-color: #496C9F !important;
22
+ color: #496C9F !important
23
+ }
24
+ .css-15zws4i {
25
+ background-color: #496C9F !important;
26
+ color: #FFFFFF !important
27
+ }
28
+ </style>
29
+ """,
30
+ unsafe_allow_html=True
31
+ )
32
+
33
  st.sidebar.title("Navigation")
34
  page = st.sidebar.radio("Go to", ["Home", "About us", "Guidelines & Standarts used"])
35