-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
57 lines (48 loc) · 1.08 KB
/
styles.css
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
56
57
/* Light Theme */
.light-theme {
background-color: #F5F5F5;
color: #333333;
font-family: 'Arial', sans-serif;
}
.light-theme .stButton>button {
background-color: #4CAF50;
color: white;
border-radius: 5px;
padding: 8px 16px;
font-size: 14px;
transition: background-color 0.3s;
}
.light-theme .stButton>button:hover {
background-color: #45A049;
}
.light-theme h1, .light-theme h2 {
color: #4CAF50;
}
.light-theme [data-testid="stSidebar"] {
background-color: #EFEFEF;
border-right: 2px solid #DDDDDD;
}
/* Dark Theme */
.dark-theme {
background-color: #1E1E1E;
color: #FFFFFF;
font-family: 'Arial', sans-serif;
}
.dark-theme .stButton>button {
background-color: #333333;
color: white;
border-radius: 5px;
padding: 8px 16px;
font-size: 14px;
transition: background-color 0.3s;
}
.dark-theme .stButton>button:hover {
background-color: #555555;
}
.dark-theme h1, .dark-theme h2 {
color: #4CAF50;
}
.dark-theme [data-testid="stSidebar"] {
background-color: #333333;
border-right: 2px solid #555555;
}