aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/static/css/globalstyles.css21
-rw-r--r--app/views/partials/header.ejs2
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