Spaces:
Runtime error
Runtime error
File size: 1,657 Bytes
0dc6cc7 cb61281 0dc6cc7 cb61281 06124fd cb61281 0dc6cc7 cb61281 0dc6cc7 8bfdd6d 0dc6cc7 8bfdd6d 0dc6cc7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
import streamlit as st
st.set_page_config(layout="wide")
import base64
import streamlit as st
import plotly.express as px
page_bg_img = f"""
<style>
[data-testid="stAppViewContainer"] > .main {{
background-image: url("https://i.ibb.co/0m0ZYt6/books-assortment-with-dark-background.jpg");
background-size: 110%;
background-position: top left;
background-repeat: no-repeat;
background-attachment: local;
}}
[data-testid="stHeader"] {{
background: rgba(1,1,1,1);
}}
[data-testid="stToolbar"] {{
right: 2rem;
}}
div.css-1n76uvr.esravye0 {{
background-color: rgba(238, 238, 238, 0.5);
border: 10px solid #EEEEEE;
padding: 5% 5% 5% 10%;
border-radius: 5px;
}}
</style>
"""
st.markdown(page_bg_img, unsafe_allow_html=True)
col1, col2, col3 = st.columns([3,5,2])
with col2:
st.title('πSmart Book Search by FindMyBook:π')
col1, col2, col3 = st.columns([2,5,2])
with col2:
st.markdown("<div style='text-align: center; font-size: 30px;'>Team members:</div>", unsafe_allow_html=True)
st.markdown("<div style='text-align: center; font-size: 25px;'>π Maria K. π Ilvir Kh.</div>", unsafe_allow_html=True)
st.markdown("<div style='text-align: center; font-size: 25px;'>π Viktoria K. π Anna F.</div>", unsafe_allow_html=True)
st.markdown("<div style='text-align: center; font-size: 25px;'>π Ivan N. </div>", unsafe_allow_html=True)
st.markdown("<div style='text-align: center; font-size: 25px;'></div>", unsafe_allow_html=True)
st.markdown("<div style='text-align: center; font-size: 25px;'></div>", unsafe_allow_html=True)
|