Spaces:
Paused
Paused
File size: 1,719 Bytes
a5784e9 | 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 | /**
* CSS Reset & Base Styles
*/
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 16px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
font-family: var(--font-sans);
font-size: var(--text-base);
line-height: var(--leading-normal);
color: var(--text-primary);
background-color: var(--bg-primary);
min-height: 100vh;
}
/* Focus styles */
:focus-visible {
outline: 2px solid var(--accent-primary);
outline-offset: 2px;
}
/* Selection */
::selection {
background-color: var(--accent-primary);
color: white;
}
/* Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
background: var(--border-emphasis);
border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
background: var(--text-muted);
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Code/Mono text */
code, pre, kbd, samp {
font-family: var(--font-mono);
}
/* Links */
a {
color: var(--accent-primary);
text-decoration: none;
transition: color var(--transition-fast);
}
a:hover {
color: var(--accent-primary-hover);
}
/* Buttons reset */
button {
font-family: inherit;
font-size: inherit;
cursor: pointer;
border: none;
background: none;
}
/* Input reset */
input, textarea, select {
font-family: inherit;
font-size: inherit;
color: inherit;
background: transparent;
border: none;
}
input:focus, textarea:focus, select:focus {
outline: none;
}
/* Image */
img {
max-width: 100%;
height: auto;
display: block;
}
/* List reset */
ul, ol {
list-style: none;
}
|