Spaces:
Running
Running
File size: 1,237 Bytes
ba343fc b7af838 ba343fc b7af838 ba343fc b7af838 ba343fc b7af838 ba343fc b7af838 ba343fc b7af838 | 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 78 79 |
:root {
--primary: #f97316;
--secondary: #f59e0b;
--dark: #111827;
--darker: #0d1321;
--light: #f3f5f7;
--gray: #6b7280;
--dark-gray: #374151;
}
html {
scroll-behavior: smooth;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 1.6;
color: var(--light);
background-color: var(--dark);
min-height: 100vh;
}
a {
color: inherit;
text-decoration: none;
transition: all 0.2s ease;
}
img {
max-width: 100%;
height: auto;
}
button,
input,
textarea {
font-family: inherit;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
/* Scrollbar styling */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: var(--dark-gray);
}
::-webkit-scrollbar-thumb {
background: var(--primary);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--secondary);
}
/* Responsive typography */
@media (min-width: 768px) {
html {
font-size: 16px;
}
}
@media (max-width: 767px) {
html {
font-size: 14px;
}
}
|