summaryrefslogtreecommitdiff
path: root/examples/blog
diff options
context:
space:
mode:
Diffstat (limited to 'examples/blog')
-rw-r--r--examples/blog/public/global.css99
-rw-r--r--examples/blog/src/layouts/BlogPost.astro2
-rw-r--r--examples/blog/src/pages/index.astro2
-rw-r--r--examples/blog/src/styles/blog.css (renamed from examples/blog/public/blog.css)0
4 files changed, 2 insertions, 101 deletions
diff --git a/examples/blog/public/global.css b/examples/blog/public/global.css
deleted file mode 100644
index e8498b58e..000000000
--- a/examples/blog/public/global.css
+++ /dev/null
@@ -1,99 +0,0 @@
-:root {
- --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
- --font-mono: 'IBM Plex Mono', Consolas, 'Andale Mono WT', 'Andale Mono', 'Lucida Console', 'Lucida Sans Typewriter', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono',
- 'Liberation Mono', 'Nimbus Mono L', Monaco, 'Courier New', Courier, monospace;
- --color-green: #17c083;
-}
-
-* {
- box-sizing: border-box;
- margin: 0;
-}
-
-html {
- display: grid;
- width: 100%;
- max-width: 100vw;
- overflow: hidden;
- height: 100%;
- background-color: #000014;
-}
-
-html,
-body {
- padding: 0;
- font-size: clamp(14px, calc(1rem + (3vw - 1.2rem)), 20px);
- font-family: var(--font-sans);
- font-weight: 400;
- background-image: radial-gradient(87.7% 87.7% at 85.6% 18.14%, #111827 0%, #000014 100%);
- background-repeat: no-repeat;
- color: #f3f4f6;
-}
-
-body {
- position: relative;
- display: grid;
- place-items: center;
- min-width: 100%;
- max-width: 100vw;
- min-height: 100vh;
- overflow-x: hidden;
-}
-
-.visually-hidden {
- clip: rect(0 0 0 0);
- clip-path: inset(50%);
- height: 1px;
- overflow: hidden;
- position: absolute;
- white-space: nowrap;
- width: 1px;
-}
-
-a {
- position: relative;
- text-decoration: none;
- color: var(--color-green);
- padding: 0.05em 0.125em;
- margin: -0.05em -0.125em;
- transition: color 120ms cubic-bezier(0.23, 1, 0.32, 1);
- z-index: 0;
- display: inline-block;
-}
-
-a:hover,
-a:focus {
- color: black;
-}
-
-a:hover::before,
-a:focus::before {
- transform: scaleY(1);
- background: var(--color-green);
-}
-
-a:visited {
- color: var(--color-green);
-}
-
-a:visited:hover,
-a:visited:focus {
- color: black;
-}
-
-a::before {
- transform-origin: bottom center;
- content: '';
- display: block;
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- inset: 0;
- background: var(--color-green);
- pointer-events: none;
- transform: scaleY(0.05);
- transition: transform 120ms cubic-bezier(0.23, 1, 0.32, 1), background 120ms cubic-bezier(0.23, 1, 0.32, 1);
- z-index: -1;
-}
diff --git a/examples/blog/src/layouts/BlogPost.astro b/examples/blog/src/layouts/BlogPost.astro
index 06bba074d..b227d5222 100644
--- a/examples/blog/src/layouts/BlogPost.astro
+++ b/examples/blog/src/layouts/BlogPost.astro
@@ -10,7 +10,7 @@ const {title, description, publishDate, author, heroImage, permalink, alt} = con
<html lang={ content.lang || 'en' }>
<head>
<BaseHead title={title} description={description} permalink={permalink} />
- <link rel="stylesheet" href="/blog.css" />
+ <link rel="stylesheet" href={Astro.resolve('../styles/blog.css')} />
</head>
<body>
diff --git a/examples/blog/src/pages/index.astro b/examples/blog/src/pages/index.astro
index f96f5e049..cd839d382 100644
--- a/examples/blog/src/pages/index.astro
+++ b/examples/blog/src/pages/index.astro
@@ -27,7 +27,7 @@ allPosts = allPosts.sort((a, b) => new Date(b.publishDate).valueOf() - new Date(
<html lang="en">
<head>
<BaseHead title={title} description={description} permalink={permalink} />
- <link rel="stylesheet" href="/blog.css" />
+ <link rel="stylesheet" href={Astro.resolve('../styles/blog.css')} />
<style>
header {
diff --git a/examples/blog/public/blog.css b/examples/blog/src/styles/blog.css
index 319cdbc6f..319cdbc6f 100644
--- a/examples/blog/public/blog.css
+++ b/examples/blog/src/styles/blog.css