KVL_visualize / load_css.py
chanschan's picture
Ver 1.0, Plot by Projecting SEDs on 3D TOP surface
5877840
raw
history blame contribute delete
248 Bytes
# https://discuss.streamlit.io/t/colored-boxes-around-sections-of-a-sentence/3201/2
import streamlit as st
def local_css(file_name):
with open(file_name) as f:
st.markdown('<style>{}</style>'.format(f.read()), unsafe_allow_html=True)