34940-vm/assets/css/custom.css
Flatlogic Bot df1297b91e Draft
2025-10-13 22:35:33 +00:00

58 lines
875 B
CSS

body {
font-family: 'Poppins', sans-serif;
background-color: #F4F7F6;
color: #333;
}
.navbar {
background-color: #FFFFFF;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.hero {
background: linear-gradient(135deg, #4A90E2, #50E3C2);
color: white;
padding: 100px 0;
}
.hero h1 {
font-weight: 700;
}
.section {
padding: 60px 0;
}
.section-title {
font-weight: 600;
margin-bottom: 40px;
}
.card {
border: none;
border-radius: 0.5rem;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
margin-bottom: 20px;
}
.btn-primary {
background-color: #4A90E2;
border: none;
border-radius: 0.5rem;
padding: 10px 20px;
}
.btn-secondary {
background-color: #50E3C2;
border: none;
border-radius: 0.5rem;
padding: 10px 20px;
}
.footer {
background-color: #333;
color: white;
padding: 40px 0;
}