Spaces:
GIZ
/
Running on CPU Upgrade

prashant commited on
Commit
65be500
1 Parent(s): 6491a9c

style css trial

Browse files
Files changed (2) hide show
  1. appStore/info.py +5 -3
  2. style.css +12 -0
appStore/info.py CHANGED
@@ -1,12 +1,14 @@
1
  import streamlit as st
2
 
3
  def app():
4
- st.markdown("<h1 style='text-align: center; \
5
- color: black;'> Policy Action Tracker Manual</h1>",
6
- unsafe_allow_html=True)
7
 
8
  with open('style.css') as f:
9
  st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
 
 
 
 
10
  footer = """
11
  <div class="footer-custom">
12
  Guidance & Feedback - <a href="https://www.linkedin.com/in/maren-bernlöhr-149891222" target="_blank">Maren Bernlöhr</a> |
 
1
  import streamlit as st
2
 
3
  def app():
4
+
 
 
5
 
6
  with open('style.css') as f:
7
  st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
8
+
9
+ st.markdown("<h2 style='text-align: center; \
10
+ color: black;'> Policy Action Tracker Manual</h2>",
11
+ unsafe_allow_html=True)
12
  footer = """
13
  <div class="footer-custom">
14
  Guidance & Feedback - <a href="https://www.linkedin.com/in/maren-bernlöhr-149891222" target="_blank">Maren Bernlöhr</a> |
style.css CHANGED
@@ -128,6 +128,18 @@ hr {
128
  margin: 2em 0 1em;
129
  }
130
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  .technical-details-info {
132
  margin-bottom: 100px;
133
  }
 
128
  margin: 2em 0 1em;
129
  }
130
 
131
+ h1, h2, h3, h4, h5, h6, p {
132
+ line-height:150%;
133
+ padding:0;
134
+ }
135
+
136
+ h1, .alpha { font-size: 30px; color:black; margin:20px 0 15px 0; }
137
+ h2, .beta { font-size: 25px; color:#ccc; margin:20px 0 5px 0; }
138
+ h3, .gamma { font-size: 20px; color:#333; margin:20px 0 5px 0; }
139
+ h4, .delta { font-size: 18px; color:grey; margin:20px 0 5px 0; }
140
+ h5, .epsilon { font-size: 16px; color:#ccc; margin:20px 0 5px 0; }
141
+ h6, .zeta { font-size: 14px; color:#f3f3f3; margin:20px 0 5px 0; }
142
+
143
  .technical-details-info {
144
  margin-bottom: 100px;
145
  }