kjelsrud.dev/node_modules/astro/dist/template/css.d.ts
2023-07-19 21:31:30 +02:00

6 lines
940 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* CSS is exported as a string so the error pages:
* 1. dont need to resolve a deep internal CSS import
* 2. dont need external dependencies to render (they may be shown because of a dep!)
*/
export declare const baseCSS = "\n:root {\n --gray-10: hsl(258, 7%, 10%);\n --gray-20: hsl(258, 7%, 20%);\n --gray-30: hsl(258, 7%, 30%);\n --gray-40: hsl(258, 7%, 40%);\n --gray-50: hsl(258, 7%, 50%);\n --gray-60: hsl(258, 7%, 60%);\n --gray-70: hsl(258, 7%, 70%);\n --gray-80: hsl(258, 7%, 80%);\n --gray-90: hsl(258, 7%, 90%);\n --orange: #ff5d01;\n}\n\n* {\n box-sizing: border-box;\n}\n\nbody {\n background-color: var(--gray-10);\n color: var(--gray-80);\n font-family: monospace;\n line-height: 1.5;\n margin: 0;\n}\n\na {\n color: var(--orange);\n}\n\nh1 {\n font-weight: 800;\n margin-top: 1rem;\n margin-bottom: 0;\n}\n\npre {\n color:;\n font-size: 1.2em;\n margin-top: 0;\n max-width: 60em;\n}\n";