Skip to content

Commit a0ec9be

Browse files
committed
Update styles.css and script.py
1 parent 4856d18 commit a0ec9be

File tree

2 files changed

+18
-26
lines changed

2 files changed

+18
-26
lines changed

script.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,8 +427,7 @@ def main():
427427
fix_submitted = st.form_submit_button("Debug")
428428
ai_llm_selected = None
429429
if fix_submitted:
430-
# check if vertex ai is selected
431-
430+
# checking for the selected AI option
432431
if st.session_state.ai_option == "Palm AI":
433432
ai_llm_selected = st.session_state.palm_langchain
434433
elif st.session_state.ai_option == "Gemini AI":

static/css/styles.css

Lines changed: 17 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,56 @@
1-
/* Target the main Streamlit app */
21
.streamlit-app {
32
font-family: 'Arial', sans-serif;
43
font-size: 16px;
54
}
65

7-
/* Target the main content area */
86
.main {
9-
background-color: #add8e6; /* Light Blue */
7+
background-color: #072b33ec;
108
padding: 20px;
119
}
1210

13-
/* Target the Streamlit expander header */
14-
div.st-expander-header {
15-
background-color: #add8e6; /* Light Blue */
16-
color: #808080; /* Gray */
11+
div.st-expander-header
12+
div.st-expander-header :hover
13+
{
14+
background-color: #ffffff;
15+
color: #e6c9a9;
1716
padding: 10px;
1817
border-radius: 5px;
1918
}
2019

21-
/* Target the Input/Output Options expander */
2220
div.st-expander-header.Input-Output-Options {
23-
/* Add your custom styles here */
24-
background-color: #add8e6; /* Light Blue */
25-
color: #808080; /* Gray */
21+
background-color: #072b33ec;
22+
color: #e6c9a9;
2623
padding: 10px;
2724
border-radius: 5px;
2825
cursor: pointer;
2926
}
3027

31-
/* Target buttons */
3228
button.stButton.run-button,
3329
button.stButton.share-button {
34-
background-color: #00008b; /* Dark Blue */
35-
color: #808080; /* Gray */
30+
background-color: #808080;
31+
color: #e6c9a9;
3632
padding: 10px 20px;
37-
border: 2px solid #00008b; /* Dark Blue */
33+
border: 2px solid #808080;
3834
border-radius: 5px;
3935
cursor: pointer;
4036
}
4137

4238
button.stButton.run-button:hover,
4339
button.stButton.share-button:hover {
44-
background-color: #00008b; /* Dark Blue */
45-
color: #808080; /* Gray */
40+
background-color: #808080;
41+
color: #e6c9a9;
4642
}
4743

48-
/* Target textareas and inputs */
4944
textarea.stTextArea,
50-
input.stTextInput,
51-
div.stAlert div {
52-
background-color: #808080; /* Gray */
53-
color: #808080; /* Gray */
45+
input.stTextInput {
46+
background-color: #808080;
47+
color: #e6c9a9;
5448
padding: 2px;
5549
font-size: 10px;
5650
}
5751

58-
/* Target headings */
5952
h1 {
6053
font-family: 'Pacifico', cursive;
6154
font-size: 40px;
62-
color: #333333;
55+
color: #e6c9a9;
6356
}

0 commit comments

Comments
 (0)