Maywood: migrate theme specific stylesheets

This commit is contained in:
Andrés 2019-09-25 14:00:42 +02:00
parent a776002532
commit 5ff1c17948
2 changed files with 4 additions and 2 deletions

View file

@ -338,7 +338,8 @@ a {
.widget_links li, .widget_links li,
.widget_jp_blogs_i_follow li, .widget_jp_blogs_i_follow li,
.widget_rss_links li { .widget_rss_links li {
font-family: inherit; font-family: inherit; // for browsers without CSS custom properties support
font-family: var( --font-base, inherit );
} }
/** /**

View file

@ -34,7 +34,8 @@ Andreas Hecht in https://www.jotform.com/blog/css-perfect-print-stylesheet-98272
/* Fonts */ /* Fonts */
body { body {
font: 13pt Georgia, "Times New Roman", Times, serif; font: 13pt Georgia, "Times New Roman", Times, serif; // for browsers without CSS custom properties support
font: 13pt var( --font-base, 'Georgia, "Times New Roman", Times, serif' );
line-height: 1.3; line-height: 1.3;
background: #fff !important; background: #fff !important;
color: #000; color: #000;