36686-vm/assets/css/custom.css
Flatlogic Bot 80d945cbf3 v1
2025-12-05 16:55:01 +00:00

48 lines
787 B
CSS

body {
background-color: #FFFFFF;
font-family: 'Poppins', sans-serif;
}
.navbar {
border-bottom: 1px solid #eee;
}
.delulu-card {
background-color: #F8F9FA;
border: none;
border-radius: 1rem;
transition: all 0.2s ease-in-out;
}
.delulu-card:hover {
transform: translateY(-5px);
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.card-title {
color: #A076F9;
font-weight: bold;
}
.card-subtitle {
color: #74C0FC;
}
.btn-primary {
background-color: #A076F9;
border-color: #A076F9;
}
.btn-primary:hover {
background-color: #74C0FC;
border-color: #74C0FC;
}
.gradient-bg {
background: linear-gradient(135deg, #A076F9, #74C0FC);
color: white;
padding: 4rem 2rem;
border-radius: 1rem;
margin-bottom: 2rem;
}