From 13120a0493483d0b10ae3b6c32346aa96ea1cf2d Mon Sep 17 00:00:00 2001 From: Mark Peck Date: Mon, 24 Jul 2023 16:40:18 -0500 Subject: Basics theme styling updates (#7760) * update styling and include asset * whoopsies, didnt mean to include these * im rusty dont judge * another thing I didn't want pushed * anything for chris * for natey poo * just stop --- examples/basics/src/components/Card.astro | 20 +++++------ examples/basics/src/layouts/Layout.astro | 9 +++-- examples/basics/src/pages/index.astro | 57 ++++++++++++++++++++++--------- 3 files changed, 55 insertions(+), 31 deletions(-) (limited to 'examples/basics/src') diff --git a/examples/basics/src/components/Card.astro b/examples/basics/src/components/Card.astro index a1e0ccf6e..5ce15cca4 100644 --- a/examples/basics/src/components/Card.astro +++ b/examples/basics/src/components/Card.astro @@ -23,24 +23,23 @@ const { href, title, body } = Astro.props; .link-card { list-style: none; display: flex; - padding: 0.25rem; - background-color: white; + padding: 1px; + background-color: #23262D; background-image: none; background-size: 400%; - border-radius: 0.6rem; + border-radius: 7px; background-position: 100%; transition: background-position 0.6s cubic-bezier(0.22, 1, 0.36, 1); - box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 0 0 1px rgba(255,255,255, 0.1); } - .link-card > a { width: 100%; text-decoration: none; line-height: 1.4; - padding: 1rem 1.3rem; - border-radius: 0.35rem; - color: #111; - background-color: white; + padding: calc(1.5rem - 1px); + border-radius: 8px; + color: white; + background-color: #23262D; opacity: 0.8; } h2 { @@ -51,13 +50,12 @@ const { href, title, body } = Astro.props; p { margin-top: 0.5rem; margin-bottom: 0; - color: #444; } .link-card:is(:hover, :focus-within) { background-position: 0; background-image: var(--accent-gradient); } .link-card:is(:hover, :focus-within) h2 { - color: rgb(var(--accent)); + color: rgb(var(--accent-light)); } diff --git a/examples/basics/src/layouts/Layout.astro b/examples/basics/src/layouts/Layout.astro index 9b9de105c..3345b887c 100644 --- a/examples/basics/src/layouts/Layout.astro +++ b/examples/basics/src/layouts/Layout.astro @@ -22,12 +22,15 @@ const { title } = Astro.props; -- cgit v1.2.3