Spaces:
Sleeping
Sleeping
refactor: rename "ASI Demos" to "Demos" and finalize CLAUDE.md
Browse files- .streamlit/style.css +10 -1
- CLAUDE.md +1 -0
- app.py +1 -1
- pages/home.py +3 -4
.streamlit/style.css
CHANGED
|
@@ -25,6 +25,15 @@ body,
|
|
| 25 |
background-color: var(--gray-bg) !important;
|
| 26 |
}
|
| 27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
/* Increase paragraph and text sizes */
|
| 29 |
/* p, div, span, li, label {
|
| 30 |
font-size: 1.1em;
|
|
@@ -250,4 +259,4 @@ hr {
|
|
| 250 |
button[data-testid="stExpandSidebarButton"] {
|
| 251 |
opacity: 0 !important;
|
| 252 |
pointer-events: auto !important;
|
| 253 |
-
}
|
|
|
|
| 25 |
background-color: var(--gray-bg) !important;
|
| 26 |
}
|
| 27 |
|
| 28 |
+
/* Normal body text */
|
| 29 |
+
p,
|
| 30 |
+
div,
|
| 31 |
+
span,
|
| 32 |
+
li,
|
| 33 |
+
label {
|
| 34 |
+
font-size: 1.01em !important;
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
/* Increase paragraph and text sizes */
|
| 38 |
/* p, div, span, li, label {
|
| 39 |
font-size: 1.1em;
|
|
|
|
| 259 |
button[data-testid="stExpandSidebarButton"] {
|
| 260 |
opacity: 0 !important;
|
| 261 |
pointer-events: auto !important;
|
| 262 |
+
}
|
CLAUDE.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
@AGENTS.md
|
app.py
CHANGED
|
@@ -36,6 +36,6 @@ st.set_page_config(
|
|
| 36 |
layout="wide",
|
| 37 |
initial_sidebar_state="collapsed",
|
| 38 |
page_icon=":material/menu_book:",
|
| 39 |
-
page_title="
|
| 40 |
)
|
| 41 |
pg.run()
|
|
|
|
| 36 |
layout="wide",
|
| 37 |
initial_sidebar_state="collapsed",
|
| 38 |
page_icon=":material/menu_book:",
|
| 39 |
+
page_title="Demo",
|
| 40 |
)
|
| 41 |
pg.run()
|
pages/home.py
CHANGED
|
@@ -3,7 +3,7 @@ import streamlit as st
|
|
| 3 |
st.set_page_config(
|
| 4 |
layout="wide",
|
| 5 |
page_icon="📊",
|
| 6 |
-
page_title="
|
| 7 |
)
|
| 8 |
|
| 9 |
# Hero Section
|
|
@@ -30,7 +30,6 @@ st.markdown(
|
|
| 30 |
)
|
| 31 |
|
| 32 |
st.markdown('<div class="hero">', unsafe_allow_html=True)
|
| 33 |
-
st.markdown("#
|
| 34 |
st.markdown("Interactive visualizations for keynote presentations and talks")
|
| 35 |
-
st.markdown(
|
| 36 |
-
|
|
|
|
| 3 |
st.set_page_config(
|
| 4 |
layout="wide",
|
| 5 |
page_icon="📊",
|
| 6 |
+
page_title="Demos",
|
| 7 |
)
|
| 8 |
|
| 9 |
# Hero Section
|
|
|
|
| 30 |
)
|
| 31 |
|
| 32 |
st.markdown('<div class="hero">', unsafe_allow_html=True)
|
| 33 |
+
st.markdown("# Demos")
|
| 34 |
st.markdown("Interactive visualizations for keynote presentations and talks")
|
| 35 |
+
st.markdown("</div>", unsafe_allow_html=True)
|
|
|