fantasque

This commit is contained in:
Marvin Steadfast 2019-01-23 09:10:47 +01:00
parent a62cd4b631
commit 9488d71599
7 changed files with 2652 additions and 9 deletions

View File

@ -1,7 +1,7 @@
body { body {
background: #ffffff; background: #ffffff;
height: 100%; height: 100%;
font-family: IBM Plex Mono, monospace; font-family: Fantasque Sans Mono, monospace;
font-style: normal; font-style: normal;
font-size: 1.5em; font-size: 1.5em;
} }
@ -17,8 +17,7 @@ a:hover {
h1 { h1 {
color: #000000; color: #000000;
margin-top: 75px; margin-top: 75px;
font-family: 'IBM Plex Mono', monospace; font-family: 'Fantasque Sans Mono', monospace;
font-style: italic;
font-weight: 300 font-weight: 300
} }
@ -28,8 +27,7 @@ h1 a {
h2 { h2 {
color: #000000; color: #000000;
font-family: 'IBM Plex Mono', monospace; font-family: 'Fantasque Sans Mono', monospace;
font-style: italic;
font-weight: 300 font-weight: 300
} }
@ -74,12 +72,12 @@ figcaption {
} }
#tipue_search_input { #tipue_search_input {
font-family: IBM Plex Mono, monospace; font-family: Fantasque Sans Mono, monospace;
padding: 0px; padding: 0px;
} }
#tipue_search_results_count, .tipue_search_content_title a, .tipue_search_content_url a, .tipue_search_content_text, #tipue_search_warning { #tipue_search_results_count, .tipue_search_content_title a, .tipue_search_content_url a, .tipue_search_content_text, #tipue_search_warning {
font-family: IBM Plex Mono, monospace; font-family: Fantasque Sans Mono, monospace;
} }
.tipue_search_content_title a, .tipue_search_content_url a { .tipue_search_content_title a, .tipue_search_content_url a {

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 318 KiB

View File

@ -9,9 +9,8 @@
{% block styles %} {% block styles %}
<link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/normalize.css"> <link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/normalize.css">
<link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/skeleton.css"> <link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/skeleton.css">
<link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/nemo.css"> <link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/diana.css">
<link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/pygment.css"> <link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/pygment.css">
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono:300i,400" rel="stylesheet">
{% if CUSTOM_CSS %} {% if CUSTOM_CSS %}
<link href="{{ SITEURL }}/{{ CUSTOM_CSS }}" rel="stylesheet"> <link href="{{ SITEURL }}/{{ CUSTOM_CSS }}" rel="stylesheet">
{% endif %} {% endif %}