added mark.js and now it looks and works even better

This commit is contained in:
Yeghro
2025-01-24 21:48:08 -08:00
parent e390d63ba4
commit 4a5bfedd1f
3 changed files with 209 additions and 68 deletions

View File

@@ -146,7 +146,7 @@ body {
}
.resource-link a {
color: var(--link-color);
color: var(--primary-color);
text-decoration: none;
display: flex;
align-items: center;
@@ -159,12 +159,14 @@ body {
}
.resource-description {
color: var(--text-secondary);
margin-bottom: 12px;
color: var(--text-color);
margin: 12px 0;
line-height: 1.5;
font-size: 0.95em;
padding-left: 8px;
border-left: 3px solid var(--border-color);
padding: 8px 12px;
background: rgba(110, 84, 148, 0.05);
border-radius: 4px;
border-left: 3px solid var(--primary-color);
}
.resource-stars {
@@ -312,4 +314,13 @@ body {
.nav-links a.active {
background-color: var(--primary-color);
color: white;
}
.error-message {
padding: 1rem;
margin: 1rem;
background-color: #fff3f3;
border-left: 4px solid #ff4444;
color: #dc3545;
border-radius: 4px;
}