Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
59 changes: 59 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -186,3 +186,62 @@ html.theme-light .text-gray-900 {
color: #1a1a1a !important;
}

/* Modern Blog Enhancements */
.modern-gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.modern-card-shadow {
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.modern-card-shadow-hover {
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modern-backdrop-blur {
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}

.modern-text-gradient {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.modern-transition {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-hover-lift:hover {
transform: translateY(-4px);
}

.modern-hover-scale:hover {
transform: scale(1.02);
}

/* Smooth scrolling for the entire page */
html {
scroll-behavior: smooth;
}

/* Enhanced focus styles */
*:focus {
outline: 2px solid #667eea;
outline-offset: 2px;
}

/* Custom selection colors */
::selection {
background: rgba(102, 126, 234, 0.2);
color: inherit;
}

::-moz-selection {
background: rgba(102, 126, 234, 0.2);
color: inherit;
}

Loading
Loading