opendev-labs's picture
please craete a ebook generators dsashboard simple
cfc2758 verified
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500&display=swap');
body {
font-family: 'Roboto', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
}
/* Custom animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
animation: fadeIn 0.5s ease-in;
}
/* Engagement metrics */
.engagement-metric {
transition: all 0.3s ease;
}
.engagement-metric:hover {
transform: scale(1.05);
box-shadow: 0 4px 20px rgba(239, 68, 68, 0.15);
}
/* Post card */
.post-card {
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.post-card:hover {
transform: translateY(-5px);
border-color: rgba(239, 68, 68, 0.5);
}
/* Editor styles */
[contenteditable="true"]:empty:before {
content: attr(placeholder);
color: #6b7280;
pointer-events: none;
display: block;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #222;
}
::-webkit-scrollbar-thumb {
background: #ef4444;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #dc2626;
}