diff --git a/examples/blog/public/blog.scss b/examples/blog/public/blog.scss index f74c026921..68db366a15 100644 --- a/examples/blog/public/blog.scss +++ b/examples/blog/public/blog.scss @@ -269,3 +269,27 @@ img.cover { max-height: 50vh; object-fit: cover; } + +blockquote { + font-size: 1.5rem; + --padding-block: 1rem; + --padding-inline: 1.25rem; + --color: var(--theme-divider); + + display: flex; + flex-direction: column; + + padding: var(--padding-block) var(--padding-inline); + margin-left: calc(var(--padding-inline) * -1); + margin-right: calc(var(--padding-inline) * -1); + + background: transparent; + border-left: calc(var(--padding-inline) / 2) solid var(--color); + border-radius: 0; +} + +blockquote .source { + font-weight: 500; + color: var(--color); + font-size: 1rem; +} \ No newline at end of file diff --git a/examples/blog/src/pages/posts/introducing-astro.md b/examples/blog/src/pages/posts/introducing-astro.md index 293b3b8f94..16aa33e38d 100644 --- a/examples/blog/src/pages/posts/introducing-astro.md +++ b/examples/blog/src/pages/posts/introducing-astro.md @@ -21,9 +21,7 @@ Today I'm excited to publicly share Astro: a new kind of static site builder tha This post marks the first public beta release of Astro. **Missing features and bugs are still to be expected at this early stage.** There are still some months to go before an official 1.0 release, but there are already several fast sites built with Astro in production today. We would love your early feedback as we move towards a v1.0 release later this year. - - To learn more about Astro and start building your first site, check out [the project README.](https://github.com/snowpackjs/astro#-guides) - +> To learn more about Astro and start building your first site, check out [the project README.](https://github.com/snowpackjs/astro#-guides). ## Getting Started @@ -62,9 +60,7 @@ This new approach to web architecture is called [islands architecture](https://j ## Embracing the Pit of Success -
- A well-designed system makes it easy to do the right things and annoying (but not impossible) to do the wrong things -
+> A well-designed system makes it easy to do the right things and annoying (but not impossible) to do the wrong things

– Jeff Atwood

[Falling Into The Pit of Success](https://blog.codinghorror.com/falling-into-the-pit-of-success/)
Poor performance is often framed as a failure of the developer, but we respectfully disagree. In many cases, poor performance is a failure of tooling. It should be difficult to build a slow website.