Merge 2a89271d45
into 225c8c2fd0
This commit is contained in:
commit
89947d5fc2
5 changed files with 441 additions and 32 deletions
|
@ -59,8 +59,8 @@ a:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
color: @light-grey;
|
color: @base00;
|
||||||
background-color: @light-grey;
|
background-color: @base00;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
border: none;
|
border: none;
|
||||||
margin-top: 40px;
|
margin-top: 40px;
|
||||||
|
|
389
static/stylesheet/style.min.css
vendored
389
static/stylesheet/style.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -1,52 +1,52 @@
|
||||||
// Flex colors
|
// solarized colors
|
||||||
@orange: #D9411E;
|
@base02: #073642;
|
||||||
@light-orange: #FF5A09;
|
@base1: #93a1a1;
|
||||||
@white: #ffffff;
|
@base3: #fdf6e3;
|
||||||
@grey: #333333;
|
@base01: #586e75;
|
||||||
@light-grey: #eeeeee;
|
@base00: #657b83;
|
||||||
@med-grey: #999999;
|
@base02: #073642;
|
||||||
@dark-grey: #242121;
|
@base03: #002b36;
|
||||||
|
|
||||||
// Font family
|
// Font family
|
||||||
@sans: 'Source Sans Pro', 'Verdana', sans-serif;
|
@sans: 'Source Sans Pro', 'Verdana', sans-serif;
|
||||||
@mono: 'Source Code Pro', 'Consolas', monospace;
|
@mono: 'Source Code Pro', 'Consolas', monospace;
|
||||||
|
|
||||||
// Body
|
// Body
|
||||||
@body-bg: @white;
|
@body-bg: @base3;
|
||||||
@text-color: @dark-grey;
|
@text-color: @base03;
|
||||||
|
|
||||||
// Links
|
// Links
|
||||||
@link-color: @orange;
|
@link-color: @base02;
|
||||||
@link-hover-color: @light-orange;
|
@link-hover-color: @base1;
|
||||||
|
|
||||||
// Sidebar (aside)
|
// Sidebar (aside)
|
||||||
@sidebar-bg: @grey;
|
@sidebar-bg: @base01;
|
||||||
@sidebar-text-color: @white;
|
@sidebar-text-color: @base3;
|
||||||
@sidebar-link-color: @white;
|
@sidebar-link-color: @base3;
|
||||||
@sidebar-link-hover-color: @light-grey;
|
@sidebar-link-hover-color: @base00;
|
||||||
|
|
||||||
// Buttons
|
// Buttons
|
||||||
@btn-bg: @orange;
|
@btn-bg: @base02;
|
||||||
@btn-text-color: @white;
|
@btn-text-color: @base3;
|
||||||
@btn-hover-color: @light-orange;
|
@btn-hover-color: @base1;
|
||||||
|
|
||||||
// Tag cloud
|
// Tag cloud
|
||||||
@tag-bg: @orange;
|
@tag-bg: @base02;
|
||||||
@tag-text-color: @white;
|
@tag-text-color: @base3;
|
||||||
@tag-hover-color: @light-orange;
|
@tag-hover-color: @base1;
|
||||||
|
|
||||||
// Header
|
// Header
|
||||||
@header-text-color: @med-grey;
|
@header-text-color: @base02;
|
||||||
|
|
||||||
// Footer
|
// Footer
|
||||||
@footer-text-color: @med-grey;
|
@footer-text-color: @base02;
|
||||||
@footer-border-color: @light-grey;
|
@footer-border-color: @base00;
|
||||||
|
|
||||||
// Relativer posts
|
// Relativer posts
|
||||||
@rel-post-border-color: @light-grey;
|
@rel-post-border-color: @base00;
|
||||||
|
|
||||||
// Nav
|
// Nav
|
||||||
@nav-border-color: @light-grey;
|
@nav-border-color: @base00;
|
||||||
|
|
||||||
// Social buttons
|
// Social buttons
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,24 @@
|
||||||
<link rel="icon" href="{{ FAVICON }}" type="image/x-icon">
|
<link rel="icon" href="{{ FAVICON }}" type="image/x-icon">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if EXTENDED_FAVICON_DIR %}
|
||||||
|
<link rel="apple-touch-icon" sizes="57x57" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-57x57.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="60x60" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-60x60.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="72x72" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-72x72.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="76x76" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-76x76.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="114x114" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-114x114.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="120x120" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-120x120.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="144x144" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-144x144.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="152x152" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-152x152.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-180x180.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="192x192" href="{{ EXTENDED_FAVICON_DIR }}/android-icon-192x192.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ EXTENDED_FAVICON_DIR }}/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="96x96" href="{{ EXTENDED_FAVICON_DIR }}/favicon-96x96.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ EXTENDED_FAVICON_DIR }}/favicon-16x16.png">
|
||||||
|
<link rel="manifest" href="/manifest.json">
|
||||||
|
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<meta name="HandheldFriendly" content="True" />
|
<meta name="HandheldFriendly" content="True" />
|
||||||
|
@ -54,6 +72,8 @@
|
||||||
<!-- iOS Safari -->
|
<!-- iOS Safari -->
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||||
|
<!--> Microsoft EDGE -->
|
||||||
|
<meta name="msapplication-TileColor" content="{{ BROWSER_COLOR }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% block meta %}
|
{% block meta %}
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
<p>{{ _('Powered by %(pelican_url)s - %(flex_url)s theme by %(alexandrevicenzi_url)s',
|
<p>{{ _('powered by %(pelican_url)s - %(flex_url)s theme by %(alexandrevicenzi_url)s - modified by %(ricoullmann_url)s - Source: %(flex_ricoullmann_url)s',
|
||||||
pelican_url='<a href="http://getpelican.com" target="_blank">Pelican</a>',
|
pelican_url='<a href="http://getpelican.com" target="_blank">Pelican</a>',
|
||||||
flex_url='<a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a>'|safe,
|
flex_url='<a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a>'|safe,
|
||||||
alexandrevicenzi_url='<a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a>'|safe) }}</p>
|
alexandrevicenzi_url='<a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a>'|safe,
|
||||||
|
ricoullmann_url='<a href="https://erinnerungsfragmente.de" target="_blank">Rico Ullmann</a>'|safe,
|
||||||
|
flex_ricoullmann_url='<a href="https://erinnerungsfragmente.de" target="_blank">pelican-theme-flex</a>'|safe) }}</p>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue