Try using opensans
This commit is contained in:
parent
0f58429930
commit
9540b3cf6b
7 changed files with 1847 additions and 4 deletions
|
@ -6,8 +6,8 @@
|
||||||
<title>{$config.title}</title>
|
<title>{$config.title}</title>
|
||||||
<meta http-equiv="content-type" content="text/html; charset={$config.charset}" />
|
<meta http-equiv="content-type" content="text/html; charset={$config.charset}" />
|
||||||
<meta name="viewport" content="initial-scale=1" />
|
<meta name="viewport" content="initial-scale=1" />
|
||||||
<link href="http://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet" type="text/css" />
|
|
||||||
<link rel="stylesheet" media="screen" href="{$config.domain}/css/fonts/fantasque-sans-mono/stylesheet.css" type="text/css"/>
|
<link rel="stylesheet" media="screen" href="{$config.domain}/css/fonts/fantasque-sans-mono/stylesheet.css" type="text/css"/>
|
||||||
|
<link rel="stylesheet" media="screen" href="{$config.domain}/css/fonts/opensans_regular_macroman/stylesheet.css" type="text/css"/>
|
||||||
<link href="{$config.domain}/css/style.css" rel="stylesheet" type="text/css" />
|
<link href="{$config.domain}/css/style.css" rel="stylesheet" type="text/css" />
|
||||||
<link href="{$config.domain}/css/org.css" rel="stylesheet" type="text/css" />
|
<link href="{$config.domain}/css/org.css" rel="stylesheet" type="text/css" />
|
||||||
<link rel="alternate" href="{$config.domain}/rss.xml" type="application/rss+xml" />
|
<link rel="alternate" href="{$config.domain}/rss.xml" type="application/rss+xml" />
|
||||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 117 KiB |
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,12 @@
|
||||||
|
@font-face {
|
||||||
|
font-family: 'open_sansregular';
|
||||||
|
src: url('OpenSans-Regular-webfont.eot');
|
||||||
|
src: url('OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
|
||||||
|
url('OpenSans-Regular-webfont.woff') format('woff'),
|
||||||
|
url('OpenSans-Regular-webfont.ttf') format('truetype'),
|
||||||
|
url('OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
body {
|
body {
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
color: #111111;
|
color: #111111;
|
||||||
font-family: 'Roboto', sans-serif;
|
font-family: 'open_sansregular', sans-serif;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
line-height: 1.2em;
|
line-height: 1.2em;
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
|
@ -24,7 +24,7 @@ a:visited { color: #f012be; }
|
||||||
|
|
||||||
pre, code, tt { font-family: 'FantasqueSansMono-Regular'; }
|
pre, code, tt { font-family: 'FantasqueSansMono-Regular'; }
|
||||||
|
|
||||||
h1 { font-size: 1.6em; font-family: 'Roboto'; font-weight: 700; text-align: center; }
|
h1 { font-size: 1.6em; font-family: 'open_sansregular', sans-serif; font-weight: 700; text-align: center; }
|
||||||
h2 { font-size: 1.5em; }
|
h2 { font-size: 1.5em; }
|
||||||
h3 { font-size: 1.4em; }
|
h3 { font-size: 1.4em; }
|
||||||
h4 { font-size: 1.3em; }
|
h4 { font-size: 1.3em; }
|
||||||
|
@ -46,7 +46,7 @@ article .article-content { margin-left: 2em; }
|
||||||
article h1 small {
|
article h1 small {
|
||||||
display: block;
|
display: block;
|
||||||
font-size: 0.6em;
|
font-size: 0.6em;
|
||||||
font-family: 'Roboto', sans-serif;
|
font-family: 'open_sansregular', sans-serif;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue