-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (55 loc) · 1.31 KB
/
Copy pathstyle.css
File metadata and controls
68 lines (55 loc) · 1.31 KB
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
58
59
60
61
62
63
64
65
66
67
68
/* ===== App Background Color ===== */
body {
background-color: rgb(2, 6, 15) !important; /* Dark gray-blue (Streamlit dark theme feel) */
color: #f1f1f1;
}
/* Optional: Force Streamlit main container to take full background */
.stApp {
background-color: rgb(2, 10, 26) !important;
}
.footer-container {
width: 100%;
margin-top: 50px;
padding: 10px 0 5px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
background: transparent;
text-align: center;
font-size: 14px;
color: #bbb;
}
.footer-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 6px;
}
.footer-links a {
color: #ccc;
text-decoration: none;
font-weight: 500;
font-size: 13.5px;
transition: color 0.2s ease;
}
.footer-links a:hover {
color: #ff4b4b;
}
.footer-credit {
font-size: 12px;
color: #888;
}
/* ========== Force Text Colors for Dark Background ========== */
/* Label text for selectbox, headers, markdown, etc. */
label, h1{
color: #f8d75e !important;
}
label, h4{
color: #febc61e3 !important;
}
label, h2, h3, h5, h6, div{
/* color: #fffae6 !important; */
color: #aac4fc !important;
}
label, div{
color: #b1b1b1 !important;
}