diff options
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 { |
