diff options
author | 2022-07-08 22:08:32 +0200 | |
---|---|---|
committer | 2022-07-08 22:08:32 +0200 | |
commit | 59e8c71786fd1c154904b3fefa7d26d88f4d92d2 (patch) | |
tree | 3a352e838b25a402c608913aeca21f471d75a826 /examples/basics/src/pages/index.astro | |
parent | 1f9e4857ff2b2cb7db89d619618cdf546cd3b3dc (diff) | |
download | astro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.tar.gz astro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.tar.zst astro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.zip |
Format astro files in examples (#3862)
Diffstat (limited to 'examples/basics/src/pages/index.astro')
-rw-r--r-- | examples/basics/src/pages/index.astro | 48 |
1 files changed, 35 insertions, 13 deletions
diff --git a/examples/basics/src/pages/index.astro b/examples/basics/src/pages/index.astro index ea7401f11..cf05f0bb6 100644 --- a/examples/basics/src/pages/index.astro +++ b/examples/basics/src/pages/index.astro @@ -1,26 +1,43 @@ --- -import Layout from '../layouts/Layout.astro'; -import Card from '../components/Card.astro'; +import Layout from "../layouts/Layout.astro"; +import Card from "../components/Card.astro"; --- + <Layout title="Welcome to Astro."> <main> <h1>Welcome to <span class="text-gradient">Astro</span></h1> <p class="instructions"> - Check out the <code>src/pages</code> directory to get started.<br/> + Check out the <code>src/pages</code> directory to get started.<br /> <strong>Code Challenge:</strong> Tweak the "Welcome to Astro" message above. </p> <ul role="list" class="link-card-grid"> - <Card href="https://docs.astro.build/" title="Documentation" body="Learn how Astro works and explore the official API docs." /> - <Card href="https://astro.build/integrations/" title="Integrations" body="Supercharge your project with new frameworks and libraries." /> - <Card href="https://astro.build/themes/" title="Themes" body="Explore a galaxy of community-built starter themes." /> - <Card href="https://astro.build/chat/" title="Chat" body="Come say hi to our amazing Discord community. ❤️" /> + <Card + href="https://docs.astro.build/" + title="Documentation" + body="Learn how Astro works and explore the official API docs." + /> + <Card + href="https://astro.build/integrations/" + title="Integrations" + body="Supercharge your project with new frameworks and libraries." + /> + <Card + href="https://astro.build/themes/" + title="Themes" + body="Explore a galaxy of community-built starter themes." + /> + <Card + href="https://astro.build/chat/" + title="Chat" + body="Come say hi to our amazing Discord community. ❤️" + /> </ul> </main> </Layout> <style> :root { - --astro-gradient: linear-gradient(0deg,#4F39FA, #DA62C4); + --astro-gradient: linear-gradient(0deg, #4f39fa, #da62c4); } h1 { @@ -29,7 +46,7 @@ import Card from '../components/Card.astro'; main { margin: auto; - padding: 1em; + padding: 1em; max-width: 60ch; } @@ -45,15 +62,20 @@ import Card from '../components/Card.astro'; } @keyframes pulse { - 0%, 100% { background-position-y: 0%; } - 50% { background-position-y: 80%; } + 0%, + 100% { + background-position-y: 0%; + } + 50% { + background-position-y: 80%; + } } .instructions { line-height: 1.6; margin: 1rem 0; - background: #4F39FA; - padding: 1.0rem; + background: #4f39fa; + padding: 1rem; border-radius: 0.4rem; color: var(--color-bg); } |