put stuff in divs

This commit is contained in:
2025-12-19 12:12:16 -08:00
parent 82d6a70a68
commit 02120b78b2
2 changed files with 36 additions and 29 deletions
+14 -11
View File
@@ -8,24 +8,27 @@ body {
color: #bdc3c7; /* Dimmer text color */
}
/* unvisited link */
a:link {
color: rgb(184, 44, 44);
}
/* visited link */
a,
a:link,
a:visited {
color: rgb(42, 176, 42);
color: #3498db; /* Default link color (blue) */
text-decoration: none;
transition: color 0.2s ease;
}
/* mouse over link */
/* Visited links (distinct yet in the same palette) */
a:visited {
color: #9b59b6; /* Soft purple */
}
/* Hover state bright, engaging, and contrasting */
a:hover {
color: rgb(154, 84, 119);
color: #1abc9c; /* Turquoisegreen */
}
/* selected link */
/* Active state immediate feedback */
a:active {
color: rgb(96, 96, 196);
color: #e74c3c; /* Warm red */
}
.hidden-info {