diff --git a/public/favicon.png b/public/favicon.png new file mode 100755 index 0000000..0bbcbbe Binary files /dev/null and b/public/favicon.png differ diff --git a/public/midnightlib-example-code.png b/public/midnightlib-example-code.png new file mode 100644 index 0000000..d0a325a Binary files /dev/null and b/public/midnightlib-example-code.png differ diff --git a/public/midnightlib-example-code.png~ b/public/midnightlib-example-code.png~ new file mode 100644 index 0000000..5d4bcb7 Binary files /dev/null and b/public/midnightlib-example-code.png~ differ diff --git a/public/midnightlib-example.png b/public/midnightlib-example.png new file mode 100644 index 0000000..dcd1d32 Binary files /dev/null and b/public/midnightlib-example.png differ diff --git a/src/assets/img/logo.png b/src/assets/img/logo.png new file mode 100755 index 0000000..0bbcbbe Binary files /dev/null and b/src/assets/img/logo.png differ diff --git a/src/assets/img/logo.svg b/src/assets/img/logo.svg deleted file mode 100644 index bc3429b..0000000 --- a/src/assets/img/logo.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/assets/scss/base/_color.scss b/src/assets/scss/base/_color.scss index ef2e06e..dc1d4e5 100644 --- a/src/assets/scss/base/_color.scss +++ b/src/assets/scss/base/_color.scss @@ -11,11 +11,11 @@ $colors: ( 500: hsl(276, 96%, 20%), ), secondary: ( - 100: hsl(173, 81%, 68%), - 200: hsl(173, 80%, 63%), - 300: hsl(173, 72%, 57%), - 400: hsl(173, 75%, 47%), - 500: hsl(173, 90%, 30%), + 100: hsl(140, 80%, 68%), + 200: hsl(140, 80%, 63%), + 300: hsl(140, 72%, 57%), + 400: hsl(140, 75%, 47%), + 500: hsl(140, 90%, 30%), ), neutral: ( 100: hsl(0 0% 100%), diff --git a/src/components/CallToAction.astro b/src/components/CallToAction.astro index 5bcdd49..f0cafb9 100644 --- a/src/components/CallToAction.astro +++ b/src/components/CallToAction.astro @@ -1,7 +1,15 @@ +--- +const { text, url_gh, url_mr, url_cf } = Astro.props +--- +
-

Get this theme on GitHub

- Use this theme +

{text}

+
@@ -13,7 +21,10 @@ .call-to-action a:not(button), .call-to-action a:not(button):visited { + display: inline-block; + vertical-align: top; padding: 1rem; + margin: 0 1rem 0 1rem; color: var(--neutral-900); font-weight: bold; border: 3px solid var(--neutral-900); diff --git a/src/components/ContentMedia.astro b/src/components/ContentMedia.astro index 2a667c9..407878b 100644 --- a/src/components/ContentMedia.astro +++ b/src/components/ContentMedia.astro @@ -4,7 +4,7 @@ import { Media } from 'accessible-astro-components' const { imgSrc, reverseImg = false } = Astro.props --- -
+
{!reverseImg ? : ''} diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 073b46e..003ee0d 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,16 +1,13 @@ --- -import CallToAction from './CallToAction.astro' - const currentYear = new Date().getFullYear() ---