blog / style.css
Shaikhsarib's picture
Internship Task Assignment
54fc73e verified
raw
history blame contribute delete
948 Bytes
/* Base styles */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 1.6;
}
/* Custom utilities */
.line-clamp-2 {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
/* Animation for cards */
.blog-card {
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
transform: translateY(-4px);
}
/* Form input focus styles */
input:focus, textarea:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
/* Hero section gradient animation */
.hero {
background-size: 200% 200%;
animation: gradient 8s ease infinite;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}