<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*  This file is part of Mura CMS (www.getmura.com).

    Mura CMS is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, Version 2 of the License.

    Mura CMS is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Mura CMS.  If not, see &lt;http://www.gnu.org/licenses/&gt;.

*/

/*
	typography.css
	These styles control type styles on the front-end of a site as well as in the editor on the back-end,
	allowing consistent typographic display in both places and elimintaing the need to edit 2 stylesheets.

	If you prefer to have a single .css file (and not use this file),
	just comment out or remove the '@import url(typography.css);' line in style.css
	and add your type styles into your preferred stylesheet (usually 'site.css').
*/

/*	Some styles, ideas, and concepts derived from:

	Eric Meyer Reset - http://meyerweb.com/eric/tools/css/reset/index.html
	BlueprintCSS - http://code.google.com/p/blueprintcss/
	YUI - http://developer.yahoo.com/yui/
*/

/*
@import url("https://fonts.googleapis.com/css?family=Heebo");
@import url("https://fonts.googleapis.com/css?family=Domine");
*/

/* #6539: DSGVO-konforme Einbindung der Google-Fonts */

/* heebo-regular - latin */
@font-face {
  font-family: 'Heebo';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/google-fonts/heebo-v5-latin/heebo-v5-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Heebo'), local('Heebo-Regular'),
       url('../assets/google-fonts/heebo-v5-latin/heebo-v5-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../assets/google-fonts/heebo-v5-latin/heebo-v5-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../assets/google-fonts/heebo-v5-latin/heebo-v5-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../assets/google-fonts/heebo-v5-latin/heebo-v5-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../assets/google-fonts/heebo-v5-latin/heebo-v5-latin-regular.svg#Heebo') format('svg'); /* Legacy iOS */
}

/* domine-regular - latin */
@font-face {
  font-family: 'Domine';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/google-fonts/domine-v7-latin/domine-v7-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Domine'), local('Domine-Regular'),
       url('../assets/google-fonts/domine-v7-latin/domine-v7-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../assets/google-fonts/domine-v7-latin/domine-v7-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../assets/google-fonts/domine-v7-latin/domine-v7-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../assets/google-fonts/domine-v7-latin/domine-v7-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../assets/google-fonts/domine-v7-latin/domine-v7-latin-regular.svg#Domine') format('svg'); /* Legacy iOS */
}

/* Standardschrift */

body {
	font-family: "Heebo", sans-serif;
	font-size: 18px;
	color: #222524;
}

/* EOF */
</pre></body></html>