Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SorbonneUniversity
/
SorboBot
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7932f4a
SorboBot
/
css.py
leo-bourrel
feat: split css
3f940cd
over 1 year ago
raw
Copy download link
history
blame
Safe
179 Bytes
import
streamlit
as
st
def
load_css
():
with
open
(
"static/styles.css"
,
"r"
)
as
f:
css =
f"<style>
{f.read()}
</style>"
st.markdown(css, unsafe_allow_html=
True
)