Compare commits
6 commits
9c60f9a0e1
...
a865751408
Author | SHA1 | Date | |
---|---|---|---|
a865751408 | |||
cb89c32b1a | |||
1e6e340f56 | |||
a603a89938 | |||
32bb30b256 | |||
c4877b6d37 |
3 changed files with 66 additions and 52 deletions
|
@ -1,23 +1,38 @@
|
||||||
|
* {
|
||||||
|
margin: 0rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Magic fix which forces outer most element to full view size for background scaling */
|
||||||
|
html {
|
||||||
|
min-height: 100%;
|
||||||
|
min-width: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: column;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: Open Sans, Arial;
|
font-family: monospace;
|
||||||
color: #e4e4e4;
|
color: #e4e4e4;
|
||||||
font-size: 14px;
|
padding-top: 2rem;
|
||||||
margin: auto;
|
font-size: 18px;
|
||||||
max-width: 50em;
|
max-width: 55rem;
|
||||||
line-height: 1.4;
|
line-height: 1.4;
|
||||||
-webkit-hyphens: auto;
|
-webkit-hyphens: auto;
|
||||||
-ms-hyphens: auto;
|
-ms-hyphens: auto;
|
||||||
hyphens: auto;
|
hyphens: auto;
|
||||||
text-align: center;
|
/* Fancy background CSS lives here */
|
||||||
height: 100%;
|
background: linear-gradient(to bottom right, rgba(0,0,0, 1) 2%, rgba(65,15,75, 1) 40%, rgba(65,15,90, 1) 50%, rgba(30,15,80, 1) 60%, rgba(0,0,0, 1) 98%);
|
||||||
width: 100%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
margin-top: 1em;
|
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
padding: 0rem;
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #4361ee;
|
color: #4361ee;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
@ -33,20 +48,22 @@ a:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
#site-content {
|
#site-content {
|
||||||
height: 100%;
|
display: flex;
|
||||||
margin: 5em auto;
|
justify-content: center;
|
||||||
padding: 1em;
|
align-items: center;
|
||||||
padding-bottom: 2em;
|
flex-direction: column;
|
||||||
border-radius: 1em;
|
padding: 2rem;
|
||||||
background: rgba(0,0,0, 0.7);
|
border-radius: 1rem;
|
||||||
box-shadow: 1em 1em 1em 1em rgba(0,0,0, 0.5);
|
background: rgba(0,0,0, 0.78);
|
||||||
|
box-shadow: 1rem 1rem 1rem 1rem rgba(0,0,0, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ascii-header {
|
#ascii-header {
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
color: #e4e4e4;
|
color: #e4e4e4;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border-bottom: #541287 0.8em dotted;
|
padding: 1rem;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ascii-header a {
|
#ascii-header a {
|
||||||
|
@ -59,30 +76,27 @@ a:hover {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blog-post-date {
|
#welcome-message {
|
||||||
margin: 0;
|
padding: 1rem;
|
||||||
padding: 0;
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blog-title {
|
.dotted-border {
|
||||||
margin-bottom: 0;
|
border-bottom: #e4e4e4 8px dotted;
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Magic background CSS lives here */
|
|
||||||
#bg-effect-container {
|
|
||||||
z-index: -1;
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0%;
|
|
||||||
left: 0%;
|
|
||||||
height: 100%;
|
|
||||||
width: 100%;
|
|
||||||
background-color: #000000;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.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%;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
letter-spacing: -2px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-post-container {
|
||||||
|
padding: 1rem;
|
||||||
|
padding-top: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-post-title {
|
||||||
|
padding-top: 2rem;
|
||||||
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<title>🐸 CyberFrog</title>
|
<title>🐸 CyberFrog</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body id="bg-effect">
|
||||||
<div id="site-content">
|
<div id="site-content">
|
||||||
<!-- Credits to http://patorjk.com/software/taag/ for the header, made using "ANSI Regular" font -->
|
<!-- Credits to http://patorjk.com/software/taag/ for the header, made using "ANSI Regular" font -->
|
||||||
<div id="ascii-header"><a href="/"><pre>
|
<div id="ascii-header"><a href="/"><pre>
|
||||||
|
@ -16,21 +16,21 @@
|
||||||
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
||||||
██████ ██ ██████ ███████ ██ ██ ██ ██ ██ ██████ ██████ ██ ██ ██ ███████
|
██████ ██ ██████ ███████ ██ ██ ██ ██ ██ ██████ ██████ ██ ██ ██ ███████
|
||||||
</pre></a></div>
|
</pre></a></div>
|
||||||
|
<div class="dotted-border"></div>
|
||||||
<main id="main-content">
|
<main id="main-content">
|
||||||
<h1 class="title">
|
<div id="welcome-message">
|
||||||
This is my blog made with <a target="_blank" href="https://www.getzola.org">Zola!</a>
|
<h1 class="title">Welcome</h1>
|
||||||
</h1>
|
<p>This blog is made with 💜 and <a target="_blank" href="https://www.getzola.org">Zola!</a></p>
|
||||||
<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>
|
<p>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>
|
||||||
<div class="blog-posts">
|
</p>
|
||||||
{% block content %} {% endblock %}
|
</div>
|
||||||
|
<div class="dotted-border"></div>
|
||||||
|
<div class="blog-post-container">
|
||||||
|
<h3 class="title">View the latest posts</h3>
|
||||||
|
{% block content %} {% endblock %}
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
<!-- The wonderful frog pool -->
|
|
||||||
<div id="bg-effect-container">
|
|
||||||
<div class="bg-effect">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<!-- If you are using pagination, section.pages will be empty.
|
<!-- If you are using pagination, section.pages will be empty.
|
||||||
You need to use the paginator object -->
|
You need to use the paginator object -->
|
||||||
{% for page in section.pages %}
|
{% for page in section.pages %}
|
||||||
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
|
<li class="blog-post-title">{{ page.date }} // <a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
Loading…
Add table
Reference in a new issue