General
My greatest joy in life is learning new things. @@ -58,5 +57,4 @@ Trying to live more in line with what feels right internally. A wonderful exploration and adventure.
-diff --git a/assets/main.css b/assets/main.css index 81f00b6..7fa2d86 100644 --- a/assets/main.css +++ b/assets/main.css @@ -41,11 +41,6 @@ html { padding: 0.25rem; } -body { - width: 60%; - margin: auto; -} - h1 { font-size: 2.25rem; /* 36px */ line-height: 2.5rem; /* 40px */ @@ -63,7 +58,7 @@ h3 { } a { - color: var(--orange); + color: var(--blue); text-decoration: none; } @@ -77,23 +72,7 @@ p { } code { - color: var(--blue); -} - -.navbar { - overflow: hidden; - text-align: center; - margin: 0px; -} - -.navbar-list { - paddign: 0px; - display: flex; - justify-content: space-between; - list-style-type: none; - font-size: 1.5rem; /* 24px */ - line-height: 2rem; /* 32px */ - color: var(--red); + color: var(--purple); } img { @@ -105,6 +84,36 @@ img { font-weight: bold; } +.container { + display: flex; +} + +.sidebar { + width: 250px; + height: 100vh; + padding-top: 20px; + position: fixed; +} + +.sidebar ul { + list-style-type: none; + padding: 0; +} + +.sidebar ul li { + padding: 10px; +} + +.sidebar ul li a { + text-decoration: none; +} + +.content { + width: 60%; + margin: auto; + padding: 20px; +} + @media (max-width: 1024px) { html { line-height: 1.75rem; @@ -112,7 +121,17 @@ img { padding: 0.25rem; } - body { + .container { + flex-direction: column; + } + + .sidebar { + width: 100%; + height: auto; + position: static; + } + + .content { width: 90%; } @@ -130,9 +149,4 @@ img { font-size: 1rem; /* 16px */ line-height: 1.5rem; /* 24px */ } - - .navbar-list { - font-size: 1.125rem; /* 18px */ - line-height: 1.75rem; /* 28px */ - } } diff --git a/templates/about.html b/templates/about.html index 438ddbe..1686378 100644 --- a/templates/about.html +++ b/templates/about.html @@ -2,7 +2,6 @@ {% extends "base.html" %} {% block content %} -
My greatest joy in life is learning new things. @@ -58,5 +57,4 @@ Trying to live more in line with what feels right internally. A wonderful exploration and adventure.
-