[TASK] update and formatting

This commit is contained in:
TLRZ Seyfferth
2020-01-28 10:41:16 +01:00
parent 9c121fbcc5
commit 571576756e
41 changed files with 7430 additions and 21 deletions
File diff suppressed because it is too large Load Diff
+4 -4
View File
@@ -3,7 +3,7 @@
:root {
--fore-color: black;
--secondary-fore-color: slategray;
--back-color: rgb(241, 241, 241);
--back-color: rgb(255, 255, 255);
--secondary-back-color: #222;
--blockquote-color: #f57c00;
--pre-color: #1565c0;
@@ -16,7 +16,7 @@
--a-link-color: #0277bd;
--a-visited-color: #01579b;
--nav-back-color: var(--back-color);
--nav-back-color: rgba(0, 0, 0, 0.05);
--nav-hover-back-color: rgba(0, 0, 0, 0.3);
--nav-fore-color: var(--fore-color);
--nav-border-color: var(--border-color);
@@ -26,8 +26,6 @@
html {
background-color: var(--back-color);
font-family: 'Lato', sans-serif;
font-size: 16px;
line-height: 1.2;
}
.container {
@@ -50,6 +48,8 @@ html {
header {
grid-column: 2 / span 2;
background: transparent;
border-bottom: 0;
}
h1,
+23
View File
@@ -0,0 +1,23 @@
<svg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
<!-- Created with Method Draw - http://github.com/duopixel/Method-Draw/ -->
<defs>
<filter height="200%" width="200%" y="-50%" x="-50%" id="svg_8_blur">
<feGaussianBlur stdDeviation="5" in="SourceGraphic"/>
</filter>
<filter height="200%" width="200%" y="-50%" x="-50%" id="svg_9_blur">
<feGaussianBlur stdDeviation="6" in="SourceGraphic"/>
</filter>
</defs>
<g>
<title>background</title>
<rect fill="none" id="canvas_background" height="402" width="402" y="-1" x="-1"/>
<g display="none" overflow="visible" y="0" x="0" height="100%" width="100%" id="canvasGrid">
<rect fill="url(#gridpattern)" stroke-width="0" y="0" x="0" height="100%" width="100%"/>
</g>
</g>
<g>
<title>chrosey.de</title>
<path filter="url(#svg_9_blur)" stroke="#000" id="svg_9" d="m16,212.567831l182.75122,-180.567832l182.75122,180.567832l-182.75122,180.567832l-182.75122,-180.567832z" stroke-opacity="null" fill="#ffffff"/>
<path filter="url(#svg_8_blur)" stroke="#000" id="svg_8" d="m148.59135,167.000001c0.64762,-1 87.42912,51 87.10531,51l-21.85728,78.125l-21.85728,76.875l-181.9821,-183c0,0 181.9821,-180 181.65829,-180c0.32381,0 49.54317,48 49.21935,48c0.16191,0 -3.64288,7.75 -7.52861,15.5c-3.88574,7.75 -7.85243,15.5 -8.01434,15.5l-33.00253,-27l-43.74081,105z" stroke-opacity="null" stroke-width="2" fill="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

+15 -6
View File
@@ -7,7 +7,12 @@
<meta name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no" />
<title>{% if meta.title %}{{ meta.title }} | {% endif %}{{ site_title }}</title>
<title>
{% if meta.title %}
{{ meta.title }}
|
{% endif %}
{{ site_title }}</title>
{% if meta.description %}
<meta name="description"
content="{{ meta.description|striptags }}" />
@@ -23,7 +28,7 @@
{% endif %}
<link rel="stylesheet"
href="{{ theme_url }}/css/normalize.css">
href="{{ theme_url }}/css/mini-default.css">
<link rel="stylesheet"
href="{{ theme_url }}/css/style.css"
type="text/css" />
@@ -34,9 +39,12 @@
<body class="container">
<header>
<a href="{{ "index"|link }}">
<img src="{{ pages["_meta"].meta.logo|url }}"
alt="" />
<a href="{{ "index"|link }}"
class="logo">
<img src="{{ theme_url }}/img/logo.svg "
alt=""
height="32"
width="32" />
<span class="site-title">{{ site_title }}</span>
</a>
</header>
@@ -62,9 +70,10 @@
{{ content }}
</section>
{% endblock %}
</main>
<footer>
{% block footer %} {% endblock %}
{% block footer %}{% endblock %}
</footer>
<script src="{{ theme_url }}/js/site.js"
type="text/javascript"></script>