Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -621,4 +621,51 @@
border: 2px solid #00ff00 !important;
border-radius: 4px;
box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.markdown-content a {
position: relative;
display: inline-flex;
align-items: center;
gap: 0.25rem;
margin: 0 0.125rem;
padding: 0.25rem 0.5rem;
border-radius: 0.375rem;
background: linear-gradient(135deg,
rgba(255, 199, 44, 0.1) 0%,
rgba(255, 87, 34, 0.1) 100%);
border: 1px solid rgba(255, 199, 44, 0.3);
color: #FFC72C;
font-weight: 500;
font-size: 0.875rem;
text-decoration: none;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
backdrop-filter: blur(4px);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.markdown-content a:hover {
color: #FF5722;
border-color: rgba(255, 87, 34, 0.5);
background: linear-gradient(135deg,
rgba(255, 199, 44, 0.15) 0%,
rgba(255, 87, 34, 0.15) 100%);
box-shadow: 0 4px 12px rgba(255, 199, 44, 0.2);
transform: translateY(-1px);
}

/* Dark mode adjustments */
:root.dark .markdown-content a {
background: linear-gradient(135deg,
rgba(255, 199, 44, 0.08) 0%,
rgba(255, 87, 34, 0.08) 100%);
border-color: rgba(255, 199, 44, 0.25);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

:root.dark .markdown-content a:hover {
background: linear-gradient(135deg,
rgba(255, 199, 44, 0.12) 0%,
rgba(255, 87, 34, 0.12) 100%);
box-shadow: 0 4px 12px rgba(255, 199, 44, 0.15);
}
Loading