diff --git a/assets/playnote.sketch b/assets/playnote.sketch index 4cef869..b1aac04 100644 Binary files a/assets/playnote.sketch and b/assets/playnote.sketch differ diff --git a/website/package.json b/website/package.json index 2e08be0..68f3103 100644 --- a/website/package.json +++ b/website/package.json @@ -14,6 +14,7 @@ "@types/three": "^0.139.0", "astro": "^0.25.4", "astro-icon": "^0.7.1", + "date-fns": "^2.28.0", "sass": "^1.49.9", "vite-plugin-glsl": "^0.1.2" }, diff --git a/website/src/components/Button.astro b/website/src/components/Button.astro index 07421e3..8eb03d4 100644 --- a/website/src/components/Button.astro +++ b/website/src/components/Button.astro @@ -37,7 +37,7 @@ const { href, type } = Astro.props font-weight: normal; color: $color-text; background: $color-bg; - border: 2px solid #B3B5C1; + border: 3px solid #B3B5C1; border-right-color: #777784; border-bottom-color: #777784; } diff --git a/website/src/pages/filehelp.astro b/website/src/pages/filehelp.astro index 9805bd9..0195b12 100644 --- a/website/src/pages/filehelp.astro +++ b/website/src/pages/filehelp.astro @@ -68,24 +68,14 @@ import BaseLayout from '../layouts/BaseLayout.astro'; margin-top: 5rem; } - .Header__top { - background: url('/assets/panel_head_light.svg'); - background-size: 100% 100%; - background-repeat: no-repeat; - width: 15ch; - margin: 0 auto; - margin-bottom: -0.1rem; - padding: .75em 2em .5em 2em; - border-top-left-radius: 20px; - border-top-right-radius: 20px; - } - .Header__main { background: $color-bg-alt; - padding: 20px; margin: 0 auto; + @include punchcard; @include panel; + padding-top: 40px; @include breakpoint-desktop { + padding-top: 40px; max-width: grid-span(8, 12); } } @@ -103,8 +93,8 @@ import BaseLayout from '../layouts/BaseLayout.astro'; } .Panel { - color: $color-text-invert; - background: $color-bg-invert; + // color: $color-text-invert; + background: $color-bg-alt; margin: 0 auto; margin-bottom: 2em; @include panel; diff --git a/website/src/pages/index.astro b/website/src/pages/index.astro index d690127..4d61063 100644 --- a/website/src/pages/index.astro +++ b/website/src/pages/index.astro @@ -35,14 +35,18 @@ import { Icon } from 'astro-icon';
-

Download

+
+ +

Latest Release

+ Past Releases & Changelog → +

playnote.pdx

-
Version 1.0.1
-
17.5 MB
+
Version 1.1
+
16.8 MB
@@ -68,6 +72,10 @@ import { Icon } from 'astro-icon';
+
+

By the way! You can add your own Flipnotes by dropping them onto your Playdate's storage

+ +
@@ -265,6 +273,8 @@ import { Icon } from 'astro-icon'; \ No newline at end of file diff --git a/website/src/styles/vars.scss b/website/src/styles/vars.scss index d370f32..4ff03cd 100644 --- a/website/src/styles/vars.scss +++ b/website/src/styles/vars.scss @@ -50,4 +50,9 @@ $text-size-title: 1.25rem; padding: $padding; border-radius: $border-radius; } +} + +@mixin punchcard { + -webkit-mask-image: radial-gradient(circle at center 22px, transparent 10px, white 10px); + mask-image: radial-gradient(circle at center 22px, transparent 10px, white 10px); } \ No newline at end of file