diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-02-11 22:37:30 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-02-11 22:37:30 -0500 |
| commit | ae20d39d4d64698977d664a83b8b9454917aacad (patch) | |
| tree | baee8114031a9bcb6651b549cbcae9c8fcb1b726 /src/styles | |
| parent | f38935fe06d823069a124185356c1d59f741ee8e (diff) | |
| download | personal-website-ae20d39d4d64698977d664a83b8b9454917aacad.tar.gz personal-website-ae20d39d4d64698977d664a83b8b9454917aacad.tar.bz2 personal-website-ae20d39d4d64698977d664a83b8b9454917aacad.zip | |
Blog changes; Homepage changes; Set locale to en-ca
Diffstat (limited to 'src/styles')
| -rw-r--r-- | src/styles/Page.css | 27 | ||||
| -rw-r--r-- | src/styles/index.css | 6 |
2 files changed, 32 insertions, 1 deletions
diff --git a/src/styles/Page.css b/src/styles/Page.css new file mode 100644 index 0000000..2a8f877 --- /dev/null +++ b/src/styles/Page.css @@ -0,0 +1,27 @@ +header { + display: flex; + flex-direction: column; + gap: 0.5em; + margin: 0; + text-align: center; + padding: 0 0 1em; +} + +.header-text { + font-size: 2em; + margin: 0; +} + +h2.header-text { + font-size: 1.5em; + font-weight: 300; +} +.container { + margin: 1em 10em 1em 10em; +} + +@media (max-width: 992px) { + .container { + margin: 10px 20px 10px 20px; + } +} diff --git a/src/styles/index.css b/src/styles/index.css index ae3e9db..c581da0 100644 --- a/src/styles/index.css +++ b/src/styles/index.css @@ -55,13 +55,17 @@ .latest-posts { grid-column: 2; - grid-row: 1 / span 2; + grid-row: 1 / span 3; } .blog-title { margin-bottom: 2px; } +.link { + font-size: 1.2em; +} + /* Mobile view */ @media (max-width: 992px) { .social { |
