73 lines
1.3 KiB
CSS
73 lines
1.3 KiB
CSS
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #F5F7F9;
|
|
color: #263238;
|
|
}
|
|
|
|
.hover-lift {
|
|
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
}
|
|
|
|
.hover-lift:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
|
|
}
|
|
|
|
.line-clamp-2 {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.floating-animation {
|
|
animation: floating 3s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes floating {
|
|
0% { transform: translate(0, 0px); }
|
|
50% { transform: translate(0, 15px); }
|
|
100% { transform: translate(0, -0px); }
|
|
}
|
|
|
|
.btn-success {
|
|
background-color: #00C853;
|
|
border-color: #00C853;
|
|
}
|
|
|
|
.btn-success:hover {
|
|
background-color: #00B248;
|
|
border-color: #00B248;
|
|
}
|
|
|
|
.text-success {
|
|
color: #00C853 !important;
|
|
}
|
|
|
|
.bg-success {
|
|
background-color: #00C853 !important;
|
|
}
|
|
|
|
.bg-success-subtle {
|
|
background-color: #E8F5E9 !important;
|
|
}
|
|
|
|
.btn-white {
|
|
background-color: #FFFFFF;
|
|
color: #00C853;
|
|
border: none;
|
|
}
|
|
|
|
.btn-white:hover {
|
|
background-color: #F5F7F9;
|
|
color: #00B248;
|
|
}
|
|
|
|
.rounded-4 { border-radius: 1rem !important; }
|
|
.rounded-5 { border-radius: 1.5rem !important; }
|
|
|
|
.navbar-brand i {
|
|
font-size: 1.5rem;
|
|
vertical-align: middle;
|
|
}
|