diff options
author | 2021-05-17 17:45:41 -0500 | |
---|---|---|
committer | 2021-05-17 17:45:41 -0500 | |
commit | d6cedac38e25fbec8425e020c16393fd70f0adf6 (patch) | |
tree | 4bda69f8ec6ab76d75f1f98b141886ce5305df4d /examples/blog/public/global.scss | |
parent | d8a78298f354e775c1a3ad8b2d44e372969b0c39 (diff) | |
download | astro-d6cedac38e25fbec8425e020c16393fd70f0adf6.tar.gz astro-d6cedac38e25fbec8425e020c16393fd70f0adf6.tar.zst astro-d6cedac38e25fbec8425e020c16393fd70f0adf6.zip |
Improve blog template (#217)
Diffstat (limited to 'examples/blog/public/global.scss')
-rw-r--r-- | examples/blog/public/global.scss | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/examples/blog/public/global.scss b/examples/blog/public/global.scss index a6007631a..d5891f6b4 100644 --- a/examples/blog/public/global.scss +++ b/examples/blog/public/global.scss @@ -1,9 +1,23 @@ body { - font-family: sans-serif; + font-family: 'Spectral', serif; + line-height: 1.4; +} + +p { + line-height: 2; +} + +a { + color: crimson; +} + +img { + max-width: 100%; + height: auto; } .wrapper { - max-width: 1400px; + max-width: 60rem; margin-left: auto; margin-right: auto; padding-left: 2rem; |