CCockrum commited on
Commit
8957ac0
·
verified ·
1 Parent(s): d6529a6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +37 -19
app.py CHANGED
@@ -14,12 +14,36 @@ st.markdown("""
14
 
15
  .main {
16
  background-color: #D3D3D3 !important;
17
- color: #1A1A1A!important;
18
 
19
  }
20
  .block-container {
21
- background-color: gray !important;
22
- color: #1A1A1A!important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  }
24
  section[data-testid="stSidebar"] > div:first-child {
25
  background-color: #808080 !important;
@@ -44,25 +68,19 @@ st.markdown("""
44
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important;
45
  }
46
  header[data-testid="stHeader"] {
47
- background-color: #1A1A1A !important;
48
- }
49
 
50
  section[data-testid="stSidebar"] > div:first-child {
51
- background-color: #1A1A1A !important;
52
- color: #FFFFFF !important;
53
- padding: 2rem 1.5rem 1.5rem 1.5rem !important;
54
- border-radius: 12px;
55
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
56
- font-size: 0.95rem;
57
- line-height: 1.5;
58
- }
59
- .block-container {
60
- background-color: #1A1A1A !important;
61
- color: #1A1A1A !important;
62
- padding-left: 2rem !important;
63
- padding-right: 2rem !important;
64
- box-shadow: none !important;
65
  }
 
66
  html, body, [data-testid="stApp"] {
67
  background-color: #1A1A1A !important;
68
  }
 
14
 
15
  .main {
16
  background-color: #D3D3D3 !important;
17
+ color: #cccccc!important;
18
 
19
  }
20
  .block-container {
21
+ background-color: #D3D3D3 !important;
22
+ color: #cccccc !important;
23
+ padding-left: 3rem !important;
24
+ padding-right: 3rem !important;
25
+ max-width: 1200px; /* widen main feed */
26
+ margin: auto; /* center it */
27
+ }
28
+ /* Headings */
29
+ h1, h2, h3, h4 {
30
+ color: #eeeeee !important; /* brighter light gray for headings */
31
+ font-weight: 700 !important; /* bold */
32
+ margin-bottom: 1rem !important;
33
+ }
34
+ p, span, div {
35
+ color: #cccccc !important;
36
+ }
37
+ /* Subheaders (optional) */
38
+ .stSubheader {
39
+ color: #dddddd !important;
40
+ font-size: 1.4rem !important;
41
+ }
42
+ /* Dataframes (optional tweak) */
43
+ .stDataFrame {
44
+ background-color: #2e2e2e !important;
45
+ border-radius: 10px;
46
+ padding: 1rem;
47
  }
48
  section[data-testid="stSidebar"] > div:first-child {
49
  background-color: #808080 !important;
 
68
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important;
69
  }
70
  header[data-testid="stHeader"] {
71
+ background-color: #1A1A1A !important;
72
+ }
73
 
74
  section[data-testid="stSidebar"] > div:first-child {
75
+ background-color: #1A1A1A !important;
76
+ color: #FFFFFF !important;
77
+ padding: 2rem 1.5rem 1.5rem 1.5rem !important;
78
+ border-radius: 12px;
79
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
80
+ font-size: 0.95rem;
81
+ line-height: 1.5;
 
 
 
 
 
 
 
82
  }
83
+ ;
84
  html, body, [data-testid="stApp"] {
85
  background-color: #1A1A1A !important;
86
  }