Ajout d'une application de recherche
This commit is contained in:
parent
5535db30c2
commit
1b9e16690f
1 changed files with 44 additions and 0 deletions
|
@ -6,6 +6,50 @@ import plotly.express as px
|
|||
from dotenv import load_dotenv
|
||||
import os
|
||||
|
||||
# Set page config to wide mode
|
||||
st.set_page_config(layout="wide")
|
||||
|
||||
# Force dark theme
|
||||
st.markdown("""
|
||||
<style>
|
||||
/* Main background */
|
||||
.stApp {
|
||||
background-color: #0e1117;
|
||||
color: #fafafa;
|
||||
}
|
||||
/* Sidebar */
|
||||
.css-1d391kg {
|
||||
background-color: #262730;
|
||||
}
|
||||
/* Buttons */
|
||||
.stButton>button {
|
||||
color: #fafafa;
|
||||
background-color: #262730;
|
||||
border-color: #fafafa;
|
||||
}
|
||||
/* Text inputs */
|
||||
.stTextInput>div>div>input {
|
||||
color: #fafafa;
|
||||
background-color: #262730;
|
||||
}
|
||||
/* Selectbox */
|
||||
.stSelectbox>div>div>select {
|
||||
color: #fafafa;
|
||||
background-color: #262730;
|
||||
}
|
||||
/* Multiselect */
|
||||
.stMultiSelect>div>div>select {
|
||||
color: #fafafa;
|
||||
background-color: #262730;
|
||||
}
|
||||
/* Date input */
|
||||
.stDateInput>div>div>input {
|
||||
color: #fafafa;
|
||||
background-color: #262730;
|
||||
}
|
||||
</style>
|
||||
""", unsafe_allow_html=True)
|
||||
|
||||
# Add this CSS to create a scrollable results area
|
||||
st.markdown("""
|
||||
<style>
|
||||
|
|
Loading…
Reference in a new issue