@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Sans+Condensed:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap"); @import "./styles/_variables.css"; @import "tailwindcss"; @import "tw-animate-css"; * { outline-color: color-mix(in srgb, var(--ring) 50%, transparent); } html { font-family: var(--font-sansserif); } body { background-color: var(--background); color: var(--foreground); } .condensed { font-family: "IBM Plex Sans Condensed"; } figcaption { font-weight: 500; font-family: "IBM Plex Sans Condensed"; } h1 { color: var(--color-orange-light); font-family: "IBM Plex Sans Condensed"; } h2 { font-family: "IBM Plex Sans Condensed"; color: var(--color-green-light); } h3 { font-family: "IBM Plex Sans Condensed"; } .monospaced-font { font-family: "iA Writer Mono"; } .scanlined { position: relative; /* Add this */ } .scanlined::after { content: ""; position: absolute; /* Change from fixed */ top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(0, 0, 0, 0.4) 1px, transparent 1px); background-size: 2px 2px; background-repeat: repeat; pointer-events: none; z-index: 9999; /* Might want to lower this too */ } code { font-family: var(--font-monospaced); } p code { color: var(--foreground); background: #504945; font-size: 14px; padding: 0.2rem 0.3rem; border-radius: var(--radius); font-weight: 500; } .shiki { padding: 1rem 1.2rem; border-radius: 0; overflow-x: auto; margin: 1.5rem 0; line-height: 1.3; /* counter-reset: line; */ font-family: var(--font-monospaced) !important; font-size: 14px !important; }