working with live dashboard
This commit is contained in:
@ -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; /* Turquoise‑green */
|
||||
}
|
||||
|
||||
/* Active state – immediate feedback */
|
||||
a:active {
|
||||
color: #e74c3c; /* Warm red */
|
||||
}
|
||||
|
||||
table, th, td {
|
||||
border: 1px solid black;
|
||||
|
||||
Reference in New Issue
Block a user