36776-vm/assets/css/custom.css
Flatlogic Bot 3be446013d Initialv1
2025-12-09 00:59:40 +00:00

81 lines
1.5 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Georgia&display=swap');
body {
background-color: #F8FAFC;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: #1F2937;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Georgia', serif;
}
.theme-card {
border-radius: 12px;
border: 1px solid #E5E7EB;
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.theme-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.theme-card .card-body {
padding: 1.5rem;
}
.btn-primary {
background-color: #6366F1;
border-color: #6366F1;
border-radius: 9999px;
padding: 0.75rem 1.5rem;
font-weight: 600;
}
.btn-primary:hover {
background-color: #4F46E5;
border-color: #4F46E5;
}
.btn-secondary {
background-color: #EC4899;
border-color: #EC4899;
border-radius: 9999px;
padding: 0.75rem 1.5rem;
font-weight: 600;
}
.btn-secondary:hover {
background-color: #DB2777;
border-color: #DB2777;
}
.ritual-step {
display: none;
}
.ritual-step.active {
display: block;
}
.progress-bar-container {
height: 4px;
background-color: #E5E7EB;
border-radius: 9999px;
overflow: hidden;
}
.progress-bar-fill {
height: 100%;
background-color: #6366F1;
width: 0%;
transition: width 0.5s ease-in-out;
}
.timer {
font-size: 3rem;
font-weight: bold;
}