Spaces:
Sleeping
Sleeping
File size: 2,045 Bytes
d530f14 | 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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | /* Body and Global Styles */
/* Hide scrollbars but keep functionality */
::-webkit-scrollbar {
width: 0;
height: 0;
}
::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active {
background-color: var(--black-alpha-12);
}
/* Global text rendering */
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
/* Body defaults */
body {
font-family: var(--font-sans);
font-size: 1rem;
line-height: 1.5;
color: var(--accent-black);
background-color: var(--background-base);
overflow-anchor: none;
}
/* Prevent image dragging */
img,
video {
max-width: unset;
user-select: none;
-webkit-user-drag: none;
-khtml-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
user-drag: none;
}
/* Form elements */
input,
input:focus,
textarea,
textarea:focus,
select,
select:focus {
outline: 0;
}
/* Focus states handled by utilities */
*:focus {
outline: 0;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
}
/* Section defaults */
section {
position: relative;
}
/* Text selection */
h1, h2, h3, h4, h5, h6, p {
user-select: text;
}
/* Button defaults */
button {
text-align: left;
user-select: none;
}
/* Selection color using design system colors */
*::selection {
background-color: var(--heat-20);
color: var(--accent-black);
}
/* Links */
a {
color: inherit;
text-decoration: none;
transition: color 0.2s ease;
}
a:hover {
color: var(--heat-100);
}
/* Code blocks */
code {
font-family: var(--font-mono);
font-size: 0.875em;
background-color: var(--black-alpha-4);
padding: 0.125rem 0.25rem;
border-radius: 0.25rem;
}
pre code {
background-color: transparent;
padding: 0;
}
/* Prevent FOUC */
html {
visibility: visible !important;
}
/* Responsive text sizing */
@media (max-width: 768px) {
html {
font-size: 15px;
}
}
@media (min-width: 1536px) {
html {
font-size: 17px;
}
} |