shadows on links and tags in archetypes

This commit is contained in:
Marvin Steadfast 2020-02-28 10:05:07 +01:00
parent 530dd55d55
commit 6c0a0875e6
2 changed files with 13 additions and 2 deletions

View File

@ -1,6 +1,8 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
tags:
- notag
draft: true
---

View File

@ -1,3 +1,5 @@
/* using this "colors": https://www.color-hex.com/color/333333 */
@font-face {
font-family: 'Go Mono';
src: url('/fonts/GoMono.eot');
@ -74,6 +76,7 @@ h6 {
a {
color: #5b5b5b;
text-decoration: none;
text-shadow: 4px 4px #eaeaea;
}
a:focus,
@ -81,14 +84,16 @@ a:hover {
color: #848484;
}
h1#logo {
h1#logo,
h1#logo a:link {
font-size: 5rem;
text-decoration: line-through;
text-shadow: 4px 4px #848484;
}
@media (min-width: 80.0rem) {
h1#logo {
h1#logo,
h1#logo a:link {
font-size: 7rem;
}
}
@ -134,6 +139,10 @@ footer a {
text-decoration: line-through;
}
footer span {
background-color: #ffffff;
}
section.article_content {
padding-bottom: 15px;
padding-left: 0px;