Spaces:
Running
Running
James McCool
commited on
Commit
·
c971f24
1
Parent(s):
9bf7ef1
Remove redundant table header CSS styling
Browse filesClean up previously added CSS selectors for table headers, removing duplicate styling rules while preserving the core design approach
app.py
CHANGED
@@ -100,22 +100,6 @@ st.markdown("""
|
|
100 |
background-color: #DAA520;
|
101 |
cursor: pointer;
|
102 |
}
|
103 |
-
|
104 |
-
/* Table header styling */
|
105 |
-
.dvn-underlay [role="columnheader"] {
|
106 |
-
background-color: #FFD700 !important;
|
107 |
-
color: white !important;
|
108 |
-
font-weight: bold !important;
|
109 |
-
border-radius: 10px !important;
|
110 |
-
padding: 10px 20px !important;
|
111 |
-
text-align: center !important;
|
112 |
-
}
|
113 |
-
|
114 |
-
/* Hover effect for table headers */
|
115 |
-
.dvn-underlay [role="columnheader"]:hover {
|
116 |
-
background-color: #DAA520 !important;
|
117 |
-
cursor: pointer;
|
118 |
-
}
|
119 |
</style>""", unsafe_allow_html=True)
|
120 |
|
121 |
def calculate_poisson(row):
|
|
|
100 |
background-color: #DAA520;
|
101 |
cursor: pointer;
|
102 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
</style>""", unsafe_allow_html=True)
|
104 |
|
105 |
def calculate_poisson(row):
|