Add site header and restyle page content

This commit is contained in:
Froge 2025-02-02 04:39:45 +10:00
parent 3a1dddcf50
commit c6c4b3a367
Signed by: froge
GPG key ID: A825E09930271BFA
3 changed files with 65 additions and 32 deletions

View file

@ -6,12 +6,10 @@ html {
body { body {
font-family: Open Sans,Arial; font-family: Open Sans,Arial;
color: #d4d4d4; color: #e4e4e4;
background-color: #252422; font-size: 14px;
font-size: 16px; margin: auto;
margin: 1em auto;
max-width: 48em; max-width: 48em;
padding: 1em;
line-height: 1.4; line-height: 1.4;
-webkit-hyphens: auto; -webkit-hyphens: auto;
-ms-hyphens: auto; -ms-hyphens: auto;
@ -27,11 +25,42 @@ li {
} }
a { a {
color:#00a2e7 color: #fa4c58;
text-decoration: none;
font-weight: bold;
} }
a:visited { a:visited {
color:#ca1a70; color: #ac69e2;
}
a:hover {
text-decoration: underline;
}
#site-content {
height: 20em;
margin: 5em auto;
padding: 1em;
border-radius: 1em;
background: rgba(0,0,0, 0.6);
box-shadow: 1em 1em 1em 1em rgba(0,0,0, 0.5);
}
#ascii-header {
font-size: 10px;
color: #e4e4e4;
text-decoration: none;
}
#ascii-header a {
color: #e4e4e4;
text-decoration: none;
}
#ascii-header a:visited {
color: #e4e4e4;
text-decoration: none;
} }
.blog-post-date { .blog-post-date {
@ -39,29 +68,25 @@ a:visited {
padding: 0; padding: 0;
} }
#blog-title { .blog-title {
margin-bottom: 0; margin-bottom: 0;
} }
/* Magic frog pool CSS lives here */ /* Magic background CSS lives here */
#frog-pool-container { #bg-effect-container {
z-index: -1; z-index: -1;
position: absolute; position: absolute;
bottom: 0%; bottom: 0%;
left: 0%; left: 0%;
/*transform: translate(-50%, -50%);*/
transform: rotate(0deg);
background: rgb(37,36,34);
background: linear-gradient(-20deg, rgba(37,36,34,1) 25%, rgba(62,34,143,1) 60%, rgba(39,171,198,1) 95%);
height: 100%; height: 100%;
width: 100%; width: 100%;
background-color: blue; background-color: #252422;
overflow: hidden; overflow: hidden;
} }
.frog-pool-water { .bg-effect {
} background: linear-gradient(to bottom right, rgba(0,0,0,1) 10%, rgba(65,14,105, 0.6) 40%, rgba(55,17,95,0.7) 50%, rgba(32,14,84,0.6) 60%, rgba(0,0,0,1) 90%);
height: 100%;
.frog-pool-emoji { width: 100%;
} }

View file

@ -7,20 +7,28 @@
</head> </head>
<body> <body>
<h1 class="title">Cyberfrog blog</h1> <div id="site-content">
<!-- Credits to http://patorjk.com/software/taag/ for the header, made using "ANSI Regular" font -->
<div id="ascii-header"><a href="/"><pre>
██████ ██ ██ ██████ ███████ ██████ ███████ ██████ ██████ ██████ ███ ███ ███████
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ████ ████ ██
██ ████ ██████ █████ ██████ █████ ██████ ██ ██ ██ ███ ██ ████ ██ █████
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
██████ ██ ██████ ███████ ██ ██ ██ ██ ██ ██████ ██████ ██ ██ ██ ███████
</pre></a></div>
<main id="main-content">
<h1 class="title">
This is my blog made with <a target="_blank" href="https://www.getzola.org">Zola!</a>
</h1>
<h3>It's currently running on <a target="_blank" href="https://www.vultr.com">Vultr</a> for free with 500MB of RAM and <a target="_blank" href="https://www.openbsd.org">OpenBSD :)</a></h3>
<div class="blog-posts">
{% block content %} {% endblock %}
</div>
</main>
</div> </div>
<main id="main-content">
<h2 class="title">
This is my blog made with Zola!
</h2>
<h3>It's currently running on Vultr for free with 500MB of RAM and OpenBSD :)</h3>
<div class="blog-posts">
{% block content %} {% endblock %}
</div>
</main>
<!-- The wonderful frog pool --> <!-- The wonderful frog pool -->
<div id="frog-pool-container"> <div id="bg-effect-container">
<div class="frog-pool-water"> <div class="bg-effect">
</div> </div>
</div> </div>
</body> </body>

View file

@ -9,7 +9,7 @@
<body> <body>
<h1 class="title">Cyberfrog blog</h1> <h1 class="title">Cyberfrog blog</h1>
<main id="main-content"> <main id="main-content">
<h2 id="blog-title">{{ page.title }}</h2> <h2 class="blog-title">{{ page.title }}</h2>
<h4 class="blog-post-date">Published: {{ page.date }} || Last updated: {{ page.updated }}</h4> <h4 class="blog-post-date">Published: {{ page.date }} || Last updated: {{ page.updated }}</h4>
<div class="blog-posts"> <div class="blog-posts">
{% block content %} {% endblock %} {% block content %} {% endblock %}