Spaces:
Sleeping
Sleeping
File size: 3,005 Bytes
7ec734c | 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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | import streamlit as st
# ============================================================
# Global CSS & Meta (Common to all tabs)
# ============================================================
def add_custom_css():
st.markdown("""
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
/* Tooltip container */
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 200px;
background-color: rgba(0,0,0,0.8);
color: #fff;
text-align: left;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 100%;
margin-bottom: 5px;
left: 50%;
transform: translateX(-50%);
opacity: 0;
transition: opacity 0.3s;
font-size: 0.8em;
line-height: 1.2em;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
img {
max-width: 100%;
height: auto;
}
div.stButton > button {
font-size: 0.8em;
padding: 0.3em 0.6em;
background-color: #D3D3D3;
}
</style>
""", unsafe_allow_html=True)
def cvc_add_custom_css():
st.markdown("""
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
/* Tooltip container */
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 220px;
background-color: rgba(0,0,0,0.8);
color: #fff;
text-align: left;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 100%;
margin-bottom: 5px;
left: 50%;
transform: translateX(-50%);
opacity: 0;
transition: opacity 0.3s;
font-size: 0.8em;
line-height: 1.2em;
white-space: pre-wrap;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
img {
max-width: 100%;
height: auto;
}
div.stButton > button {
font-size: 0.8em;
padding: 0.3em 0.6em;
background-color: #D3D3D3;
}
/* KPI Card styling */
.kpi-card {
background-color: #f9f9f9;
padding: 12px;
border-radius: 5px;
box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
width: 100%;
max-width: 220px;
margin: 5px auto;
text-align: center;
font-family: sans-serif;
display: block;
}
.kpi-title {
font-size: 14px;
color: #555;
margin-bottom: 4px;
}
.kpi-value {
font-size: 20px;
font-weight: bold;
margin: 0;
}
.kpi-change {
font-size: 12px;
color: green;
margin-top: 4px;
}
</style>
""", unsafe_allow_html=True) |