working with live dashboard

This commit is contained in:
2025-12-06 17:42:26 -08:00
parent 4096f7165c
commit 94c31f4be3
7 changed files with 168 additions and 84 deletions

View File

@ -23,6 +23,28 @@ body {
cursor: pointer;
}
a,
a:link,
a:visited {
color: #3498db; /* Default link color (blue) */
text-decoration: none;
transition: color 0.2s ease;
}
/* Visited links (distinct yet in the same palette) */
a:visited {
color: #9b59b6; /* Soft purple */
}
/* Hover state bright, engaging, and contrasting */
a:hover {
color: #1abc9c; /* Turquoisegreen */
}
/* Active state immediate feedback */
a:active {
color: #e74c3c; /* Warm red */
}
table, th, td {
border: 1px solid black;