diff --git a/src/components/Card.astro b/src/components/Card.astro index 5317348..e4765ae 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -20,7 +20,7 @@ const pixels = Array.from(digest).map((digit) => {
-

{title}

+

{title}

@@ -44,7 +44,7 @@ const pixels = Array.from(digest).map((digit) => { flex: 1 1 0; background: var(--color-primary-dark); padding: var(--gap-lg); - min-height: calc(max(28rem, min(55vh, 55vw))); + min-height: calc(max(30rem, min(60vh, 60vw))); position: relative; } @@ -93,11 +93,9 @@ const pixels = Array.from(digest).map((digit) => { } } - h3 { + h4 { font-family: var(--font-secondary); color: var(--color-secondary); - margin-bottom: var(--gap-md); - font-size: 1.5em; font-weight: 300; } @@ -105,15 +103,16 @@ const pixels = Array.from(digest).map((digit) => { display: inline-block; color: var(--color-secondary); font-family: var(--font-mono); - font-variant: small-caps; margin-top: auto; text-decoration: none; + font-size: 0.8em; text-align: right; + text-transform: uppercase; position: relative; & > svg.icon.slide { position: absolute; - top: 0.1em; + top: 0.2em; right: 0; opacity: 0; transition: all 100ms ease-in; diff --git a/src/components/ExternalLink.astro b/src/components/ExternalLink.astro index c8b8c34..33b5a53 100644 --- a/src/components/ExternalLink.astro +++ b/src/components/ExternalLink.astro @@ -6,6 +6,6 @@ type Props = HTMLAttributes<'a'>; const { href, ...attributes } = Astro.props; --- - + diff --git a/src/components/Footer.astro b/src/components/Footer.astro index da4bea3..a28068f 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -21,7 +21,7 @@ const twitterUrl = `https://twitter.com/${socials.twitter}`;