changed font to roboto

This commit is contained in:
Marvin Steadfast 2018-12-17 11:59:18 +01:00
parent 304e263d86
commit a0ff79483d
2 changed files with 6 additions and 14 deletions

View File

@ -1,18 +1,7 @@
@font-face{
font-family: 'Fira Mono';
src: url('/theme/fonts/FiraMono-Regular.eot');
src: url('/theme/fonts/FiraMono-Regular.eot') format('embedded-opentype'),
url('/theme/fonts/FiraMono-Regular.woff2') format('woff2'),
url('/theme/fonts/FiraMono-Regular.woff') format('woff'),
url('/theme/fonts/FiraMono-Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}
body { body {
background: #ffffff; background: #ffffff;
height: 100%; height: 100%;
font-family: Fira Mono, monospace; font-family: Roboto Mono, monospace;
font-style: normal; font-style: normal;
font-size: 1.5em; font-size: 1.5em;
} }
@ -28,6 +17,7 @@ a:hover {
h1 { h1 {
color: #000000; color: #000000;
margin-top: 75px; margin-top: 75px;
font-family: 'Roboto Slab', serif;
} }
h1 a { h1 a {
@ -36,6 +26,7 @@ h1 a {
h2 { h2 {
color: #000000; color: #000000;
font-family: 'Roboto Slab', serif;
} }
hr { hr {
@ -79,12 +70,12 @@ figcaption {
} }
#tipue_search_input { #tipue_search_input {
font-family: Fira Mono, monospace; font-family: Roboto 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: Fira Mono, monospace; font-family: Roboto Mono, monospace;
} }
.tipue_search_content_title a, .tipue_search_content_url a { .tipue_search_content_title a, .tipue_search_content_url a {

View File

@ -11,6 +11,7 @@
<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/nemo.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=Roboto+Mono|Roboto+Slab" rel="stylesheet">
{% if CUSTOM_CSS %} {% if CUSTOM_CSS %}
<link href="{{ SITEURL }}/{{ CUSTOM_CSS }}" rel="stylesheet"> <link href="{{ SITEURL }}/{{ CUSTOM_CSS }}" rel="stylesheet">
{% endif %} {% endif %}