put stuff in divs
This commit is contained in:
+14
-11
@@ -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; /* Turquoise‑green */
|
||||
}
|
||||
|
||||
/* selected link */
|
||||
/* Active state – immediate feedback */
|
||||
a:active {
|
||||
color: rgb(96, 96, 196);
|
||||
color: #e74c3c; /* Warm red */
|
||||
}
|
||||
|
||||
.hidden-info {
|
||||
|
||||
Reference in New Issue
Block a user