diff options
| author | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2021-11-21 22:27:44 +0000 |
|---|---|---|
| committer | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2021-11-21 22:27:44 +0000 |
| commit | 321a2f6d9e002607590f775f4c4fd24006e71580 (patch) | |
| tree | 0e7aa5439e8832dc79fc0e6b933fc22ed9016e41 /app | |
| parent | 09b1bbf0e075deeadbcae871bb8a859d70960add (diff) | |
Change styles
Diffstat (limited to 'app')
| -rw-r--r-- | app/static/css/globalstyles.css | 21 | ||||
| -rw-r--r-- | app/views/partials/header.ejs | 2 |
2 files changed, 18 insertions, 5 deletions
diff --git a/app/static/css/globalstyles.css b/app/static/css/globalstyles.css index 3d030ab..7589ec7 100644 --- a/app/static/css/globalstyles.css +++ b/app/static/css/globalstyles.css @@ -1,14 +1,25 @@ @import url('https://fonts.googleapis.com/css2?family=Cousine:ital,wght@0,400;0,700;1,400;1,700&display=swap'); +.website-name { + font-size: 45px; + font-weight: 700; + line-height: 2.5; + color: #eee; +} + html, body { border: 0; margin: 0; background-color: #000; - color: #eee; + color: #ddd; font-family: 'Cousine', monospace, sans-serif; line-height: 1.3; } +h1, h2, h3, h4, h5, h6 { + color: #fff; +} + #navbar { background-color: #222; width: 100%; @@ -25,7 +36,7 @@ html, body { height: 30px; text-align: center; line-height: 30px; - padding: 5px; + padding: 10px; } .navbar-element:hover { @@ -44,12 +55,14 @@ html, body { } #main-container { - max-width: 1100px; + max-width: 1200px; margin: 0 auto; } #content { - max-width: calc(1100px - 10px); + padding: 20px; + max-width: 1200px; + background-color: #333; margin: 0 auto; } diff --git a/app/views/partials/header.ejs b/app/views/partials/header.ejs index 25f5b2b..7410e18 100644 --- a/app/views/partials/header.ejs +++ b/app/views/partials/header.ejs @@ -1,4 +1,4 @@ -<h1>Leonardo Bishop</h1> +<div class="website-name">Leonardo Bishop</div> <div id="navbar"> <%- navbar %> </div>
\ No newline at end of file |
