diff options
author | kartofen <mladenovnasko0@gmail.com> | 2022-10-26 18:03:58 +0300 |
---|---|---|
committer | kartofen <mladenovnasko0@gmail.com> | 2022-10-26 18:03:58 +0300 |
commit | 9ad43ed4d41906af8ae33160b30d6cd6a6ae9bc0 (patch) | |
tree | 65c17129709d70b34fc1f7ac5b48d9d479468ee8 /src/layouts/Layout.astro | |
parent | 921421f2e2f44178333f8ef3011c43bc4eb6e39e (diff) |
prod version
Diffstat (limited to 'src/layouts/Layout.astro')
-rw-r--r-- | src/layouts/Layout.astro | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro deleted file mode 100644 index 0e3e837..0000000 --- a/src/layouts/Layout.astro +++ /dev/null @@ -1,56 +0,0 @@ ---- -export interface Props { - title: string; -} - -const { title } = Astro.props as Props; ---- - -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="UTF-8" /> - <meta name="viewport" content="width=device-width" /> - <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> - <meta name="generator" content={Astro.generator} /> - <title>{title}</title> - </head> - <body> - <slot /> - </body> -</html> -<style> - :root { - --font-size-base: clamp(1rem, 0.34vw + 0.91rem, 1.19rem); - --font-size-lg: clamp(1.2rem, 0.7vw + 1.2rem, 1.5rem); - --font-size-xl: clamp(2.44rem, 2.38vw + 1.85rem, 3.75rem); - - --color-text: hsl(12, 5%, 4%); - --color-bg: hsl(10, 21%, 95%); - --color-border: hsl(17, 24%, 90%); - } - - html { - font-family: system-ui, sans-serif; - font-size: var(--font-size-base); - color: var(--color-text); - background-color: var(--color-bg); - } - - body { - margin: 0; - } - - :global(h1) { - font-size: var(--font-size-xl); - } - - :global(h2) { - font-size: var(--font-size-lg); - } - - :global(code) { - font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, - Bitstream Vera Sans Mono, Courier New, monospace; - } -</style> |