CoolFace
Apppublic

splitbill/annotation-tool

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
utilities.py9 linesDownload Raw Back to tools
1import streamlit as st2 3 4def load_css():5    with open("tools/style.css") as f:6        st.markdown('<style>{}</style>'.format(f.read()), unsafe_allow_html=True)7    st.markdown(8        '<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">',9        unsafe_allow_html=True)