Spaces:
Running
Running
File size: 1,423 Bytes
f449bd1 80eac5f a5466a1 80eac5f f449bd1 80eac5f f449bd1 80eac5f f449bd1 80eac5f f449bd1 a5466a1 f449bd1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | /* Custom base styles */
body {
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 1.6;
}
/* Custom animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
animation: fadeIn 0.5s ease-out forwards;
}
/* Custom utilities */
.rounded-xl {
border-radius: 12px;
}
.shadow-sm {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
/* Primary color classes */
.bg-primary {
background-color: rgb(50, 109, 113);
}
.bg-primary-light {
background-color: rgba(50, 109, 113, 0.1);
}
.bg-primary-dark {
background-color: rgb(38, 82, 85);
}
.text-primary {
color: rgb(50, 109, 113);
}
/* Secondary color classes */
.bg-secondary {
background-color: rgb(201, 170, 12);
}
.bg-secondary-light {
background-color: rgba(201, 170, 12, 0.1);
}
.bg-secondary-dark {
background-color: rgb(170, 140, 10);
}
.text-secondary {
color: rgb(201, 170, 12);
}
/* Custom button styles */
.btn-primary {
background-color: rgb(50, 109, 113);
color: white;
}
.btn-primary:hover {
background-color: rgb(38, 82, 85);
}
.btn-secondary {
background-color: rgb(201, 170, 12);
color: rgb(33, 33, 33);
}
.btn-secondary:hover {
background-color: rgb(170, 140, 10);
} |