Spaces:
Running
Running
File size: 1,065 Bytes
b154756 03bab89 b154756 03bab89 b154756 03bab89 b154756 03bab89 b154756 03bab89 b154756 03bab89 b154756 |
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 |
/* Shared styles across all pages */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #1f2937;
}
::-webkit-scrollbar-thumb {
background: #4f46e5;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #6366f1;
}
/* Toggle switch styling */
input[type="checkbox"] + label::before {
content: '';
position: absolute;
display: block;
height: 16px;
width: 16px;
top: 0;
left: 0;
border-radius: 16px;
background: #fff;
transition: 0.2s ease-in-out;
}
input[type="checkbox"]:checked + label::before {
left: 24px;
}
/* Responsive fixes */
@media (max-width: 768px) {
.hero-content {
padding: 2rem 1rem;
}
.feature-grid {
grid-template-columns: 1fr;
}
} |