Compare commits
41 Commits
Author | SHA1 | Date | |
---|---|---|---|
618eba0e2f | |||
dc89697827 | |||
24f12d1656 | |||
1be2a199e3 | |||
0e30340610 | |||
53c55fe95c | |||
c068736354 | |||
03d79be55e | |||
b4aba43c97 | |||
f8be958835 | |||
cc40f640e2 | |||
5f3d55ef7a | |||
2ef2ff68bf | |||
d93a50d48b | |||
49e774889c | |||
5234629a60 | |||
788c8ebff0 | |||
bf1dd0e9d4 | |||
b5021db970 | |||
85b74ea393 | |||
fa61f74ce9 | |||
2b847c0530 | |||
75c3ad7f1b | |||
701746c102 | |||
4f1ff59839 | |||
2faa6612b7 | |||
43d1e2723f | |||
d6fec8d50f | |||
fd4aebe2e2 | |||
73fc435125 | |||
802bb02c63 | |||
21d2a929a9 | |||
e4ce16b517 | |||
e8080571bd | |||
61a960d03f | |||
2d5ce92bab | |||
586b52bb21 | |||
9ca4564cb2 | |||
820b222f8e | |||
1fb478234a | |||
1c7055de76 |
@ -1,4 +1,4 @@
|
||||
Copyright (c) 2013 The Ghost Foundation
|
||||
Copyright (c) 2013 Ghost Foundation - Released under The MIT License.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
|
@ -1,10 +1,10 @@
|
||||
# Casper v0.2.0
|
||||
# Casper
|
||||
|
||||
The default theme for [Ghost](http://github.com/tryghost/ghost/).
|
||||
|
||||
## Copyright & License
|
||||
|
||||
Copyright (C) 2013 The Ghost Foundation - Released under the MIT Lincense.
|
||||
Copyright (C) 2013 Ghost Foundation - Released under the MIT Lincense.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
|
406
assets/css/normalize.css
vendored
Normal file
@ -0,0 +1,406 @@
|
||||
/*! normalize.css v2.1.2 | MIT License | git.io/normalize */
|
||||
|
||||
/* ==========================================================================
|
||||
HTML5 display definitions
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Correct `block` display not defined in IE 8/9.
|
||||
*/
|
||||
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
main,
|
||||
nav,
|
||||
section,
|
||||
summary {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct `inline-block` display not defined in IE 8/9.
|
||||
*/
|
||||
|
||||
audio,
|
||||
canvas,
|
||||
video {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent modern browsers from displaying `audio` without controls.
|
||||
* Remove excess height in iOS 5 devices.
|
||||
*/
|
||||
|
||||
audio:not([controls]) {
|
||||
display: none;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `[hidden]` styling not present in IE 8/9.
|
||||
* Hide the `template` element in IE, Safari, and Firefox < 22.
|
||||
*/
|
||||
|
||||
[hidden],
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Base
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Set default font family to sans-serif.
|
||||
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
||||
* user zoom.
|
||||
*/
|
||||
|
||||
html {
|
||||
font-family: sans-serif; /* 1 */
|
||||
-ms-text-size-adjust: 100%; /* 2 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove default margin.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Links
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the gray background color from active links in IE 10.
|
||||
*/
|
||||
|
||||
a {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `outline` inconsistency between Chrome and other browsers.
|
||||
*/
|
||||
|
||||
a:focus {
|
||||
outline: thin dotted;
|
||||
}
|
||||
|
||||
/**
|
||||
* Improve readability when focused and also mouse hovered in all browsers.
|
||||
*/
|
||||
|
||||
a:active,
|
||||
a:hover {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Typography
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address variable `h1` font-size and margin within `section` and `article`
|
||||
* contexts in Firefox 4+, Safari 5, and Chrome.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 8/9, Safari 5, and Chrome.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: 1px dotted;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in Safari 5 and Chrome.
|
||||
*/
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address differences between Firefox and other browsers.
|
||||
*/
|
||||
|
||||
hr {
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 8/9.
|
||||
*/
|
||||
|
||||
mark {
|
||||
background: #ff0;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct font family set oddly in Safari 5 and Chrome.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {
|
||||
font-family: monospace, serif;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
/**
|
||||
* Improve readability of pre-formatted text in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set consistent quote types.
|
||||
*/
|
||||
|
||||
q {
|
||||
quotes: "\201C" "\201D" "\2018" "\2019";
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent and variable font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove border when inside `a` element in IE 8/9.
|
||||
*/
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct overflow displayed oddly in IE 9.
|
||||
*/
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Figures
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address margin not present in IE 8/9 and Safari 5.
|
||||
*/
|
||||
|
||||
figure {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Define consistent border, margin, and padding.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
border: 1px solid #c0c0c0;
|
||||
margin: 0 2px;
|
||||
padding: 0.35em 0.625em 0.75em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct `color` not being inherited in IE 8/9.
|
||||
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
||||
*/
|
||||
|
||||
legend {
|
||||
border: 0; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct font family not being inherited in all browsers.
|
||||
* 2. Correct font size not being inherited in all browsers.
|
||||
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
font-family: inherit; /* 1 */
|
||||
font-size: 100%; /* 2 */
|
||||
margin: 0; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
||||
* the UA stylesheet.
|
||||
*/
|
||||
|
||||
button,
|
||||
input {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
||||
* All other form control elements do not inherit `text-transform` values.
|
||||
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
|
||||
* Correct `select` style inheritance in Firefox 4+ and Opera.
|
||||
*/
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
||||
* and `video` controls.
|
||||
* 2. Correct inability to style clickable `input` types in iOS.
|
||||
* 3. Improve usability and consistency of cursor style between image-type
|
||||
* `input` and others.
|
||||
*/
|
||||
|
||||
button,
|
||||
html input[type="button"], /* 1 */
|
||||
input[type="reset"],
|
||||
input[type="submit"] {
|
||||
-webkit-appearance: button; /* 2 */
|
||||
cursor: pointer; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Re-set default cursor for disabled elements.
|
||||
*/
|
||||
|
||||
button[disabled],
|
||||
html input[disabled] {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Address box sizing set to `content-box` in IE 8/9.
|
||||
* 2. Remove excess padding in IE 8/9.
|
||||
*/
|
||||
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
|
||||
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
|
||||
* (include `-moz` to future-proof).
|
||||
*/
|
||||
|
||||
input[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
-moz-box-sizing: content-box;
|
||||
-webkit-box-sizing: content-box; /* 2 */
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and search cancel button in Safari 5 and Chrome
|
||||
* on OS X.
|
||||
*/
|
||||
|
||||
input[type="search"]::-webkit-search-cancel-button,
|
||||
input[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and border in Firefox 4+.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
input::-moz-focus-inner {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Remove default vertical scrollbar in IE 8/9.
|
||||
* 2. Improve readability and alignment in all browsers.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto; /* 1 */
|
||||
vertical-align: top; /* 2 */
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Tables
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove most spacing between table cells.
|
||||
*/
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
900
assets/css/screen.css
Normal file
@ -0,0 +1,900 @@
|
||||
/* ==========================================================================
|
||||
Table of Contents
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
0. Includes
|
||||
1. General
|
||||
2. Something else
|
||||
*/
|
||||
|
||||
/* ==========================================================================
|
||||
0. Includes - Ground zero
|
||||
========================================================================== */
|
||||
|
||||
@import url(normalize.css);
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
1. Icons - Sets up the icon font and respective classes
|
||||
========================================================================== */
|
||||
|
||||
/* Import the font file with the icons in it */
|
||||
@font-face {
|
||||
font-family: 'icons';
|
||||
src:url('../fonts/icons.eot');
|
||||
src:url('../fonts/icons.eot?#iefix') format('embedded-opentype'),
|
||||
url('../fonts/icons.woff') format('woff'),
|
||||
url('../fonts/icons.ttf') format('truetype'),
|
||||
url('../fonts/icons.svg#icons') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* Apply these base styles to all icons */
|
||||
.icon-ghost, .icon-feed, .icon-twitter, .icon-google-plus, .icon-facebook {
|
||||
font-family: 'icons';
|
||||
speak: none;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Each icon is created by inserting the corret character into the
|
||||
content of the :before pseudo element. Like a boss. */
|
||||
.icon-ghost:before {
|
||||
content: "\e000";
|
||||
}
|
||||
.icon-feed:before {
|
||||
content: "\e001";
|
||||
}
|
||||
.icon-twitter:before {
|
||||
content: "\e002";
|
||||
font-size: 1.1em;
|
||||
}
|
||||
.icon-google-plus:before {
|
||||
content: "\e003";
|
||||
}
|
||||
.icon-facebook:before {
|
||||
content: "\e004";
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
1. General - Setting up some base styles
|
||||
========================================================================== */
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
max-height: 100%;
|
||||
font-size: 62.5%;
|
||||
}
|
||||
|
||||
body {
|
||||
height: 100%;
|
||||
max-height: 100%;
|
||||
font-family: 'Droid Serif', serif;
|
||||
font-size: 2.0rem;
|
||||
line-height: 1.6em;
|
||||
color: #3A4145;
|
||||
}
|
||||
|
||||
::-moz-selection {
|
||||
color: #222;
|
||||
background: #D6EDFF;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
::selection {
|
||||
color: #222;
|
||||
background: #D6EDFF;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
h1, h2, h3,
|
||||
h4, h5, h6 {
|
||||
text-rendering: optimizeLegibility;
|
||||
line-height: 1;
|
||||
margin-top: 0;
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 5rem;
|
||||
line-height: 1.2em;
|
||||
letter-spacing: -2px;
|
||||
text-indent: -3px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 4rem;
|
||||
line-height: 1.2em;
|
||||
letter-spacing: -1px;
|
||||
text-indent: -2px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #4a4a4a;
|
||||
transition: color ease 0.3s;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #57A3E8;
|
||||
}
|
||||
|
||||
h1 a, h2 a, h3 a,
|
||||
h4 a, h5 a, h6 a {
|
||||
color: #50585D;
|
||||
}
|
||||
|
||||
|
||||
p, ul, ol {
|
||||
margin: 1.6em 0;
|
||||
}
|
||||
|
||||
ol ol, ul ul,
|
||||
ul ol, ol ul {
|
||||
margin: 0.4em 0;
|
||||
}
|
||||
|
||||
hr {
|
||||
display: block;
|
||||
height: 1px;
|
||||
border: 0;
|
||||
border-top: 1px solid #efefef;
|
||||
margin: 3.2em 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
margin: 1.6em 0 1.6em -2.2em;
|
||||
padding: 0 0 0 1.6em;
|
||||
border-left: #4a4a4a 0.4em solid;
|
||||
}
|
||||
|
||||
blockquote p {
|
||||
margin: 0.8em 0;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
blockquote small {
|
||||
display: inline-block;
|
||||
margin: 0.8em 0 0.8em 1.5em;;
|
||||
font-size:0.9em;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
blockquote small:before { content: '\2014 \00A0'; }
|
||||
|
||||
blockquote cite {
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
blockquote cite a { font-weight: normal; }
|
||||
|
||||
|
||||
dl {
|
||||
margin: 1.6em 0;
|
||||
}
|
||||
|
||||
dl dt {
|
||||
float: left;
|
||||
width: 180px;
|
||||
overflow: hidden;
|
||||
clear: left;
|
||||
text-align: right;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
font-weight: bold;
|
||||
margin-bottom: 1em
|
||||
}
|
||||
|
||||
dl dd {
|
||||
margin-left: 200px;
|
||||
margin-bottom: 1em
|
||||
}
|
||||
|
||||
mark {
|
||||
background-color: #ffc336;
|
||||
}
|
||||
|
||||
code, tt {
|
||||
padding: 1px 3px;
|
||||
font-family: Inconsolata, monospace, sans-serif;
|
||||
font-size: 0.85em;
|
||||
white-space: pre;
|
||||
border: 1px solid #E3EDF3;
|
||||
background: #F7FAFB;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
pre {
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
margin: 1.6em 0;
|
||||
border: 1px solid #E3EDF3;
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
font-family: Inconsolata, monospace, sans-serif;
|
||||
font-size: 0.9em;
|
||||
white-space: pre;
|
||||
overflow: auto;
|
||||
background: #F7FAFB;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
pre code, tt {
|
||||
font-size: inherit;
|
||||
white-space: -moz-pre-wrap;
|
||||
white-space: pre-wrap;
|
||||
background: transparent;
|
||||
border: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
kbd {
|
||||
display: inline-block;
|
||||
margin-bottom: 0.4em;
|
||||
padding: 1px 8px;
|
||||
border: #ccc 1px solid;
|
||||
color: #666;
|
||||
text-shadow: #fff 0 1px 0;
|
||||
font-size: 0.9em;
|
||||
font-weight: bold;
|
||||
background: #f4f4f4;
|
||||
border-radius: 4px;
|
||||
box-shadow:
|
||||
0 1px 0 rgba(0, 0, 0, 0.2),
|
||||
0 1px 0 0 #fff inset;
|
||||
}
|
||||
|
||||
table {
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
margin: 1.6em 0;
|
||||
width:100%;
|
||||
max-width: 100%;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
table th,
|
||||
table td {
|
||||
padding: 8px;
|
||||
line-height: 20px;
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
border-top: 1px solid #efefef;
|
||||
}
|
||||
|
||||
table th { color: #000; }
|
||||
|
||||
table caption + thead tr:first-child th,
|
||||
table caption + thead tr:first-child td,
|
||||
table colgroup + thead tr:first-child th,
|
||||
table colgroup + thead tr:first-child td,
|
||||
table thead:first-child tr:first-child th,
|
||||
table thead:first-child tr:first-child td {
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
table tbody + tbody { border-top: 2px solid #efefef; }
|
||||
|
||||
table table table { background-color: #fff; }
|
||||
|
||||
table tbody > tr:nth-child(odd) > td,
|
||||
table tbody > tr:nth-child(odd) > th {
|
||||
background-color: #f6f6f6;
|
||||
}
|
||||
|
||||
table.plain {
|
||||
tbody > tr:nth-child(odd) > td,
|
||||
tbody > tr:nth-child(odd) > th {
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
1. Utilities - These things get used a lot
|
||||
========================================================================== */
|
||||
|
||||
/* Hides shit */
|
||||
.hidden {
|
||||
text-indent: -9999px;
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Creates a responsive wrapper that makes our content scale nicely */
|
||||
.inner {
|
||||
position: relative;
|
||||
width: 80%;
|
||||
max-width: 700px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/* Centres vertically yo. (IE8+) */
|
||||
.vertical {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
1. General
|
||||
========================================================================== */
|
||||
|
||||
/* Big cover image on the home page */
|
||||
#site-head {
|
||||
position: relative;
|
||||
display: table;
|
||||
width: 100%;
|
||||
height: 60%;
|
||||
margin-bottom: 5rem;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
background: #303538 no-repeat center center;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
/* Yo-logo. Yolo-go. Upload one in ghost/settings/ */
|
||||
#blog-logo img {
|
||||
display: block;
|
||||
max-height: 100px;
|
||||
width: auto;
|
||||
margin: 0 auto;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
#back {
|
||||
color: rgba(0,0,0,0.2);
|
||||
position: fixed;
|
||||
top: 8px;
|
||||
left: 8px;
|
||||
padding: 6px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
/* The details of your blog. Defined in ghost/settings/ */
|
||||
.blog-title {
|
||||
margin: 10px 0 10px 0;
|
||||
font-size: 5rem;
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
|
||||
.blog-description {
|
||||
margin: 0;
|
||||
font-size: 1.8rem;
|
||||
line-height: 1.5em;
|
||||
font-weight: 300;
|
||||
font-family: 'Droid Serif', serif;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
/* Every post, on every page, gets this style on its <article> tag */
|
||||
.post {
|
||||
position: relative;
|
||||
width:80%;
|
||||
max-width: 700px;
|
||||
margin: 4rem auto;
|
||||
padding-bottom: 4rem;
|
||||
border-bottom: #EBF2F6 1px solid;
|
||||
word-break: break-word;
|
||||
hyphens: auto;
|
||||
}
|
||||
|
||||
/* Add a little circle in the middle of the border-bottom on our .post
|
||||
just for the lolz and stylepoints. */
|
||||
.post:after {
|
||||
display: block;
|
||||
content: "";
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
border: #E7EEF2 1px solid;
|
||||
position: absolute;
|
||||
bottom: -5px;
|
||||
left: 50%;
|
||||
margin-left: -5px;
|
||||
background: #fff;
|
||||
-webkit-border-radius: 100%;
|
||||
-moz-border-radius: 100%;
|
||||
border-radius: 100%;
|
||||
box-shadow: #fff 0 0 0 5px;
|
||||
}
|
||||
|
||||
.post-title {
|
||||
margin:0;
|
||||
}
|
||||
|
||||
.post-title a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.post-excerpt p {
|
||||
margin: 1.6rem 0 0 0;
|
||||
font-size: 0.9em;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
.post-meta {
|
||||
display: inline-block;
|
||||
margin: 0 0 5px 0;
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
font-size: 1.5rem;
|
||||
color: #9EABB3;
|
||||
}
|
||||
|
||||
.post-meta a {
|
||||
color: #9EABB3;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.post-meta a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.user-meta {
|
||||
position: relative;
|
||||
padding: 0.3rem 40px 0 100px;
|
||||
min-height: 77px;
|
||||
}
|
||||
|
||||
.user-image {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.user-name {
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.user-bio {
|
||||
display: block;
|
||||
max-width: 440px;
|
||||
font-size: 1.4rem;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.publish-meta {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
padding: 4.3rem 0 4rem 0;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.publish-heading {
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.publish-date {
|
||||
display: block;
|
||||
font-size: 1.4rem;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
1. Single Post - When you click on an individual post
|
||||
========================================================================== */
|
||||
|
||||
/* Tweak the .post wrapper style */
|
||||
.post-template .post {
|
||||
margin-top: 0;
|
||||
border-bottom: none;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
/* Kill that stylish little circle that was on the border, too */
|
||||
.post-template .post:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Insert some mad padding up in the header for better spacing */
|
||||
.post-template .post-header {
|
||||
padding: 60px 0;
|
||||
}
|
||||
|
||||
/* Keep large images within the bounds of the post-width */
|
||||
.post-content img {
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/* The author credit area after the post */
|
||||
.post-footer {
|
||||
position: relative;
|
||||
margin: 4rem 0 0 0;
|
||||
padding: 4rem 0 0 0;
|
||||
border-top: #EBF2F6 1px solid;
|
||||
}
|
||||
|
||||
.post-footer h4 {
|
||||
font-size: 1.8rem;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.post-footer p {
|
||||
margin: 1rem 0;
|
||||
font-size: 1.4rem;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
/* Create some space to the right for the share links */
|
||||
.post-footer .author {
|
||||
margin-right: 180px;
|
||||
}
|
||||
|
||||
/* Drop the share links in the space to the right.
|
||||
Doing it like this means it's easier for the author bio
|
||||
to be flexible at smaller screen sizes while the share
|
||||
links remain at a fixed width the whole time */
|
||||
.post-footer .share {
|
||||
position: absolute;
|
||||
top: 4rem;
|
||||
right: 0;
|
||||
width: 140px;
|
||||
}
|
||||
|
||||
.post-footer .share a {
|
||||
font-size: 1.8rem;
|
||||
display: inline-block;
|
||||
margin: 1.4rem 1.6rem 1.6rem 0;
|
||||
color: #BBC7CC;
|
||||
}
|
||||
|
||||
.post-footer .share a:hover {
|
||||
color: #50585D;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
1. Pagination
|
||||
========================================================================== */
|
||||
|
||||
/* The main wrapper for our pagination links */
|
||||
.pagination {
|
||||
position: relative;
|
||||
width: 80%;
|
||||
max-width: 700px;
|
||||
margin: 4rem auto;
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
font-size: 1.3rem;
|
||||
color: #9EABB3;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.pagination a {
|
||||
color: #9EABB3;
|
||||
}
|
||||
|
||||
/* Push the previous/next links out to the left/right */
|
||||
.older-posts,
|
||||
.newer-posts {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
padding: 0 15px;
|
||||
border: #EBF2F6 2px solid;
|
||||
text-decoration: none;
|
||||
border-radius: 30px;
|
||||
transition: border ease 0.3s;
|
||||
}
|
||||
|
||||
.older-posts {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.page-number {
|
||||
display: inline-block;
|
||||
padding: 2px 0;
|
||||
}
|
||||
|
||||
.newer-posts {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.older-posts:hover,
|
||||
.newer-posts:hover {
|
||||
border-color: #9EABB3;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
1. Footer - The bottom of every page
|
||||
========================================================================== */
|
||||
|
||||
.site-footer {
|
||||
position: relative;
|
||||
margin: 8rem 0 0 0;
|
||||
padding: 4rem 0;
|
||||
border-top: #EBF2F6 1px solid;
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
font-size: 1.3rem;
|
||||
line-height: 1.7em;
|
||||
color: #BBC7CC;
|
||||
text-align: center;
|
||||
background: #F7FAFB;
|
||||
}
|
||||
|
||||
.site-footer a {
|
||||
color: #BBC7CC;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.site-footer a:hover {
|
||||
color: #50585D;
|
||||
}
|
||||
|
||||
.poweredby .icon-ghost {
|
||||
font-weight: 700;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.poweredby .icon-ghost:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.poweredby .icon-ghost:before {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.2em;
|
||||
}
|
||||
|
||||
/* The subscribe icon on the footer */
|
||||
.subscribe {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
position: absolute;
|
||||
top: -14px;
|
||||
left: 50%;
|
||||
margin-left: -15px;
|
||||
border: #EBF2F6 1px solid;
|
||||
text-align: center;
|
||||
line-height: 2.4rem;
|
||||
border-radius: 50px;
|
||||
background: #fff;
|
||||
transition: box-shadow 0.5s;
|
||||
}
|
||||
|
||||
/* The RSS icon, inserted via icon font */
|
||||
.subscribe:before {
|
||||
color: #D2DEE3;
|
||||
font-size: 10px;
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
left: 9px;
|
||||
font-weight: bold;
|
||||
transition: color 0.5s ease;
|
||||
}
|
||||
|
||||
/* Add a box shadow to on hover */
|
||||
.subscribe:hover {
|
||||
box-shadow: rgba(0,0,0,0.05) 0 0 0 3px;
|
||||
transition: box-shadow 0.25s;
|
||||
}
|
||||
|
||||
.subscribe:hover:before {
|
||||
color: #50585D;
|
||||
}
|
||||
|
||||
/* CSS tooltip saying "Subscribe!" - initially hidden */
|
||||
.tooltip {
|
||||
opacity:0;
|
||||
display: inline-block;
|
||||
padding: 4px 8px 5px 8px;
|
||||
position:absolute;
|
||||
top: -23px;
|
||||
left: -23px;
|
||||
color: rgba(255,255,255,0.9);
|
||||
font-size: 1.1rem;
|
||||
font-weight: bold;
|
||||
line-height: 1em;
|
||||
text-align: center;
|
||||
background: #50585D;
|
||||
border-radius:20px;
|
||||
box-shadow: 0 1px 4px rgba(0,0,0,0.1);
|
||||
transition: opacity 0.3s ease, top 0.3s ease;
|
||||
}
|
||||
|
||||
/* The little chiclet arrow under the tooltip, pointing down */
|
||||
.tooltip:after {
|
||||
content:"";
|
||||
border-width:5px 5px 0 5px;
|
||||
border-style:solid;
|
||||
border-color: #50585D transparent;
|
||||
display:block;
|
||||
position:absolute;
|
||||
bottom:-4px;
|
||||
left:50%;
|
||||
margin-left:-5px;
|
||||
z-index: 220;
|
||||
width:0;
|
||||
}
|
||||
|
||||
/* On hover, show the tooltip! */
|
||||
.subscribe:hover .tooltip {
|
||||
opacity: 1;
|
||||
top: -33px;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
1. Media Queries - Smaller than 900px
|
||||
========================================================================== */
|
||||
|
||||
@media only screen and (max-width: 900px) {
|
||||
|
||||
blockquote {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
#site-head {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
height: auto;
|
||||
min-height: 240px;
|
||||
padding: 15% 0;
|
||||
}
|
||||
|
||||
.blog-title {
|
||||
font-size: 4rem;
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
|
||||
.blog-description {
|
||||
font-size: 1.7rem;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.post {
|
||||
font-size: 0.9em;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
.post-template .post {
|
||||
padding-bottom: 1rem;
|
||||
}
|
||||
|
||||
.post-template .post-header {
|
||||
padding: 40px 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 4.8rem;
|
||||
text-indent: -2px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 3.8rem;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 3.3rem;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 2.8rem;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
1. Media Queries - Smaller than 500px
|
||||
========================================================================== */
|
||||
|
||||
|
||||
@media only screen and (max-width: 500px) {
|
||||
|
||||
#blog-logo img {
|
||||
max-height: 80px;
|
||||
}
|
||||
|
||||
.inner,
|
||||
.pagination {
|
||||
width: auto;
|
||||
margin-left: 16px;
|
||||
margin-right: 16px;
|
||||
}
|
||||
|
||||
.post {
|
||||
width:auto;
|
||||
margin-left: 16px;
|
||||
margin-right: 16px;
|
||||
font-size: 0.8em;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
#site-head {
|
||||
padding: 10% 0;
|
||||
}
|
||||
|
||||
.blog-title {
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
.blog-description {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
|
||||
h1, h2 {
|
||||
font-size: 3rem;
|
||||
line-height: 1.1em;
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 2.8rem;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 2.3rem;
|
||||
}
|
||||
|
||||
.post-template .post {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.post-template .post-header {
|
||||
padding: 30px 0;
|
||||
}
|
||||
|
||||
.post-meta {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
|
||||
.post-footer {
|
||||
padding: 4rem 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.post-footer .author {
|
||||
margin: 0 0 2rem 0;
|
||||
padding: 0 0 1.6rem 0;
|
||||
border-bottom: #EBF2F6 1px dashed;
|
||||
}
|
||||
|
||||
.post-footer .share {
|
||||
position: static;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.post-footer .share a {
|
||||
margin: 1.4rem 0.8rem 0 0.8rem;
|
||||
}
|
||||
|
||||
.site-footer {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
End of file. Media queries should be the last thing here. Do not add stuff
|
||||
below this point, or it will probably fuck everything up.
|
||||
========================================================================== */
|
41
assets/fonts/icons.dev.svg
Normal file
@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>
|
||||
This is a custom SVG font generated by IcoMoon.
|
||||
<iconset grid="16"></iconset>
|
||||
</metadata>
|
||||
<defs>
|
||||
<font id="icons" horiz-adv-x="512" >
|
||||
<font-face units-per-em="512" ascent="480" descent="-32" />
|
||||
<missing-glyph horiz-adv-x="512" />
|
||||
<glyph class="hidden" unicode="" d="M0,480L 512 -32L0 -32 z" horiz-adv-x="0" />
|
||||
<glyph unicode="" d="M 421.344-32C 420.944,197.616, 220.592,385.264,0,385.696L0,480 c 270.656,0, 512-230.304, 512-512L 421.344-32
|
||||
z M 343.6-31.968l-90.608,0 c 0.304,56.384-28.336,119.488-73.664,166.736C 134.256,182.4, 54.368,212.416, 0.224,212.128L 0.224,306.4
|
||||
C 169.264,302.752, 340.16,143.088, 343.6-31.968z M 64.256,96.048c 35.312,0, 63.936-28.656, 63.936-64c0-35.328-28.624-63.984-63.936-63.984
|
||||
S 0.32-3.28, 0.32,32.048C 0.32,67.392, 28.944,96.048, 64.256,96.048z" data-tags="feed, rss" />
|
||||
<glyph unicode="" d="M 512,382.791c-18.838-8.354-39.082-14.001-60.33-16.54c 21.686,13, 38.343,33.585, 46.186,58.115
|
||||
c-20.298-12.039-42.778-20.78-66.705-25.49c-19.16,20.415-46.461,33.17-76.673,33.17c-58.011,0-105.044-47.029-105.044-105.039
|
||||
c0-8.233, 0.929-16.25, 2.72-23.939c-87.3,4.382-164.701,46.2-216.509,109.753c-9.042-15.514-14.223-33.558-14.223-52.809
|
||||
c0-36.444, 18.544-68.596, 46.73-87.433c-17.219,0.546-33.416,5.271-47.577,13.139c-0.010-0.438-0.010-0.878-0.010-1.321
|
||||
c0-50.894, 36.209-93.348, 84.261-103c-8.813-2.4-18.094-3.686-27.674-3.686c-6.769,0-13.349,0.66-19.764,1.886
|
||||
c 13.368-41.73, 52.16-72.103, 98.126-72.948c-35.95-28.175-81.243-44.967-130.458-44.967c-8.479,0-16.84,0.497-25.058,1.47
|
||||
c 46.486-29.805, 101.701-47.197, 161.021-47.197c 193.211,0, 298.868,160.062, 298.868,298.872c0,4.554-0.103,9.084-0.305,13.59
|
||||
C 480.11,343.227, 497.918,361.727, 512,382.791z" data-tags="twitter, tweet, social" />
|
||||
<glyph unicode="" d="M 0.403,45.168c-0.122,1.266-0.226,2.535-0.292,3.815C 0.176,47.703, 0.281,46.434, 0.403,45.168zM 117.954,197.426c 46.005-1.369, 76.867,46.349, 68.931,106.599c-7.947,60.24-51.698,108.584-97.704,109.961
|
||||
c-46.013,1.365-76.87-44.741-68.926-105C 28.196,248.752, 71.931,198.799, 117.954,197.426zM 512,352L 512,394.655 C 512,441.595, 473.609,480, 426.671,480L 85.343,480 C 39.205,480, 1.337,442.884, 0.061,397.037
|
||||
c 29.181,25.693, 69.662,47.158, 111.437,47.158c 44.652,0, 178.622,0, 178.622,0l-39.974-33.809l-56.634,0
|
||||
c 37.565-14.402, 57.578-58.062, 57.578-102.861c0-37.624-20.905-69.977-50.444-92.984c-28.822-22.451-34.286-31.854-34.286-50.939
|
||||
c0-16.289, 30.873-44, 47.016-55.394c 47.191-33.269, 62.458-64.156, 62.458-115.728c0-8.214-1.021-16.415-3.033-24.48l 153.871,0
|
||||
C 473.609-32, 512,6.375, 512,53.345L 512,319.999 l-96,0 L 416,224 l-32,0 l0,96 l-95.999,0 l0,32 L 384,352 L 384,448 l 32,0 l0-96 L 512,352 zM 92.943,97.032c 10.807,0, 20.711,0.295, 30.968,0.295c-13.573,13.167-24.313,29.3-24.313,49.19
|
||||
c0,11.804, 3.782,23.168, 9.067,33.26c-5.391-0.385-10.895-0.497-16.563-0.497c-37.178,0-68.753,12.038-92.102,31.927l0-33.621
|
||||
l 0.003-100.865C 26.723,89.408, 58.447,97.032, 92.943,97.032zM 1.71,36.371c-0.556,2.729-0.983,5.503-1.271,8.317C 0.726,41.874, 1.154,39.1, 1.71,36.371zM 227.725,3.577c-7.529,29.403-34.227,43.982-71.444,69.784c-13.536,4.366-28.447,6.937-44.447,7.104
|
||||
c-44.809,0.482-86.554-17.471-110.108-44.186C 9.686-2.574, 44.243-32, 85.343-32l 143.222,0 c 0.908,5.564, 1.348,11.316, 1.348,17.216
|
||||
C 229.913-8.517, 229.146-2.388, 227.725,3.577z" data-tags="google plus, social" />
|
||||
<glyph unicode="" d="M 426.672,480L 85.342,480 C 38.406,480,0,441.593,0,394.656l0-341.313 C0,6.374, 38.406-32, 85.342-32l 341.33,0.001
|
||||
c 46.938,0, 85.328,38.373, 85.328,85.344L 512,394.656 C 512,441.593, 473.609,480, 426.672,480z M 435.296,224L 352,224 l0-224 l-96,0 L 256,224 l-46.263,0 l0,73.282 L 256,297.282
|
||||
l0,47.593 C 256,409.546, 283.896,448, 359.935,448l 87.622,0 l0-79.285 l-71.565,0 c-21.241,0.035-23.876-11.076-23.876-31.756L 352,297.282l 96,0
|
||||
L 435.296,224z" data-tags="facebook, social" />
|
||||
<glyph unicode="" d="M0,480 L0,377.6 L 307.2,377.6 L 307.2,480 L0,480 Z M0,480M0,275.2 L0,172.8 L 512,172.8 L 512,275.2 L0,275.2 Z M0,275.2M0,70.4 L0-32 L 204.8-32 L 204.8,70.4 L0,70.4 Z M0,70.4M 307.2,70.4 L 307.2-32 L 512-32 L 512,70.4 L 307.2,70.4 Z M 307.2,70.4M 409.6,480 L 409.6,377.6 L 512,377.6 L 512,480 L 409.6,480 Z M 409.6,480" data-tags="ghst" />
|
||||
<glyph unicode=" " horiz-adv-x="256" />
|
||||
</font></defs></svg>
|
After Width: | Height: | Size: 4.4 KiB |
BIN
assets/fonts/icons.eot
Normal file
41
assets/fonts/icons.svg
Normal file
@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>
|
||||
This is a custom SVG font generated by IcoMoon.
|
||||
<iconset grid="16"></iconset>
|
||||
</metadata>
|
||||
<defs>
|
||||
<font id="icons" horiz-adv-x="512" >
|
||||
<font-face units-per-em="512" ascent="480" descent="-32" />
|
||||
<missing-glyph horiz-adv-x="512" />
|
||||
<glyph class="hidden" unicode="" d="M0,480L 512 -32L0 -32 z" horiz-adv-x="0" />
|
||||
<glyph unicode="" d="M 421.344-32C 420.944,197.616, 220.592,385.264,0,385.696L0,480 c 270.656,0, 512-230.304, 512-512L 421.344-32
|
||||
z M 343.6-31.968l-90.608,0 c 0.304,56.384-28.336,119.488-73.664,166.736C 134.256,182.4, 54.368,212.416, 0.224,212.128L 0.224,306.4
|
||||
C 169.264,302.752, 340.16,143.088, 343.6-31.968z M 64.256,96.048c 35.312,0, 63.936-28.656, 63.936-64c0-35.328-28.624-63.984-63.936-63.984
|
||||
S 0.32-3.28, 0.32,32.048C 0.32,67.392, 28.944,96.048, 64.256,96.048z" />
|
||||
<glyph unicode="" d="M 512,382.791c-18.838-8.354-39.082-14.001-60.33-16.54c 21.686,13, 38.343,33.585, 46.186,58.115
|
||||
c-20.298-12.039-42.778-20.78-66.705-25.49c-19.16,20.415-46.461,33.17-76.673,33.17c-58.011,0-105.044-47.029-105.044-105.039
|
||||
c0-8.233, 0.929-16.25, 2.72-23.939c-87.3,4.382-164.701,46.2-216.509,109.753c-9.042-15.514-14.223-33.558-14.223-52.809
|
||||
c0-36.444, 18.544-68.596, 46.73-87.433c-17.219,0.546-33.416,5.271-47.577,13.139c-0.010-0.438-0.010-0.878-0.010-1.321
|
||||
c0-50.894, 36.209-93.348, 84.261-103c-8.813-2.4-18.094-3.686-27.674-3.686c-6.769,0-13.349,0.66-19.764,1.886
|
||||
c 13.368-41.73, 52.16-72.103, 98.126-72.948c-35.95-28.175-81.243-44.967-130.458-44.967c-8.479,0-16.84,0.497-25.058,1.47
|
||||
c 46.486-29.805, 101.701-47.197, 161.021-47.197c 193.211,0, 298.868,160.062, 298.868,298.872c0,4.554-0.103,9.084-0.305,13.59
|
||||
C 480.11,343.227, 497.918,361.727, 512,382.791z" />
|
||||
<glyph unicode="" d="M 0.403,45.168c-0.122,1.266-0.226,2.535-0.292,3.815C 0.176,47.703, 0.281,46.434, 0.403,45.168zM 117.954,197.426c 46.005-1.369, 76.867,46.349, 68.931,106.599c-7.947,60.24-51.698,108.584-97.704,109.961
|
||||
c-46.013,1.365-76.87-44.741-68.926-105C 28.196,248.752, 71.931,198.799, 117.954,197.426zM 512,352L 512,394.655 C 512,441.595, 473.609,480, 426.671,480L 85.343,480 C 39.205,480, 1.337,442.884, 0.061,397.037
|
||||
c 29.181,25.693, 69.662,47.158, 111.437,47.158c 44.652,0, 178.622,0, 178.622,0l-39.974-33.809l-56.634,0
|
||||
c 37.565-14.402, 57.578-58.062, 57.578-102.861c0-37.624-20.905-69.977-50.444-92.984c-28.822-22.451-34.286-31.854-34.286-50.939
|
||||
c0-16.289, 30.873-44, 47.016-55.394c 47.191-33.269, 62.458-64.156, 62.458-115.728c0-8.214-1.021-16.415-3.033-24.48l 153.871,0
|
||||
C 473.609-32, 512,6.375, 512,53.345L 512,319.999 l-96,0 L 416,224 l-32,0 l0,96 l-95.999,0 l0,32 L 384,352 L 384,448 l 32,0 l0-96 L 512,352 zM 92.943,97.032c 10.807,0, 20.711,0.295, 30.968,0.295c-13.573,13.167-24.313,29.3-24.313,49.19
|
||||
c0,11.804, 3.782,23.168, 9.067,33.26c-5.391-0.385-10.895-0.497-16.563-0.497c-37.178,0-68.753,12.038-92.102,31.927l0-33.621
|
||||
l 0.003-100.865C 26.723,89.408, 58.447,97.032, 92.943,97.032zM 1.71,36.371c-0.556,2.729-0.983,5.503-1.271,8.317C 0.726,41.874, 1.154,39.1, 1.71,36.371zM 227.725,3.577c-7.529,29.403-34.227,43.982-71.444,69.784c-13.536,4.366-28.447,6.937-44.447,7.104
|
||||
c-44.809,0.482-86.554-17.471-110.108-44.186C 9.686-2.574, 44.243-32, 85.343-32l 143.222,0 c 0.908,5.564, 1.348,11.316, 1.348,17.216
|
||||
C 229.913-8.517, 229.146-2.388, 227.725,3.577z" />
|
||||
<glyph unicode="" d="M 426.672,480L 85.342,480 C 38.406,480,0,441.593,0,394.656l0-341.313 C0,6.374, 38.406-32, 85.342-32l 341.33,0.001
|
||||
c 46.938,0, 85.328,38.373, 85.328,85.344L 512,394.656 C 512,441.593, 473.609,480, 426.672,480z M 435.296,224L 352,224 l0-224 l-96,0 L 256,224 l-46.263,0 l0,73.282 L 256,297.282
|
||||
l0,47.593 C 256,409.546, 283.896,448, 359.935,448l 87.622,0 l0-79.285 l-71.565,0 c-21.241,0.035-23.876-11.076-23.876-31.756L 352,297.282l 96,0
|
||||
L 435.296,224z" />
|
||||
<glyph unicode="" d="M0,480 L0,377.6 L 307.2,377.6 L 307.2,480 L0,480 Z M0,480M0,275.2 L0,172.8 L 512,172.8 L 512,275.2 L0,275.2 Z M0,275.2M0,70.4 L0-32 L 204.8-32 L 204.8,70.4 L0,70.4 Z M0,70.4M 307.2,70.4 L 307.2-32 L 512-32 L 512,70.4 L 307.2,70.4 Z M 307.2,70.4M 409.6,480 L 409.6,377.6 L 512,377.6 L 512,480 L 409.6,480 Z M 409.6,480" />
|
||||
<glyph unicode=" " horiz-adv-x="256" />
|
||||
</font></defs></svg>
|
After Width: | Height: | Size: 4.3 KiB |
BIN
assets/fonts/icons.ttf
Normal file
BIN
assets/fonts/icons.woff
Normal file
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |
BIN
assets/img/user.png
Normal file
After Width: | Height: | Size: 59 KiB |
18
assets/js/index.js
Normal file
@ -0,0 +1,18 @@
|
||||
/**
|
||||
* Main JS file for Casper behaviours
|
||||
*/
|
||||
|
||||
/*globals jQuery, document */
|
||||
(function ($) {
|
||||
"use strict";
|
||||
|
||||
$(document).ready(function(){
|
||||
|
||||
// On the home page, move the blog icon inside the header
|
||||
// for better relative/absolute positioning.
|
||||
|
||||
//$("#blog-logo").prependTo("#site-head-content");
|
||||
|
||||
});
|
||||
|
||||
}(jQuery));
|
@ -1,267 +0,0 @@
|
||||
/*
|
||||
* HTML5 Boilerplate
|
||||
*
|
||||
* What follows is the result of much research on cross-browser styling.
|
||||
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
|
||||
* Kroc Camen, and the H5BP dev community and team.
|
||||
*/
|
||||
|
||||
/* ==========================================================================
|
||||
Base styles: opinionated defaults
|
||||
========================================================================== */
|
||||
|
||||
html,
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
color: #222;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 1em;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
/*
|
||||
* Remove text-shadow in selection highlight: h5bp.com/i
|
||||
* These selection declarations have to be separate.
|
||||
* Customize the background color to match your design.
|
||||
*/
|
||||
|
||||
::-moz-selection {
|
||||
background: #ff0054;
|
||||
color:#fff;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: #ff0054;
|
||||
color:#fff;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
/*
|
||||
* A better looking default horizontal rule
|
||||
*/
|
||||
|
||||
hr {
|
||||
display: block;
|
||||
height: 1px;
|
||||
border: 0;
|
||||
border-top: 1px solid #dadada;
|
||||
margin: 3em 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Remove the gap between images and the bottom of their containers: h5bp.com/i/440
|
||||
*/
|
||||
|
||||
img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/*
|
||||
* Remove default fieldset styles.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Allow only vertical resizing of textareas.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Helper classes
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Image replacement
|
||||
*/
|
||||
|
||||
.ir {
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
overflow: hidden;
|
||||
/* IE 6/7 fallback */
|
||||
*text-indent: -9999px;
|
||||
}
|
||||
|
||||
.ir:before {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/*
|
||||
* Hide from both screenreaders and browsers: h5bp.com/u
|
||||
*/
|
||||
|
||||
.hidden {
|
||||
display: none !important;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
/*
|
||||
* Hide only visually, but have it available for screenreaders: h5bp.com/v
|
||||
*/
|
||||
|
||||
.visuallyhidden,
|
||||
.screen-reader-text {
|
||||
border: 0;
|
||||
clip: rect(0 0 0 0);
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
}
|
||||
|
||||
/*
|
||||
* Extends the .visuallyhidden class to allow the element to be focusable
|
||||
* when navigated to via the keyboard: h5bp.com/p
|
||||
*/
|
||||
|
||||
.visuallyhidden.focusable:active,
|
||||
.visuallyhidden.focusable:focus {
|
||||
clip: auto;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
overflow: visible;
|
||||
position: static;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
/*
|
||||
* Hide visually and from screenreaders, but maintain layout
|
||||
*/
|
||||
|
||||
.invisible {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
/*
|
||||
* Clearfix: contain floats
|
||||
*
|
||||
* For modern browsers
|
||||
* 1. The space content is one way to avoid an Opera bug when the
|
||||
* `contenteditable` attribute is included anywhere else in the document.
|
||||
* Otherwise it causes space to appear at the top and bottom of elements
|
||||
* that receive the `clearfix` class.
|
||||
* 2. The use of `table` rather than `block` is only necessary if using
|
||||
* `:before` to contain the top-margins of child elements.
|
||||
*/
|
||||
|
||||
.clearfix:before,
|
||||
.clearfix:after {
|
||||
content: " "; /* 1 */
|
||||
display: table; /* 2 */
|
||||
}
|
||||
|
||||
.clearfix:after {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/*
|
||||
* For IE 6/7 only
|
||||
* Include this rule to trigger hasLayout and contain floats.
|
||||
*/
|
||||
|
||||
.clearfix {
|
||||
*zoom: 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* Some standard WordPress classes commonly used by themes/plugins.
|
||||
*/
|
||||
|
||||
.alignleft {
|
||||
float:left;
|
||||
}
|
||||
|
||||
.alignright {
|
||||
float:right;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Print styles.
|
||||
Inlined to avoid required HTTP connection: h5bp.com/r
|
||||
========================================================================== */
|
||||
|
||||
@media print {
|
||||
* {
|
||||
background: transparent !important;
|
||||
color: #000 !important; /* Black prints faster: h5bp.com/s */
|
||||
box-shadow: none !important;
|
||||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
a,
|
||||
a:visited {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a[href]:after {
|
||||
content: " (" attr(href) ")";
|
||||
}
|
||||
|
||||
abbr[title]:after {
|
||||
content: " (" attr(title) ")";
|
||||
}
|
||||
|
||||
/*
|
||||
* Don't show links for images, or javascript/internal links
|
||||
*/
|
||||
|
||||
.ir a:after,
|
||||
a[href^="javascript:"]:after,
|
||||
a[href^="#"]:after {
|
||||
content: "";
|
||||
}
|
||||
|
||||
pre,
|
||||
blockquote {
|
||||
border: 1px solid #999;
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
|
||||
thead {
|
||||
display: table-header-group; /* h5bp.com/t */
|
||||
}
|
||||
|
||||
tr,
|
||||
img {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100% !important;
|
||||
}
|
||||
|
||||
@page {
|
||||
margin: 0.5cm;
|
||||
}
|
||||
|
||||
p,
|
||||
h2,
|
||||
h3 {
|
||||
orphans: 3;
|
||||
widows: 3;
|
||||
}
|
||||
|
||||
h2,
|
||||
h3 {
|
||||
page-break-after: avoid;
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
@font-face {
|
||||
font-family: 'galette';
|
||||
src: url('../fonts/galette-med-webfont.eot');
|
||||
src: url('../fonts/galette-med-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('../fonts/galette-med-webfont.woff') format('woff'),
|
||||
url('../fonts/galette-med-webfont.ttf') format('truetype'),
|
||||
url('../fonts/galette-med-webfont.svg#galetteregular') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
|
||||
}
|
511
css/normalize.css
vendored
@ -1,511 +0,0 @@
|
||||
/*! normalize.css v1.0.2 | MIT License | git.io/normalize */
|
||||
|
||||
/* ==========================================================================
|
||||
HTML5 display definitions
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Corrects `block` display not defined in IE 6/7/8/9 and Firefox 3.
|
||||
*/
|
||||
|
||||
main,
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
nav,
|
||||
section,
|
||||
summary {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*
|
||||
* Corrects `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
|
||||
*/
|
||||
|
||||
audio,
|
||||
canvas,
|
||||
video {
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
*zoom: 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* Prevents modern browsers from displaying `audio` without controls.
|
||||
* Remove excess height in iOS 5 devices.
|
||||
*/
|
||||
|
||||
audio:not([controls]) {
|
||||
display: none;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses styling for `hidden` attribute not present in IE 7/8/9, Firefox 3,
|
||||
* and Safari 4.
|
||||
* Known issue: no IE 6 support.
|
||||
*/
|
||||
|
||||
[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Base
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* 1. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
|
||||
* `em` units.
|
||||
* 2. Prevents iOS text size adjust after orientation change, without disabling
|
||||
* user zoom.
|
||||
*/
|
||||
|
||||
html {
|
||||
font-size: 100%; /* 1 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
-ms-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses `font-family` inconsistency between `textarea` and other form
|
||||
* elements.
|
||||
*/
|
||||
|
||||
html,
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses margins handled incorrectly in IE 6/7.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Links
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Addresses `outline` inconsistency between Chrome and other browsers.
|
||||
*/
|
||||
|
||||
a:focus {
|
||||
outline: thin dotted;
|
||||
}
|
||||
|
||||
/*
|
||||
* Improves readability when focused and also mouse hovered in all browsers.
|
||||
*/
|
||||
|
||||
a:active,
|
||||
a:hover {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Typography
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Addresses font sizes and margins set differently in IE 6/7.
|
||||
* Addresses font sizes within `section` and `article` in Firefox 4+, Safari 5,
|
||||
* and Chrome.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.5em;
|
||||
margin: 0.83em 0;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.17em;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1em;
|
||||
margin: 1.33em 0;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 0.83em;
|
||||
margin: 1.67em 0;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 0.67em;
|
||||
margin: 2.33em 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses styling not present in IE 7/8/9, Safari 5, and Chrome.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: 1px dotted;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 1em 40px;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses styling not present in Safari 5 and Chrome.
|
||||
*/
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses styling not present in IE 6/7/8/9.
|
||||
*/
|
||||
|
||||
mark {
|
||||
background: #ff0;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses margins set differently in IE 6/7.
|
||||
*/
|
||||
|
||||
p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Corrects font family set oddly in IE 6, Safari 4/5, and Chrome.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {
|
||||
font-family: monospace, serif;
|
||||
_font-family: 'courier new', monospace;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
/*
|
||||
* Improves readability of pre-formatted text in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
margin: 1.5em 0;
|
||||
white-space: pre;
|
||||
white-space: pre-wrap;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses CSS quotes not supported in IE 6/7.
|
||||
*/
|
||||
|
||||
q {
|
||||
quotes: none;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses `quotes` property not supported in Safari 4.
|
||||
*/
|
||||
|
||||
q:before,
|
||||
q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses inconsistent and variable font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/*
|
||||
* Prevents `sub` and `sup` affecting `line-height` in all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Lists
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Addresses margins set differently in IE 6/7.
|
||||
*/
|
||||
|
||||
dl,
|
||||
menu,
|
||||
ol,
|
||||
ul {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin: 0 0 0 2em;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses paddings set differently in IE 6/7.
|
||||
*/
|
||||
|
||||
menu,
|
||||
ol,
|
||||
ul {
|
||||
padding: 0 0 0 2em;
|
||||
}
|
||||
|
||||
/*
|
||||
* Corrects list images handled incorrectly in IE 7.
|
||||
*/
|
||||
|
||||
nav ul,
|
||||
nav ol {
|
||||
list-style: none;
|
||||
list-style-image: none;
|
||||
}
|
||||
|
||||
li {
|
||||
padding:0;
|
||||
margin-top:5px;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* 1. Removes border when inside `a` element in IE 6/7/8/9 and Firefox 3.
|
||||
* 2. Improves image quality when scaled in IE 7.
|
||||
*/
|
||||
|
||||
img {
|
||||
border: 0; /* 1 */
|
||||
-ms-interpolation-mode: bicubic; /* 2 */
|
||||
}
|
||||
|
||||
/*
|
||||
* Corrects overflow displayed oddly in IE 9.
|
||||
*/
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Figures
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Addresses margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
|
||||
*/
|
||||
|
||||
figure {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Forms
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Corrects margin displayed oddly in IE 6/7.
|
||||
*/
|
||||
|
||||
form {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Define consistent border, margin, and padding.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
border: 1px solid #c0c0c0;
|
||||
margin: 0 2px;
|
||||
padding: 0.35em 0.625em 0.75em;
|
||||
}
|
||||
|
||||
/*
|
||||
* 1. Corrects color not being inherited in IE 6/7/8/9.
|
||||
* 2. Corrects text not wrapping in Firefox 3.
|
||||
* 3. Corrects alignment displayed oddly in IE 6/7.
|
||||
*/
|
||||
|
||||
legend {
|
||||
border: 0; /* 1 */
|
||||
padding: 0;
|
||||
white-space: normal; /* 2 */
|
||||
*margin-left: -7px; /* 3 */
|
||||
}
|
||||
|
||||
/*
|
||||
* 1. Corrects font size not being inherited in all browsers.
|
||||
* 2. Addresses margins set differently in IE 6/7, Firefox 3+, Safari 5,
|
||||
* and Chrome.
|
||||
* 3. Improves appearance and consistency in all browsers.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
font-size: 100%; /* 1 */
|
||||
margin: 0; /* 2 */
|
||||
vertical-align: baseline; /* 3 */
|
||||
*vertical-align: middle; /* 3 */
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses Firefox 3+ setting `line-height` on `input` using `!important` in
|
||||
* the UA stylesheet.
|
||||
*/
|
||||
|
||||
button,
|
||||
input {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
/*
|
||||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
||||
* and `video` controls.
|
||||
* 2. Corrects inability to style clickable `input` types in iOS.
|
||||
* 3. Improves usability and consistency of cursor style between image-type
|
||||
* `input` and others.
|
||||
* 4. Removes inner spacing in IE 7 without affecting normal text inputs.
|
||||
* Known issue: inner spacing remains in IE 6.
|
||||
*/
|
||||
|
||||
button,
|
||||
html input[type="button"], /* 1 */
|
||||
input[type="reset"],
|
||||
input[type="submit"] {
|
||||
-webkit-appearance: button; /* 2 */
|
||||
cursor: pointer; /* 3 */
|
||||
*overflow: visible; /* 4 */
|
||||
}
|
||||
|
||||
/*
|
||||
* Re-set default cursor for disabled elements.
|
||||
*/
|
||||
|
||||
button[disabled],
|
||||
input[disabled] {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/*
|
||||
* 1. Addresses box sizing set to content-box in IE 8/9.
|
||||
* 2. Removes excess padding in IE 8/9.
|
||||
* 3. Removes excess padding in IE 7.
|
||||
* Known issue: excess padding remains in IE 6.
|
||||
*/
|
||||
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
*height: 13px; /* 3 */
|
||||
*width: 13px; /* 3 */
|
||||
}
|
||||
|
||||
/*
|
||||
* 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
|
||||
* 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
|
||||
* (include `-moz` to future-proof).
|
||||
*/
|
||||
|
||||
input[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
-moz-box-sizing: content-box;
|
||||
-webkit-box-sizing: content-box; /* 2 */
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
/*
|
||||
* Removes inner padding and search cancel button in Safari 5 and Chrome
|
||||
* on OS X.
|
||||
*/
|
||||
|
||||
input[type="search"]::-webkit-search-cancel-button,
|
||||
input[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/*
|
||||
* Removes inner padding and border in Firefox 3+.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
input::-moz-focus-inner {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* 1. Removes default vertical scrollbar in IE 6/7/8/9.
|
||||
* 2. Improves readability and alignment in all browsers.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto; /* 1 */
|
||||
vertical-align: top; /* 2 */
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Tables
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Remove most spacing between table cells.
|
||||
*/
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
1219
css/style.css
47
default.hbs
@ -1,20 +1,43 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>{{settings.title}} | {{settings.description}}</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/style.css">
|
||||
{{! Document Settings }}
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
|
||||
{{! Page Meta }}
|
||||
<title>{{@blog.title}}</title>
|
||||
<meta name="description" content="{{@blog.description}}" />
|
||||
|
||||
<script type="text/javascript" src="/lib/jquery/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="/js/index.js"></script>
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
{{! Styles'n'Scripts }}
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/screen.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic|Open+Sans:700,400">
|
||||
|
||||
{{! Ghost outputs important style and meta data with this tag }}
|
||||
{{ghost_head}}
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
{{#if settings.logo}}<a id="logo" href="/"><img src="{{settings.logo}}" alt="Logo"></a>{{/if}}
|
||||
<a id="title" href="/">{{settings.title}}</a>
|
||||
<p id="description">{{settings.description}}</p>
|
||||
<div class="clearfix"></div>
|
||||
</header>
|
||||
<body class="{{body_class}}">
|
||||
|
||||
{{! Everything else gets inserted here }}
|
||||
{{{body}}}
|
||||
|
||||
<footer class="site-footer">
|
||||
<a class="subscribe icon-feed" href="#"><span class="tooltip">Subscribe!</span></a>
|
||||
<div class="inner">
|
||||
<section class="copyright">All content copyright <a href="/">{{@blog.title}}</a> © 2013 • All rights reserved.</section>
|
||||
<section class="poweredby">Proudly published with <a class="icon-ghost" href="http://tryghost.org">Ghost</a></section>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
{{! Ghost outputs important scripts and data with this tag }}
|
||||
{{ghost_foot}}
|
||||
|
||||
{{! The main JavaScript file for Casper }}
|
||||
<script type="text/javascript" src="assets/js/index.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -1,242 +0,0 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata></metadata>
|
||||
<defs>
|
||||
<font id="galetteregular" horiz-adv-x="1146" >
|
||||
<font-face units-per-em="2048" ascent="1536" descent="-512" />
|
||||
<missing-glyph horiz-adv-x="450" />
|
||||
<glyph unicode="fi" horiz-adv-x="942" d="M123 0v1155q0 117 83.5 198t203.5 81h409v-144h-409q-50 0 -86.5 -40t-36.5 -95v-131h245v-143h-245v-881h-164zM655 0v1024h164v-1024h-164z" />
|
||||
<glyph unicode="fl" horiz-adv-x="942" d="M123 0v1155q0 117 83.5 198t203.5 81h409v-1434h-164v1290h-245q-50 0 -86.5 -40t-36.5 -95v-131h245v-143h-245v-881h-164z" />
|
||||
<glyph horiz-adv-x="2048" />
|
||||
<glyph horiz-adv-x="2048" />
|
||||
<glyph unicode="
" horiz-adv-x="2048" />
|
||||
<glyph unicode=" " horiz-adv-x="450" />
|
||||
<glyph unicode="	" horiz-adv-x="450" />
|
||||
<glyph unicode=" " horiz-adv-x="450" />
|
||||
<glyph unicode="!" horiz-adv-x="430" d="M123 0v184h184v-184h-184zM133 328v1106h164v-1106h-164z" />
|
||||
<glyph unicode=""" horiz-adv-x="696" d="M123 1044v390h164v-390h-164zM410 1044v390h163v-390h-163z" />
|
||||
<glyph unicode="#" horiz-adv-x="1228" d="M82 410v143h246v328h-246v143h246v410h164v-410h245v410h164v-410h246v-143h-246v-328h246v-143h-246v-410h-164v410h-245v-410h-164v410h-246zM492 553h245v328h-245v-328z" />
|
||||
<glyph unicode="$" horiz-adv-x="1085" d="M82 1096q0 141 100.5 239.5t241.5 98.5h47v102h164v-102h287v-144h-287v-434l31 -6q147 -31 241 -149t94 -271q0 -162 -105 -282.5t-261 -143.5v-188h-164v184h-348v143h348v592l-123 27q-119 26 -192.5 117.5t-73.5 216.5zM246 1096q0 -65 41 -120.5t102 -68.5l82 -18 v401h-29q-80 0 -138 -57.5t-58 -136.5zM635 156q89 27 147 103t58 171t-59.5 174t-145.5 98v-546z" />
|
||||
<glyph unicode="%" horiz-adv-x="1474" d="M82 1126q0 128 90 218t217 90t217 -90t90 -218t-90 -217.5t-217 -89.5t-217 89.5t-90 217.5zM205 0l889 1434h176l-889 -1434h-176zM225 1126q0 -67 48 -115t116 -48t116 48t48 115q0 68 -48.5 116t-115.5 48t-115.5 -48t-48.5 -116zM778 307q0 127 90 217t217 90 q128 0 218 -90t90 -217t-90 -217t-218 -90q-127 0 -217 90t-90 217zM922 307q0 -68 48 -116t115 -48t115.5 48.5t48.5 115.5t-48.5 115.5t-115.5 48.5t-115 -48t-48 -116z" />
|
||||
<glyph unicode="&" horiz-adv-x="1249" d="M102 416v153q0 90 42 168.5t114 130.5q-54 45 -85.5 110.5t-31.5 137.5q0 132 93 225t225 93h565v-144h-545q-70 0 -121 -51.5t-51 -122.5t48.5 -124.5t115.5 -53.5h389v188h164v-188h164v-145h-164v-793h-487q-114 0 -214 55t-160.5 151.5t-60.5 209.5zM268 412 q0 -110 79.5 -189.5t189.5 -79.5h323v650h-381q-87 0 -149 -62t-62 -149v-170z" />
|
||||
<glyph unicode="'" horiz-adv-x="409" d="M123 1044v390h164v-390h-164z" />
|
||||
<glyph unicode="(" horiz-adv-x="593" d="M123 389v473q0 114 27.5 225.5t66.5 189t78 138.5t67 91l27 30h164q-11 -12 -29 -33.5t-63.5 -92t-81 -145t-64 -185.5t-28.5 -220v-471q0 -109 27.5 -218.5t66.5 -188.5t78 -142t67 -95l27 -32h-164q-11 11 -29 31.5t-63.5 88.5t-81 141.5t-64 186.5t-28.5 228z" />
|
||||
<glyph unicode=")" horiz-adv-x="593" d="M41 -287q11 12 29 33.5t63.5 92t81 145t64 185.5t28.5 220v471q0 109 -27.5 218.5t-66.5 188.5t-78 142t-67 95l-27 32h164q11 -11 29 -31.5t63.5 -88t81 -141t64 -186.5t28.5 -227v-473q0 -115 -27.5 -227t-66.5 -189.5t-78 -138.5t-67 -91l-27 -30h-164z" />
|
||||
<glyph unicode="*" horiz-adv-x="942" d="M80 1087l51 158l268 -96l-8 285h164l-10 -285l266 96l53 -160l-270 -75q143 -186 174 -224l-135 -98l-160 238l-158 -238l-137 96l176 226z" />
|
||||
<glyph unicode="+" d="M82 451v143h410v430h163v-430h410v-143h-410v-451h-163v451h-410z" />
|
||||
<glyph unicode="," horiz-adv-x="430" d="M123 184h184l-20 -430h-164v430z" />
|
||||
<glyph unicode="-" horiz-adv-x="675" d="M82 451v143h512v-143h-512z" />
|
||||
<glyph unicode="." horiz-adv-x="430" d="M123 0v184h184v-184h-184z" />
|
||||
<glyph unicode="/" horiz-adv-x="819" d="M41 0l565 1434h172l-565 -1434h-172z" />
|
||||
<glyph unicode="0" horiz-adv-x="1126" d="M102 375v684q0 155 111 265t266 110h170q155 0 265 -110t110 -265v-684q0 -155 -110 -265t-265 -110h-170q-155 0 -266 110t-111 265zM266 356q0 -88 62.5 -150.5t150.5 -62.5h170q86 0 148.5 62.5t62.5 150.5v721q0 86 -62.5 149.5t-148.5 63.5h-170q-87 0 -150 -63 t-63 -150v-721z" />
|
||||
<glyph unicode="1" horiz-adv-x="512" d="M61 1290v144h328v-1434h-164v1290h-164z" />
|
||||
<glyph unicode="2" horiz-adv-x="1126" d="M123 0v442q0 145 95 261t233 147l286 63q63 13 103.5 66t40.5 119q0 78 -57 135t-136 57h-483v144h504q138 0 236.5 -99t98.5 -237q0 -119 -76 -211t-190 -117l-286 -63q-89 -20 -147 -95.5t-58 -169.5v-299h717v-143h-881z" />
|
||||
<glyph unicode="3" horiz-adv-x="1024" d="M61 0v143h451q110 0 188 78.5t78 188.5v172q0 86 -62.5 148.5t-148.5 62.5h-424v145h430q67 0 115.5 53.5t48.5 124.5t-50 122.5t-120 51.5h-506v144h527q132 0 222.5 -93t90.5 -225q0 -73 -34 -140t-89 -106q71 -47 117.5 -133t46.5 -176v-145q0 -113 -59 -209 t-158 -151.5t-213 -55.5h-451z" />
|
||||
<glyph unicode="4" horiz-adv-x="1105" d="M41 389l553 1045h184l-483 -902h442v492h164v-492h143v-143h-143v-389h-164v389h-696z" />
|
||||
<glyph unicode="5" horiz-adv-x="1085" d="M123 0v143h430q112 0 189 78t77 189v172q0 86 -62.5 148.5t-148.5 62.5h-485v641h778v-144h-614v-352h317q155 0 267 -111t112 -266v-151q0 -168 -127.5 -289t-302.5 -121h-430z" />
|
||||
<glyph unicode="6" horiz-adv-x="1126" d="M102 414v645q0 155 111 265t266 110h463v-144h-463q-87 0 -149 -63t-62 -150v-139h381q155 0 265 -110t110 -265v-149q0 -113 -59.5 -208.5t-159.5 -150.5t-215 -55h-53q-114 0 -214 54.5t-160.5 150t-60.5 209.5zM268 412q0 -110 79.5 -189.5t189.5 -79.5h53 q112 0 191 79t79 190v170q0 86 -62.5 148.5t-148.5 62.5h-381v-381z" />
|
||||
<glyph unicode="7" horiz-adv-x="983" d="M41 0l651 1290h-631v144h881l-721 -1434h-180z" />
|
||||
<glyph unicode="8" horiz-adv-x="1126" d="M102 416v145q0 89 46 170t118 133q-55 44 -89 112t-34 140q0 132 92 225t224 93h211q130 0 221.5 -93t91.5 -225q0 -72 -34 -140t-89 -112q72 -52 118 -133t46 -170v-145q0 -172 -127 -294t-303 -122h-62q-114 0 -213 55.5t-158 151.5t-59 209zM266 410q0 -109 76.5 -188 t183.5 -79h76q107 0 182.5 79t75.5 188v172q0 86 -62.5 148.5t-148.5 62.5h-170q-88 0 -150.5 -62.5t-62.5 -148.5v-172zM307 1116q0 -71 48.5 -124.5t115.5 -53.5h184q67 0 115.5 53.5t48.5 124.5t-50 122.5t-120 51.5h-170q-70 0 -121 -51.5t-51 -122.5z" />
|
||||
<glyph unicode="9" horiz-adv-x="1105" d="M82 1024v35q0 155 110 265t265 110h172q155 0 265 -110t110 -265v-649q0 -172 -127.5 -291t-303.5 -119h-409v143h409q110 0 188.5 78.5t78.5 188.5v235h-383q-155 0 -265 111t-110 268zM246 1004q0 -87 62.5 -151.5t148.5 -64.5h383v289q0 87 -62 150t-149 63h-172 q-86 0 -148.5 -63.5t-62.5 -149.5v-73z" />
|
||||
<glyph unicode=":" horiz-adv-x="430" d="M123 0v184h184v-184h-184zM123 840v184h184v-184h-184z" />
|
||||
<glyph unicode=";" horiz-adv-x="430" d="M123 184h184l-20 -430h-164v430zM123 840v184h184v-184h-184z" />
|
||||
<glyph unicode="<" horiz-adv-x="1064" d="M82 457v110l901 477v-153l-717 -379l717 -379v-153z" />
|
||||
<glyph unicode="=" d="M82 266v144h983v-144h-983zM82 635v143h983v-143h-983z" />
|
||||
<glyph unicode=">" horiz-adv-x="1064" d="M82 -20v153l717 379l-717 379v153l901 -477v-110z" />
|
||||
<glyph unicode="?" horiz-adv-x="983" d="M82 1290v144h491q138 0 238 -100t100 -238q0 -119 -73 -208t-183 -114l-235 -53q-57 -12 -95 -60t-38 -108v-225h-164v225q0 107 71 192.5t175 110.5l235 55q60 14 102 67.5t42 117.5q0 78 -58 136t-137 58h-471zM113 0v184h184v-184h-184z" />
|
||||
<glyph unicode="@" horiz-adv-x="1515" d="M102 532v451q0 93 35.5 176.5t96 143.5t144 95.5t175.5 35.5h410q188 0 319 -131t131 -320v-397q0 -117 -80 -198t-196 -81h-428q-116 0 -197.5 81t-81.5 198v321q0 91 64 155t155 64h406v-675h61q56 0 94.5 38.5t38.5 94.5v399q0 127 -89.5 217t-217.5 90h-369 q-127 0 -217 -90t-90 -217v-451q0 -160 114.5 -274.5t274.5 -114.5h697v-143h-717q-109 0 -207.5 41.5t-170 112.5t-113.5 170t-42 208zM594 584q0 -55 39.5 -94t93.5 -39h164v532h-221q-31 0 -53.5 -22.5t-22.5 -53.5v-323z" />
|
||||
<glyph unicode="A" d="M41 0l451 1434h163l451 -1434h-172l-133 430h-455l-133 -430h-172zM389 573h367l-183 594z" />
|
||||
<glyph unicode="B" horiz-adv-x="1126" d="M123 0v1434h541q133 0 226 -94t93 -228q0 -74 -36.5 -142.5t-92.5 -105.5q84 -45 137 -143.5t53 -202.5v-98q0 -173 -123 -296.5t-296 -123.5h-502zM287 143h338q103 0 179.5 76.5t76.5 179.5v140q0 104 -76.5 179t-179.5 75h-338v-650zM287 938h356q72 0 124 51.5 t52 122.5q0 72 -52 125t-124 53h-356v-352z" />
|
||||
<glyph unicode="C" horiz-adv-x="1024" d="M102 518v535q0 158 111.5 269.5t269.5 111.5h480v-144h-480q-88 0 -152.5 -64.5t-64.5 -152.5v-573q0 -146 105 -251.5t250 -105.5h342v-143h-342q-141 0 -260.5 69t-189 188.5t-69.5 260.5z" />
|
||||
<glyph unicode="D" d="M123 0v1434h539q159 0 270.5 -110.5t111.5 -268.5v-537q0 -106 -41 -202t-111 -165t-167 -110t-203 -41h-399zM287 143h245q145 0 247 105t102 252v575q0 88 -62.5 151.5t-150.5 63.5h-381v-1147z" />
|
||||
<glyph unicode="E" horiz-adv-x="1024" d="M123 0v1434h840v-144h-676v-352h594v-145h-594v-650h676v-143h-840z" />
|
||||
<glyph unicode="F" horiz-adv-x="1024" d="M123 0v1434h840v-144h-676v-352h594v-145h-594v-793h-164z" />
|
||||
<glyph unicode="G" d="M102 518v535q0 158 111.5 269.5t269.5 111.5h500v-144h-500q-88 0 -152.5 -64.5t-64.5 -152.5v-573q0 -146 105.5 -251.5t251.5 -105.5h237v650h-287v145h451v-938h-401q-142 0 -262 69t-189.5 188.5t-69.5 260.5z" />
|
||||
<glyph unicode="H" horiz-adv-x="1167" d="M123 0v1434h164v-496h594v496h163v-1434h-163v793h-594v-793h-164z" />
|
||||
<glyph unicode="I" horiz-adv-x="409" d="M123 0v1434h164v-1434h-164z" />
|
||||
<glyph unicode="J" horiz-adv-x="573" d="M51 -20v143q96 0 166 64.5t70 152.5v1094h164v-1074q0 -158 -117 -269t-283 -111z" />
|
||||
<glyph unicode="K" horiz-adv-x="1208" d="M123 0v1434h164v-1434h-164zM287 850l635 584h225l-645 -594l655 -840h-207z" />
|
||||
<glyph unicode="L" horiz-adv-x="1044" d="M123 0v1434h164v-1291h696v-143h-860z" />
|
||||
<glyph unicode="M" horiz-adv-x="1290" d="M123 0v1434h174l348 -607l348 607h174v-1434h-163v1126l-359 -614l-358 614v-1126h-164z" />
|
||||
<glyph unicode="N" horiz-adv-x="1167" d="M123 0v1434h170l588 -1106v1106h163v-1434h-167l-590 1106v-1106h-164z" />
|
||||
<glyph unicode="O" d="M102 440v613q0 158 111.5 269.5t269.5 111.5h183q157 0 267.5 -111.5t110.5 -269.5v-613q0 -183 -127.5 -311.5t-310.5 -128.5h-63q-183 0 -312 128.5t-129 311.5zM266 420q0 -114 81.5 -195.5t195.5 -81.5h63q113 0 194 81.5t81 195.5v653q0 88 -63.5 152.5t-151.5 64.5 h-187q-87 0 -150 -64.5t-63 -152.5v-653z" />
|
||||
<glyph unicode="P" horiz-adv-x="1085" d="M123 0v1434h573q134 0 231 -94.5t97 -227.5t-97 -226t-231 -93h-409v-793h-164zM287 938h395q71 0 124.5 52t53.5 122q0 72 -53.5 125t-124.5 53h-395v-352z" />
|
||||
<glyph unicode="Q" d="M102 440v613q0 158 111.5 269.5t269.5 111.5h183q157 0 267.5 -111.5t110.5 -269.5v-613q0 -90 -35 -172t-96 -143l131 -166l-108 -82l-133 170q-89 -47 -197 -47h-63q-183 0 -312 128.5t-129 311.5zM266 420q0 -114 81.5 -195.5t195.5 -81.5h63q56 0 105 21l-158 203 l109 82l157 -203q62 79 62 174v653q0 88 -63.5 152.5t-151.5 64.5h-187q-87 0 -150 -64.5t-63 -152.5v-653z" />
|
||||
<glyph unicode="R" horiz-adv-x="1126" d="M123 0v1434h582q133 0 226 -93t93 -227q0 -123 -85.5 -216t-205.5 -105q36 -25 55 -76l297 -717h-180l-272 668q-27 63 -81 94t-122 31h-143v-793h-164zM287 938h397q70 0 122 52.5t52 123.5q0 72 -51.5 124t-122.5 52h-397v-352z" />
|
||||
<glyph unicode="S" horiz-adv-x="1085" d="M82 1096q0 141 100.5 239.5t241.5 98.5h498v-144h-480q-80 0 -138 -57.5t-58 -136.5q0 -64 41.5 -120.5t101.5 -68.5l277 -57q147 -31 241 -149t94 -271q0 -178 -125.5 -304t-304.5 -126h-448v143h430q117 0 202 84.5t85 202.5q0 95 -59.5 174t-145.5 98l-287 60 q-119 25 -192.5 117.5t-73.5 216.5z" />
|
||||
<glyph unicode="T" horiz-adv-x="1044" d="M61 1290v144h922v-144h-379v-1290h-164v1290h-379z" />
|
||||
<glyph unicode="U" horiz-adv-x="1167" d="M123 440v994h164v-1014q0 -114 81 -195.5t195 -81.5h43q114 0 194.5 81.5t80.5 195.5v1014h163v-994q0 -183 -127.5 -311.5t-310.5 -128.5h-43q-183 0 -311.5 128.5t-128.5 311.5z" />
|
||||
<glyph unicode="V" d="M41 1434h172l360 -1168l361 1168h172l-451 -1434h-163z" />
|
||||
<glyph unicode="W" horiz-adv-x="2037" d="M41 1434h172l360 -1168l361 1168h172l360 -1168l361 1168h172l-451 -1434h-164l-364 1167l-365 -1167h-163z" />
|
||||
<glyph unicode="X" horiz-adv-x="1044" d="M41 0l389 756l-348 678h184l256 -502l256 502h185l-349 -678l390 -756h-185l-297 584l-297 -584h-184z" />
|
||||
<glyph unicode="Y" horiz-adv-x="1064" d="M41 1434h188l303 -512l304 512h188l-410 -676v-758h-163v758z" />
|
||||
<glyph unicode="Z" horiz-adv-x="1003" d="M41 0l676 1290h-635v144h891l-676 -1291h645v-143h-901z" />
|
||||
<glyph unicode="[" horiz-adv-x="614" d="M123 -287v1823h430v-143h-266v-1536h266v-144h-430z" />
|
||||
<glyph unicode="\" horiz-adv-x="819" d="M41 1434h172l565 -1434h-172z" />
|
||||
<glyph unicode="]" horiz-adv-x="614" d="M61 -143h267v1536h-267v143h431v-1823h-431v144z" />
|
||||
<glyph unicode="^" horiz-adv-x="1126" d="M61 532l431 902h143l430 -902h-160l-342 728l-342 -728h-160z" />
|
||||
<glyph unicode="_" horiz-adv-x="983" d="M0 -143h983v-144h-983v144z" />
|
||||
<glyph unicode="`" horiz-adv-x="675" d="M102 1434h174l287 -287h-174z" />
|
||||
<glyph unicode="a" horiz-adv-x="962" d="M82 279q0 93 65 169.5t160 100.5l369 88v131q0 47 -33.5 80t-79.5 33h-399v143h399q116 0 196.5 -79.5t80.5 -194.5v-750h-482q-119 0 -197.5 81t-78.5 198zM246 279q0 -55 32 -95.5t80 -40.5h318v349l-334 -82q-42 -11 -69 -46.5t-27 -84.5z" />
|
||||
<glyph unicode="b" horiz-adv-x="983" d="M123 0v1434h164v-410h315q117 0 198 -80t81 -196v-353q0 -164 -116 -279.5t-280 -115.5h-362zM287 143h198q95 0 163.5 68.5t68.5 163.5v391q0 47 -34 81t-81 34h-315v-738z" />
|
||||
<glyph unicode="c" horiz-adv-x="860" d="M102 375v373q0 116 81 196t198 80h418v-143h-418q-47 0 -81 -34t-34 -81v-410q0 -88 62.5 -150.5t148.5 -62.5h322v-143h-322q-155 0 -265 110t-110 265z" />
|
||||
<glyph unicode="d" horiz-adv-x="983" d="M102 395v353q0 116 81 196t198 80h315v410h164v-1434h-362q-164 0 -280 115.5t-116 279.5zM266 375q0 -95 68.5 -163.5t163.5 -68.5h198v738h-315q-47 0 -81 -34t-34 -81v-391z" />
|
||||
<glyph unicode="e" horiz-adv-x="942" d="M102 395v353q0 115 83.5 195.5t203.5 80.5h184q120 0 203.5 -80.5t83.5 -195.5q0 -95 -64.5 -173t-158.5 -100l-371 -90v-10q0 -95 67.5 -163.5t162.5 -68.5h323v-143h-323q-164 0 -279 115.5t-115 279.5zM266 537l334 81q42 9 69 44t27 86q0 54 -36.5 93.5t-86.5 39.5 h-184q-51 0 -87 -39.5t-36 -93.5v-211z" />
|
||||
<glyph unicode="f" horiz-adv-x="614" d="M123 0v1155q0 117 83 198t204 81h143v-144h-143q-51 0 -87 -39.5t-36 -95.5v-131h266v-143h-266v-881h-164z" />
|
||||
<glyph unicode="g" horiz-adv-x="983" d="M102 375v373q0 115 80.5 195.5t196.5 80.5h481v-1106q0 -164 -115 -276.5t-280 -112.5h-240v143h240q95 0 163 68.5t68 163.5v96h-219q-155 0 -265 110t-110 265zM266 356q0 -88 61.5 -150.5t149.5 -62.5h219v738h-317q-47 0 -80 -34t-33 -81v-410z" />
|
||||
<glyph unicode="h" horiz-adv-x="1003" d="M123 0v1434h164v-410h315q117 0 198 -80t81 -196v-748h-164v766q0 47 -34 81t-81 34h-315v-881h-164z" />
|
||||
<glyph unicode="i" horiz-adv-x="409" d="M123 0v1024h164v-1024h-164zM123 1229v205h164v-205h-164z" />
|
||||
<glyph unicode="j" horiz-adv-x="409" d="M-133 -328q106 0 181 68.5t75 163.5v1120h164v-1106q0 -163 -123 -276t-297 -113v143zM123 1229v205h164v-205h-164z" />
|
||||
<glyph unicode="k" horiz-adv-x="1024" d="M123 0v1434h164v-1434h-164zM287 512l483 512h213l-491 -512l491 -512h-213z" />
|
||||
<glyph unicode="l" horiz-adv-x="409" d="M123 0v1434h164v-1434h-164z" />
|
||||
<glyph unicode="m" horiz-adv-x="1597" d="M123 0v1024h102l62 -92q92 92 225 92h92q70 0 132.5 -33.5t103.5 -89.5q51 58 122.5 90.5t149.5 32.5h86q116 0 196.5 -80.5t80.5 -195.5v-748h-164v766q0 47 -33.5 81t-79.5 34h-86q-95 0 -163 -68.5t-68 -163.5v-649h-164v766q0 47 -33.5 81t-79.5 34h-92 q-95 0 -160 -68t-65 -164v-649h-164z" />
|
||||
<glyph unicode="n" horiz-adv-x="1003" d="M123 0v1024h102l62 -92q92 92 231 92h84q117 0 198 -80t81 -196v-748h-164v766q0 47 -34 81t-81 34h-84q-95 0 -163 -68.5t-68 -163.5v-649h-164z" />
|
||||
<glyph unicode="o" horiz-adv-x="983" d="M102 317v431q0 115 80.5 195.5t196.5 80.5h225q116 0 196.5 -80.5t80.5 -195.5v-431q0 -132 -92 -224.5t-224 -92.5h-147q-132 0 -224 92.5t-92 224.5zM266 297q0 -63 44.5 -108.5t107.5 -45.5h147q63 0 107.5 45.5t44.5 108.5v469q0 47 -33 81t-80 34h-225 q-46 0 -79.5 -34t-33.5 -81v-469z" />
|
||||
<glyph unicode="p" horiz-adv-x="983" d="M123 -471v1495h479q117 0 198 -80t81 -196v-353q0 -164 -116 -279.5t-280 -115.5h-198v-471h-164zM287 143h198q95 0 163.5 68.5t68.5 163.5v391q0 47 -34 81t-81 34h-315v-738z" />
|
||||
<glyph unicode="q" horiz-adv-x="983" d="M102 395v353q0 116 81 196t198 80h479v-1495h-164v471h-198q-164 0 -280 115.5t-116 279.5zM266 375q0 -95 68.5 -163.5t163.5 -68.5h198v738h-315q-47 0 -81 -34t-34 -81v-391z" />
|
||||
<glyph unicode="r" horiz-adv-x="819" d="M123 0v1024h102l62 -92q92 92 225 92h246v-143h-246q-93 0 -159 -66.5t-66 -159.5v-655h-164z" />
|
||||
<glyph unicode="s" horiz-adv-x="921" d="M82 748q0 115 83.5 195.5t203.5 80.5h409v-143h-409q-50 0 -86.5 -39.5t-36.5 -93.5q0 -48 26.5 -83.5t67.5 -46.5l274 -71q98 -25 162 -99.5t64 -171.5q0 -115 -83.5 -195.5t-203.5 -80.5h-451v143h451q50 0 86.5 39.5t36.5 93.5q0 52 -28 87t-75 47l-266 67 q-99 26 -162 98.5t-63 172.5z" />
|
||||
<glyph unicode="t" horiz-adv-x="593" d="M123 274v1160h164v-410h245v-143h-245v-607q0 -54 36 -92.5t87 -38.5h122v-143h-122q-121 0 -204 79t-83 195z" />
|
||||
<glyph unicode="u" horiz-adv-x="1003" d="M123 276v748h164v-766q0 -47 33.5 -81t80.5 -34h84q95 0 163.5 68.5t68.5 163.5v649h164v-1024h-103l-61 92q-92 -92 -232 -92h-84q-117 0 -197.5 80t-80.5 196z" />
|
||||
<glyph unicode="v" horiz-adv-x="901" d="M41 1024h172l238 -768l237 768h172l-328 -1024h-163z" />
|
||||
<glyph unicode="w" horiz-adv-x="1536" d="M41 1024h172l238 -768l237 768h160l237 -768l238 768h172l-328 -1024h-163l-238 735l-234 -735h-163z" />
|
||||
<glyph unicode="x" horiz-adv-x="880" d="M41 0l307 512l-307 512h184l215 -358q146 241 215 358h185l-308 -512l308 -512h-185l-215 358q-84 -142 -215 -358h-184z" />
|
||||
<glyph unicode="y" horiz-adv-x="1003" d="M123 276v748h164v-768q0 -47 33.5 -80t80.5 -33h78q96 0 167 66t71 160v655h164v-1106q0 -161 -117.5 -275t-282.5 -114h-235v143h239q95 0 163.5 68.5t68.5 163.5v188q-44 -44 -108.5 -68t-129.5 -24h-78q-117 0 -197.5 80t-80.5 196z" />
|
||||
<glyph unicode="z" horiz-adv-x="870" d="M41 0l512 881h-492v143h764l-512 -881h496v-143h-768z" />
|
||||
<glyph unicode="{" horiz-adv-x="614" d="M61 553v143h41q47 0 80 32.5t33 78.5v412q0 132 98.5 224.5t239.5 92.5v-143q-73 0 -123.5 -45.5t-50.5 -108.5v-412q0 -118 -98 -202q98 -84 98 -203v-412q0 -63 50.5 -108t123.5 -45v-144q-141 0 -239.5 93t-98.5 225v411q0 46 -33 78.5t-80 32.5h-41z" />
|
||||
<glyph unicode="|" horiz-adv-x="409" d="M123 0v1536h164v-1536h-164z" />
|
||||
<glyph unicode="}" horiz-adv-x="614" d="M61 -143q73 0 124 45t51 108v412q0 119 98 203q-98 84 -98 202v412q0 63 -51 108.5t-124 45.5v143q141 0 239.5 -92.5t98.5 -224.5v-412q0 -46 33 -78.5t80 -32.5h41v-143h-41q-47 0 -80 -32.5t-33 -78.5v-411q0 -132 -98.5 -225t-239.5 -93v144z" />
|
||||
<glyph unicode="~" horiz-adv-x="1085" d="M82 451q0 105 78.5 180.5t177.5 75.5q54 0 104 -23t88.5 -56t74 -66t75 -56t78.5 -23q36 0 69 34t33 77h144q0 -105 -78.5 -180.5t-177.5 -75.5q-54 0 -104 23t-88.5 56t-74 65.5t-75 55.5t-78.5 23q-37 0 -70 -33.5t-33 -76.5h-143z" />
|
||||
<glyph unicode="¡" horiz-adv-x="430" d="M123 1249v185h184v-185h-184zM133 0v1106h164v-1106h-164z" />
|
||||
<glyph unicode="¢" horiz-adv-x="901" d="M102 375v373q0 116 81 196t198 80h90v102h164v-102h205v-143h-205v-738h205v-143h-205v-184h-164v184q-101 1 -186 51.5t-134 136.5t-49 187zM266 356q0 -86 60 -149t145 -64v738h-90q-47 0 -81 -34t-34 -81v-410z" />
|
||||
<glyph unicode="£" horiz-adv-x="1064" d="M82 0v143q97 0 166 61.5t69 149.5v439h-235v145h235v127q0 155 109.5 262t265.5 107h291v-144h-293q-86 0 -147.5 -62.5t-61.5 -148.5v-141h502v-145h-502v-424q0 -129 -82 -226h584v-143h-901z" />
|
||||
<glyph unicode="¤" horiz-adv-x="1105" d="M86 262l96 125q-49 71 -49 172v352q0 81 49 152q-76 96 -96 123l127 100l90 -117q45 19 107 19h286q60 0 105 -19l92 117l127 -98l-96 -125q49 -71 49 -152v-352q0 -96 -49 -172q14 -18 48 -63t48 -62l-127 -100l-92 117q-65 -35 -144 -35h-208q-74 0 -146 37l-90 -119z M297 541q0 -63 44.5 -108.5t107.5 -45.5h208q63 0 107.5 45.5t44.5 108.5v389q0 47 -33.5 80.5t-79.5 33.5h-286q-46 0 -79.5 -33.5t-33.5 -80.5v-389z" />
|
||||
<glyph unicode="¥" horiz-adv-x="1064" d="M41 1434h188l303 -492l304 492h188l-309 -496h237v-145h-329l-9 -15v-164h338v-143h-338v-471h-163v471h-359v143h359v164l-11 15h-348v145h258z" />
|
||||
<glyph unicode="¦" horiz-adv-x="409" d="M123 0v614h164v-614h-164zM123 922v614h164v-614h-164z" />
|
||||
<glyph unicode="§" horiz-adv-x="942" d="M82 748q0 132 102 215q-100 77 -100 200q0 114 83.5 192.5t203.5 78.5h407v-144h-407q-50 0 -86.5 -37t-36.5 -90q0 -46 29.5 -84t70.5 -47l287 -69q101 -25 163 -102.5t62 -180.5q0 -122 -108 -209q88 -81 88 -197q0 -111 -84 -192.5t-203 -81.5h-451v143h451 q50 0 86.5 39.5t36.5 93.5q0 46 -29 81t-72 46l-268 68q-99 26 -162 99.5t-63 177.5zM246 748q0 -48 30.5 -88.5t71.5 -49.5l225 -57q48 2 85.5 41t37.5 92q0 46 -29.5 86t-70.5 49l-227 53q-48 -2 -85.5 -39t-37.5 -87z" />
|
||||
<glyph unicode="¨" horiz-adv-x="737" d="M102 1178v163h164v-163h-164zM471 1178v163h164v-163h-164z" />
|
||||
<glyph unicode="©" horiz-adv-x="1515" d="M102 532v447q0 93 36 177t96.5 145t144.5 97t176 36h406q123 0 227 -60.5t164.5 -165.5t60.5 -229v-447q0 -146 -70.5 -268.5t-192.5 -193t-267 -70.5h-250q-221 0 -376 155t-155 377zM266 532q0 -160 113.5 -274.5t273.5 -114.5h209q160 0 273.5 114.5t113.5 274.5v447 q0 128 -91 219.5t-218 91.5h-365q-127 0 -218 -91.5t-91 -219.5v-447zM430 586v321q0 91 64 155t155 64h375v-135h-360q-37 0 -63 -26.5t-26 -63.5v-307q0 -63 44.5 -108.5t107.5 -45.5h297v-133h-315q-116 0 -197.5 81t-81.5 198z" />
|
||||
<glyph unicode="ª" horiz-adv-x="675" d="M82 983q0 61 38.5 108t100.5 64l203 53v54q0 19 -13.5 34t-33.5 15h-254v123h260q76 0 128 -54t52 -131v-450h-297q-78 0 -131 54t-53 130zM211 987q0 -26 17 -45.5t38 -19.5h158v168l-166 -41q-22 -6 -34.5 -23.5t-12.5 -38.5z" />
|
||||
<glyph unicode="«" horiz-adv-x="962" d="M61 512l287 410h178l-286 -410l286 -410h-178zM430 512l287 410h178l-287 -410l287 -410h-178z" />
|
||||
<glyph unicode="¬" horiz-adv-x="1187" d="M82 594v143h983v-430h-164v287h-819z" />
|
||||
<glyph unicode="­" horiz-adv-x="675" d="M82 451v143h512v-143h-512z" />
|
||||
<glyph unicode="®" horiz-adv-x="1515" d="M102 532v447q0 93 36 177t96.5 145t144.5 97t176 36h406q123 0 227 -60.5t164.5 -165.5t60.5 -229v-447q0 -146 -70.5 -268.5t-192.5 -193t-267 -70.5h-250q-221 0 -376 155t-155 377zM266 532q0 -160 113.5 -274.5t273.5 -114.5h209q160 0 273.5 114.5t113.5 274.5v447 q0 128 -91 219.5t-218 91.5h-365q-127 0 -218 -91.5t-91 -219.5v-447zM471 307v819h354q86 0 147.5 -61t61.5 -147q0 -66 -42.5 -121.5t-104.5 -79.5l200 -410h-157l-170 359q-20 45 -72 45h-63v-404h-154zM625 840h180q30 0 53 21t23 54t-23 54.5t-53 21.5h-180v-151z" />
|
||||
<glyph unicode="¯" horiz-adv-x="696" d="M113 1167v123h471v-123h-471z" />
|
||||
<glyph unicode="°" horiz-adv-x="757" d="M113 1167q0 110 78 188.5t188 78.5t188 -78.5t78 -188.5t-78 -188t-188 -78t-188 78t-78 188zM256 1167q0 -51 36 -87t87 -36t87 36t36 87t-36 87t-87 36t-87 -36t-36 -87z" />
|
||||
<glyph unicode="±" d="M82 0v143h983v-143h-983zM82 573v144h410v348h163v-348h410v-144h-410v-348h-163v348h-410z" />
|
||||
<glyph unicode="²" horiz-adv-x="675" d="M102 717v205q0 80 48.5 143t125.5 82l127 31q18 5 33 24t15 41q0 26 -20.5 47t-45.5 21h-242v123h252q82 0 140.5 -57t58.5 -134q0 -67 -42 -118t-106 -66l-118 -29q-34 -7 -58 -39t-24 -69v-82h327v-123h-471z" />
|
||||
<glyph unicode="³" horiz-adv-x="634" d="M82 717v123h231q42 0 72.5 29.5t30.5 72.5v62q0 30 -21.5 50.5t-52.5 20.5h-219v123h225q20 0 36.5 16.5t16.5 38.5q0 23 -15.5 40.5t-37.5 17.5h-266v123h266q74 0 132.5 -54t58.5 -127q0 -30 -16 -63t-40 -55q76 -69 76 -146v-43q0 -94 -75.5 -161.5t-172.5 -67.5h-229 z" />
|
||||
<glyph unicode="´" horiz-adv-x="675" d="M102 1147l287 287h174l-284 -287h-177z" />
|
||||
<glyph unicode="¶" horiz-adv-x="1126" d="M82 1167q0 112 77.5 189.5t188.5 77.5h656v-1434h-164v1290h-185v-1290h-163v901h-144q-110 0 -188 78t-78 188zM246 1167q0 -50 36 -86.5t87 -36.5h123v246h-123q-51 0 -87 -36t-36 -87z" />
|
||||
<glyph unicode="·" horiz-adv-x="430" d="M123 635v184h184v-184h-184z" />
|
||||
<glyph unicode="¸" horiz-adv-x="614" d="M113 -262q100 -49 163 -49q38 0 65.5 22t27.5 53q0 38 -24 60t-58 22h-103l72 174h123l-41 -81q69 -8 116.5 -61.5t47.5 -123.5q0 -76 -58.5 -130t-136.5 -54q-45 0 -93.5 11t-74.5 23l-26 11v123z" />
|
||||
<glyph unicode="¹" horiz-adv-x="430" d="M82 1311v123h225v-717h-143v594h-82z" />
|
||||
<glyph unicode="º" horiz-adv-x="696" d="M102 1006v247q0 77 52 129t129 52h133q75 0 126.5 -52.5t51.5 -128.5v-247q0 -87 -59 -147t-146 -60h-88q-85 0 -142 60t-57 147zM236 989q0 -28 18 -47.5t47 -19.5h90q29 0 49.5 19.5t20.5 47.5v277q0 17 -13 31t-30 14h-135q-20 0 -33.5 -13.5t-13.5 -31.5v-277z" />
|
||||
<glyph unicode="»" horiz-adv-x="962" d="M68 102l286 410l-286 410h178l286 -410l-286 -410h-178zM436 102l287 410l-287 410h178l287 -410l-287 -410h-178z" />
|
||||
<glyph unicode="¼" d="M61 0l768 1434h164l-768 -1434h-164zM82 1311v123h225v-717h-143v594h-82zM512 184l287 533h157l-221 -410h105v123h143v-123h82v-123h-82v-184h-143v184h-328z" />
|
||||
<glyph unicode="½" horiz-adv-x="1249" d="M61 0l768 1434h164l-768 -1434h-164zM82 1311v123h225v-717h-143v594h-82zM676 0v205q0 80 48.5 143t125.5 82l127 31q18 5 32.5 24t14.5 41q0 26 -20.5 47t-45.5 21h-241v123h252q82 0 140 -57t58 -134q0 -67 -41.5 -118t-105.5 -66l-119 -29q-34 -7 -58 -39t-24 -69 v-82h328v-123h-471z" />
|
||||
<glyph unicode="¾" horiz-adv-x="1249" d="M82 717v123h199q42 0 72 29t30 73v62q0 30 -21.5 50.5t-52.5 20.5h-186v123h192q21 0 37.5 17t16.5 38q0 23 -16 40.5t-38 17.5h-233v123h233q74 0 132.5 -54t58.5 -127q0 -30 -15.5 -63t-39.5 -55q75 -68 75 -146v-43q0 -94 -75 -161.5t-172 -67.5h-197zM180 0l768 1434 h164l-768 -1434h-164zM614 184l287 533h158l-221 -410h104v123h143v-123h82v-123h-82v-184h-143v184h-328z" />
|
||||
<glyph unicode="¿" horiz-adv-x="983" d="M82 338q0 119 73 207.5t183 113.5l235 54q57 12 95.5 60t38.5 108v225h163v-225q0 -107 -70.5 -192.5t-174.5 -110.5l-236 -56q-60 -14 -101.5 -67t-41.5 -117q0 -78 57.5 -136.5t136.5 -58.5h471v-143h-491q-138 0 -238 100t-100 238zM696 1249v185h185v-185h-185z" />
|
||||
<glyph unicode="À" d="M41 0l451 1434h163l451 -1434h-172l-133 430h-455l-133 -430h-172zM344 1843h174l287 -287h-174zM389 573h367l-183 594z" />
|
||||
<glyph unicode="Á" d="M41 0l451 1434h163l451 -1434h-172l-133 430h-455l-133 -430h-172zM385 1556l287 287h174l-285 -287h-176zM389 573h367l-183 594z" />
|
||||
<glyph unicode="Â" d="M41 0l451 1434h163l451 -1434h-172l-133 430h-455l-133 -430h-172zM246 1556l327 328l328 -328h-174l-154 154l-153 -154h-174zM389 573h367l-183 594z" />
|
||||
<glyph unicode="Ã" d="M41 0l451 1434h163l451 -1434h-172l-133 430h-455l-133 -430h-172zM256 1649q0 90 47.5 147t142.5 57q35 0 67.5 -16.5t56.5 -39.5t46 -46.5t45.5 -40t45.5 -16.5q30 0 50.5 23.5t20.5 54.5h113q0 -90 -48 -147.5t-143 -57.5q-43 0 -82.5 25t-64.5 54.5t-55.5 54.5 t-57.5 25q-30 0 -50.5 -23t-20.5 -54h-113zM389 573h367l-183 594z" />
|
||||
<glyph unicode="Ä" d="M41 0l451 1434h163l451 -1434h-172l-133 430h-455l-133 -430h-172zM307 1556v164h164v-164h-164zM389 573h367l-183 594zM676 1556v164h164v-164h-164z" />
|
||||
<glyph unicode="Å" d="M41 0l451 1434h163l451 -1434h-172l-133 430h-455l-133 -430h-172zM358 1751q0 89 63 152t152 63t152 -63t63 -152t-63 -152t-152 -63t-152 63t-63 152zM389 573h367l-183 594zM471 1751q0 -43 29.5 -72.5t72.5 -29.5t73 29.5t30 72.5t-30 72.5t-73 29.5t-72.5 -29.5 t-29.5 -72.5z" />
|
||||
<glyph unicode="Æ" horiz-adv-x="1720" d="M41 0l573 1434h1045v-144h-844l76 -352h686v-145h-655l141 -650h596v-143h-731l-94 430h-453l-172 -430h-168zM436 573h367q-23 110 -66 303.5t-63 288.5z" />
|
||||
<glyph unicode="Ç" horiz-adv-x="1024" d="M102 518v535q0 158 111.5 269.5t269.5 111.5h480v-144h-480q-88 0 -152.5 -64.5t-64.5 -152.5v-573q0 -146 105 -251.5t250 -105.5h342v-143h-277l-31 -61q69 -8 116.5 -61.5t47.5 -123.5q0 -76 -58.5 -130t-135.5 -54q-45 0 -94 11t-75 23l-26 11v123q101 -49 164 -49 q38 0 65 22t27 53q0 38 -24 60t-58 22h-102l63 156q-196 20 -329.5 168t-133.5 348z" />
|
||||
<glyph unicode="È" horiz-adv-x="1024" d="M123 0v1434h840v-144h-676v-352h594v-145h-594v-650h676v-143h-840zM303 1843h174l287 -287h-174z" />
|
||||
<glyph unicode="É" horiz-adv-x="1024" d="M123 0v1434h840v-144h-676v-352h594v-145h-594v-650h676v-143h-840zM365 1556l286 287h174l-284 -287h-176z" />
|
||||
<glyph unicode="Ê" horiz-adv-x="1024" d="M123 0v1434h840v-144h-676v-352h594v-145h-594v-650h676v-143h-840zM215 1556l328 328l327 -328h-174l-153 154l-154 -154h-174z" />
|
||||
<glyph unicode="Ë" horiz-adv-x="1024" d="M123 0v1434h840v-144h-676v-352h594v-145h-594v-650h676v-143h-840zM276 1556v164h164v-164h-164zM645 1556v164h164v-164h-164z" />
|
||||
<glyph unicode="Ì" horiz-adv-x="409" d="M-51 1843h174l164 -164v-123h-54zM123 0v1434h164v-1434h-164z" />
|
||||
<glyph unicode="Í" horiz-adv-x="409" d="M123 0v1434h164v-1434h-164zM123 1556v123l164 164h174l-285 -287h-53z" />
|
||||
<glyph unicode="Î" horiz-adv-x="409" d="M0 1556v123l205 205l205 -205v-123h-52l-153 154l-154 -154h-51zM123 0v1434h164v-1434h-164z" />
|
||||
<glyph unicode="Ï" horiz-adv-x="409" d="M0 1556v164h154v-164h-154zM123 0v1434h164v-1434h-164zM256 1556v164h154v-164h-154z" />
|
||||
<glyph unicode="Ð" horiz-adv-x="1269" d="M61 793v145h185v496h538q158 0 270.5 -111.5t112.5 -269.5v-535q0 -106 -41 -202t-111 -165t-166 -110t-202 -41h-401v793h-185zM410 143h245q145 0 247 101.5t102 247.5v585q0 87 -64 150t-152 63h-378v-352h184v-145h-184v-650z" />
|
||||
<glyph unicode="Ñ" horiz-adv-x="1167" d="M123 0v1434h170l588 -1106v1106h163v-1434h-167l-590 1106v-1106h-164zM266 1649q0 90 48 147t143 57q43 0 82.5 -25t64.5 -54.5t55.5 -54.5t57.5 -25q30 0 50.5 23.5t20.5 54.5h113q0 -91 -47.5 -148t-142.5 -57q-43 0 -82.5 25t-64.5 54.5t-55.5 54.5t-57.5 25 q-30 0 -51 -23t-21 -54h-113z" />
|
||||
<glyph unicode="Ò" d="M102 440v613q0 158 111.5 269.5t269.5 111.5h183q157 0 267.5 -111.5t110.5 -269.5v-613q0 -183 -127.5 -311.5t-310.5 -128.5h-63q-183 0 -312 128.5t-129 311.5zM266 420q0 -114 81.5 -195.5t195.5 -81.5h63q113 0 194 81.5t81 195.5v653q0 88 -63.5 152.5t-151.5 64.5 h-187q-87 0 -150 -64.5t-63 -152.5v-653zM342 1843h174l287 -287h-174z" />
|
||||
<glyph unicode="Ó" d="M102 440v613q0 158 111.5 269.5t269.5 111.5h183q157 0 267.5 -111.5t110.5 -269.5v-613q0 -183 -127.5 -311.5t-310.5 -128.5h-63q-183 0 -312 128.5t-129 311.5zM266 420q0 -114 81.5 -195.5t195.5 -81.5h63q113 0 194 81.5t81 195.5v653q0 88 -63.5 152.5t-151.5 64.5 h-187q-87 0 -150 -64.5t-63 -152.5v-653zM385 1556l287 287h174l-285 -287h-176z" />
|
||||
<glyph unicode="Ô" d="M102 440v613q0 158 111.5 269.5t269.5 111.5h183q157 0 267.5 -111.5t110.5 -269.5v-613q0 -183 -127.5 -311.5t-310.5 -128.5h-63q-183 0 -312 128.5t-129 311.5zM246 1556l327 328l328 -328h-174l-154 154l-153 -154h-174zM266 420q0 -114 81.5 -195.5t195.5 -81.5h63 q113 0 194 81.5t81 195.5v653q0 88 -63.5 152.5t-151.5 64.5h-187q-87 0 -150 -64.5t-63 -152.5v-653z" />
|
||||
<glyph unicode="Õ" d="M102 440v613q0 158 111.5 269.5t269.5 111.5h183q157 0 267.5 -111.5t110.5 -269.5v-613q0 -183 -127.5 -311.5t-310.5 -128.5h-63q-183 0 -312 128.5t-129 311.5zM256 1649q0 90 47.5 147t142.5 57q35 0 67.5 -16.5t56.5 -39.5t46 -46.5t45.5 -40t45.5 -16.5 q30 0 50.5 23.5t20.5 54.5h113q0 -90 -48 -147.5t-143 -57.5q-43 0 -82.5 25t-64.5 54.5t-55.5 54.5t-57.5 25q-30 0 -50.5 -23t-20.5 -54h-113zM266 420q0 -114 81.5 -195.5t195.5 -81.5h63q113 0 194 81.5t81 195.5v653q0 88 -63.5 152.5t-151.5 64.5h-187 q-87 0 -150 -64.5t-63 -152.5v-653z" />
|
||||
<glyph unicode="Ö" d="M102 440v613q0 158 111.5 269.5t269.5 111.5h183q157 0 267.5 -111.5t110.5 -269.5v-613q0 -183 -127.5 -311.5t-310.5 -128.5h-63q-183 0 -312 128.5t-129 311.5zM266 420q0 -114 81.5 -195.5t195.5 -81.5h63q113 0 194 81.5t81 195.5v653q0 88 -63.5 152.5t-151.5 64.5 h-187q-87 0 -150 -64.5t-63 -152.5v-653zM307 1556v164h164v-164h-164zM676 1556v164h164v-164h-164z" />
|
||||
<glyph unicode="×" d="M61 113l400 399l-400 399l113 113l399 -399l400 399l112 -113l-399 -399l399 -399l-112 -113l-400 399l-399 -399z" />
|
||||
<glyph unicode="Ø" d="M102 440v613q0 158 111.5 269.5t269.5 111.5h183q38 0 96 -15l49 117h172l-78 -188q65 -54 102 -131t37 -164v-613q0 -183 -127.5 -311.5t-310.5 -128.5h-63q-95 0 -181 39l-67 -162h-172l104 254q-125 128 -125 309zM266 420q0 -65 29 -125l412 991q-24 4 -41 4h-187 q-87 0 -150 -64.5t-63 -152.5v-653zM418 172q60 -29 125 -29h63q113 0 194 81.5t81 195.5v653q0 68 -39 123z" />
|
||||
<glyph unicode="Ù" horiz-adv-x="1167" d="M123 440v994h164v-1014q0 -114 81 -195.5t195 -81.5h43q114 0 194.5 81.5t80.5 195.5v1014h163v-994q0 -183 -127.5 -311.5t-310.5 -128.5h-43q-183 0 -311.5 128.5t-128.5 311.5zM352 1843h174l287 -287h-174z" />
|
||||
<glyph unicode="Ú" horiz-adv-x="1167" d="M123 440v994h164v-1014q0 -114 81 -195.5t195 -81.5h43q114 0 194.5 81.5t80.5 195.5v1014h163v-994q0 -183 -127.5 -311.5t-310.5 -128.5h-43q-183 0 -311.5 128.5t-128.5 311.5zM395 1556l287 287h174l-285 -287h-176z" />
|
||||
<glyph unicode="Û" horiz-adv-x="1167" d="M123 440v994h164v-1014q0 -114 81 -195.5t195 -81.5h43q114 0 194.5 81.5t80.5 195.5v1014h163v-994q0 -183 -127.5 -311.5t-310.5 -128.5h-43q-183 0 -311.5 128.5t-128.5 311.5zM256 1556l328 328l327 -328h-174l-153 154l-154 -154h-174z" />
|
||||
<glyph unicode="Ü" horiz-adv-x="1167" d="M123 440v994h164v-1014q0 -114 81 -195.5t195 -81.5h43q114 0 194.5 81.5t80.5 195.5v1014h163v-994q0 -183 -127.5 -311.5t-310.5 -128.5h-43q-183 0 -311.5 128.5t-128.5 311.5zM317 1556v164h164v-164h-164zM686 1556v164h164v-164h-164z" />
|
||||
<glyph unicode="Ý" horiz-adv-x="1064" d="M41 1434h188l303 -512l304 512h188l-410 -676v-758h-163v758zM344 1556l287 287h174l-285 -287h-176z" />
|
||||
<glyph unicode="Þ" horiz-adv-x="1085" d="M123 0v1434h164v-297h336q157 0 269 -110.5t112 -268.5v-41q0 -157 -112 -268t-269 -111h-336v-338h-164zM287 483h340q88 0 150.5 62.5t62.5 150.5v82q0 88 -62.5 151.5t-150.5 63.5h-340v-510z" />
|
||||
<glyph unicode="ß" horiz-adv-x="962" d="M123 0v1155q0 117 83 198t204 81h61q121 0 204 -81t83 -198v-274h-111q-36 -3 -61 -31t-25 -64q0 -31 22 -60t52 -36q114 -28 186 -120t72 -214q0 -145 -98.5 -250.5t-241.5 -105.5h-133v143h119q80 0 135 63.5t55 149.5q0 68 -42.5 123t-106.5 74q-77 21 -130 85.5 t-53 147.5q0 86 57 155.5t140 82.5v131q0 56 -36 95.5t-87 39.5h-61q-51 0 -87 -39.5t-36 -95.5v-1155h-164z" />
|
||||
<glyph unicode="à" horiz-adv-x="962" d="M82 279q0 93 65 169.5t160 100.5l369 88v131q0 47 -33.5 80t-79.5 33h-399v143h399q116 0 196.5 -79.5t80.5 -194.5v-750h-482q-119 0 -197.5 81t-78.5 198zM242 1434h174l286 -287h-174zM246 279q0 -55 32 -95.5t80 -40.5h318v349l-334 -82q-42 -11 -69 -46.5t-27 -84.5 z" />
|
||||
<glyph unicode="á" horiz-adv-x="962" d="M82 279q0 93 65 169.5t160 100.5l369 88v131q0 47 -33.5 80t-79.5 33h-399v143h399q116 0 196.5 -79.5t80.5 -194.5v-750h-482q-119 0 -197.5 81t-78.5 198zM246 279q0 -55 32 -95.5t80 -40.5h318v349l-334 -82q-42 -11 -69 -46.5t-27 -84.5zM303 1147l287 287h174 l-285 -287h-176z" />
|
||||
<glyph unicode="â" horiz-adv-x="962" d="M82 279q0 93 65 169.5t160 100.5l369 88v131q0 47 -33.5 80t-79.5 33h-399v143h399q116 0 196.5 -79.5t80.5 -194.5v-750h-482q-119 0 -197.5 81t-78.5 198zM164 1147l328 328l327 -328h-174l-153 153l-154 -153h-174zM246 279q0 -55 32 -95.5t80 -40.5h318v349l-334 -82 q-42 -11 -69 -46.5t-27 -84.5z" />
|
||||
<glyph unicode="ã" horiz-adv-x="962" d="M82 279q0 93 65 169.5t160 100.5l369 88v131q0 47 -33.5 80t-79.5 33h-399v143h399q116 0 196.5 -79.5t80.5 -194.5v-750h-482q-119 0 -197.5 81t-78.5 198zM164 1239q0 91 47.5 148t142.5 57q43 0 82.5 -25t64.5 -55t55.5 -55t57.5 -25q30 0 51 23.5t21 54.5h113 q0 -90 -48 -147.5t-143 -57.5q-43 0 -82.5 25t-64.5 55t-55.5 55t-57.5 25q-30 0 -51 -23.5t-21 -54.5h-112zM246 279q0 -55 32 -95.5t80 -40.5h318v349l-334 -82q-42 -11 -69 -46.5t-27 -84.5z" />
|
||||
<glyph unicode="ä" horiz-adv-x="962" d="M82 279q0 93 65 169.5t160 100.5l369 88v131q0 47 -33.5 80t-79.5 33h-399v143h399q116 0 196.5 -79.5t80.5 -194.5v-750h-482q-119 0 -197.5 81t-78.5 198zM215 1167v164h164v-164h-164zM246 279q0 -55 32 -95.5t80 -40.5h318v349l-334 -82q-42 -11 -69 -46.5t-27 -84.5 zM584 1167v164h164v-164h-164z" />
|
||||
<glyph unicode="å" horiz-adv-x="962" d="M82 279q0 93 65 169.5t160 100.5l369 88v131q0 47 -33.5 80t-79.5 33h-399v143h399q116 0 196.5 -79.5t80.5 -194.5v-750h-482q-119 0 -197.5 81t-78.5 198zM246 279q0 -55 32 -95.5t80 -40.5h318v349l-334 -82q-42 -11 -69 -46.5t-27 -84.5zM266 1341q0 89 63 152 t152 63t152 -63t63 -152t-63 -152t-152 -63t-152 63t-63 152zM379 1341q0 -43 29.5 -72.5t72.5 -29.5t73 29.5t30 72.5t-30 73t-73 30t-72.5 -30t-29.5 -73z" />
|
||||
<glyph unicode="æ" horiz-adv-x="1515" d="M82 279q0 93 65 169.5t160 100.5l369 88v131q0 47 -33.5 80t-79.5 33h-399v143h399q115 0 197 -82q82 82 203 82h184q120 0 203.5 -80.5t83.5 -195.5q0 -97 -65 -174t-159 -99l-370 -90v-20q3 -93 69.5 -157.5t159.5 -64.5h324v-143h-324q-128 0 -229 72v-72h-482 q-119 0 -197.5 81t-78.5 198zM246 279q0 -55 32 -95.5t80 -40.5h318v349l-334 -82q-42 -11 -69 -46.5t-27 -84.5zM840 537l334 81q43 9 69.5 43.5t26.5 86.5q0 54 -36.5 93.5t-86.5 39.5h-184q-49 0 -84.5 -36.5t-38.5 -86.5v-221z" />
|
||||
<glyph unicode="ç" horiz-adv-x="860" d="M102 375v373q0 116 81 196t198 80h418v-143h-418q-47 0 -81 -34t-34 -81v-410q0 -88 62.5 -150.5t148.5 -62.5h322v-143h-254l-31 -61q69 -8 116.5 -61.5t47.5 -123.5q0 -76 -58.5 -130t-136.5 -54q-45 0 -93.5 11t-74.5 23l-26 11v123q101 -49 164 -49q38 0 65 22t27 53 q0 38 -24 60t-58 22h-103l64 158q-137 19 -229.5 124t-92.5 247z" />
|
||||
<glyph unicode="è" horiz-adv-x="942" d="M102 395v353q0 115 83.5 195.5t203.5 80.5h184q120 0 203.5 -80.5t83.5 -195.5q0 -95 -64.5 -173t-158.5 -100l-371 -90v-10q0 -95 67.5 -163.5t162.5 -68.5h323v-143h-323q-164 0 -279 115.5t-115 279.5zM240 1434h174l286 -287h-174zM266 537l334 81q42 9 69 44t27 86 q0 54 -36.5 93.5t-86.5 39.5h-184q-51 0 -87 -39.5t-36 -93.5v-211z" />
|
||||
<glyph unicode="é" horiz-adv-x="942" d="M102 395v353q0 115 83.5 195.5t203.5 80.5h184q120 0 203.5 -80.5t83.5 -195.5q0 -95 -64.5 -173t-158.5 -100l-371 -90v-10q0 -95 67.5 -163.5t162.5 -68.5h323v-143h-323q-164 0 -279 115.5t-115 279.5zM266 537l334 81q42 9 69 44t27 86q0 54 -36.5 93.5t-86.5 39.5 h-184q-51 0 -87 -39.5t-36 -93.5v-211zM303 1147l287 287h174l-285 -287h-176z" />
|
||||
<glyph unicode="ê" horiz-adv-x="942" d="M102 395v353q0 115 83.5 195.5t203.5 80.5h184q120 0 203.5 -80.5t83.5 -195.5q0 -95 -64.5 -173t-158.5 -100l-371 -90v-10q0 -95 67.5 -163.5t162.5 -68.5h323v-143h-323q-164 0 -279 115.5t-115 279.5zM154 1147l327 328l328 -328h-174l-154 153l-153 -153h-174z M266 537l334 81q42 9 69 44t27 86q0 54 -36.5 93.5t-86.5 39.5h-184q-51 0 -87 -39.5t-36 -93.5v-211z" />
|
||||
<glyph unicode="ë" horiz-adv-x="942" d="M102 395v353q0 115 83.5 195.5t203.5 80.5h184q120 0 203.5 -80.5t83.5 -195.5q0 -95 -64.5 -173t-158.5 -100l-371 -90v-10q0 -95 67.5 -163.5t162.5 -68.5h323v-143h-323q-164 0 -279 115.5t-115 279.5zM215 1167v164h164v-164h-164zM266 537l334 81q42 9 69 44t27 86 q0 54 -36.5 93.5t-86.5 39.5h-184q-51 0 -87 -39.5t-36 -93.5v-211zM584 1167v164h164v-164h-164z" />
|
||||
<glyph unicode="ì" horiz-adv-x="409" d="M0 1341v93h82l205 -205v-82h-94zM123 0v1024h164v-1024h-164z" />
|
||||
<glyph unicode="í" horiz-adv-x="409" d="M123 0v1024h164v-1024h-164zM123 1147v82l205 205h82v-93l-193 -194h-94z" />
|
||||
<glyph unicode="î" horiz-adv-x="409" d="M51 1147v174l154 154l153 -154v-174l-153 153zM123 0v1024h164v-1024h-164z" />
|
||||
<glyph unicode="ï" horiz-adv-x="409" d="M20 1167v164h144v-164h-144zM123 0v1024h164v-1024h-164zM246 1167v164h143v-164h-143z" />
|
||||
<glyph unicode="ð" horiz-adv-x="1003" d="M102 375v272q0 132 93 224t225 92h166q83 0 151 -41v102q0 58 -26 115l-179 -115v143l103 66q-73 57 -164 57h-287v144h287q166 0 293 -117l178 117v-144l-102 -67q61 -99 61 -219v-629q0 -155 -110 -265t-265 -110h-49q-155 0 -265 110t-110 265zM266 354q0 -87 62 -149 t149 -62h49q88 0 149.5 61.5t61.5 149.5v312q0 63 -44 108t-107 45h-166q-63 0 -108.5 -45t-45.5 -108v-312z" />
|
||||
<glyph unicode="ñ" horiz-adv-x="1003" d="M123 0v1024h102l62 -92q92 92 231 92h84q117 0 198 -80t81 -196v-748h-164v766q0 47 -34 81t-81 34h-84q-95 0 -163 -68.5t-68 -163.5v-649h-164zM184 1239q0 90 48 147.5t143 57.5q43 0 82.5 -25t64.5 -55t55.5 -55t57.5 -25q30 0 51 23.5t21 54.5h112q0 -91 -47.5 -148 t-142.5 -57q-43 0 -82.5 25t-64.5 55t-55.5 55t-57.5 25q-30 0 -51 -23.5t-21 -54.5h-113z" />
|
||||
<glyph unicode="ò" horiz-adv-x="983" d="M102 317v431q0 115 80.5 195.5t196.5 80.5h225q116 0 196.5 -80.5t80.5 -195.5v-431q0 -132 -92 -224.5t-224 -92.5h-147q-132 0 -224 92.5t-92 224.5zM252 1434h174l287 -287h-174zM266 297q0 -63 44.5 -108.5t107.5 -45.5h147q63 0 107.5 45.5t44.5 108.5v469 q0 47 -33 81t-80 34h-225q-46 0 -79.5 -34t-33.5 -81v-469z" />
|
||||
<glyph unicode="ó" horiz-adv-x="983" d="M102 317v431q0 115 80.5 195.5t196.5 80.5h225q116 0 196.5 -80.5t80.5 -195.5v-431q0 -132 -92 -224.5t-224 -92.5h-147q-132 0 -224 92.5t-92 224.5zM266 297q0 -63 44.5 -108.5t107.5 -45.5h147q63 0 107.5 45.5t44.5 108.5v469q0 47 -33 81t-80 34h-225 q-46 0 -79.5 -34t-33.5 -81v-469zM313 1147l287 287h174l-285 -287h-176z" />
|
||||
<glyph unicode="ô" horiz-adv-x="983" d="M102 317v431q0 115 80.5 195.5t196.5 80.5h225q116 0 196.5 -80.5t80.5 -195.5v-431q0 -132 -92 -224.5t-224 -92.5h-147q-132 0 -224 92.5t-92 224.5zM164 1147l328 328l327 -328h-174l-153 153l-154 -153h-174zM266 297q0 -63 44.5 -108.5t107.5 -45.5h147 q63 0 107.5 45.5t44.5 108.5v469q0 47 -33 81t-80 34h-225q-46 0 -79.5 -34t-33.5 -81v-469z" />
|
||||
<glyph unicode="õ" horiz-adv-x="983" d="M102 317v431q0 115 80.5 195.5t196.5 80.5h225q116 0 196.5 -80.5t80.5 -195.5v-431q0 -132 -92 -224.5t-224 -92.5h-147q-132 0 -224 92.5t-92 224.5zM174 1239q0 90 48 147.5t143 57.5q43 0 82.5 -25t64.5 -55t55.5 -55t57.5 -25q30 0 50.5 23.5t20.5 54.5h113 q0 -90 -48 -147.5t-143 -57.5q-43 0 -82.5 25t-64.5 55t-55.5 55t-57.5 25q-30 0 -50.5 -23.5t-20.5 -54.5h-113zM266 297q0 -63 44.5 -108.5t107.5 -45.5h147q63 0 107.5 45.5t44.5 108.5v469q0 47 -33 81t-80 34h-225q-46 0 -79.5 -34t-33.5 -81v-469z" />
|
||||
<glyph unicode="ö" horiz-adv-x="983" d="M102 317v431q0 115 80.5 195.5t196.5 80.5h225q116 0 196.5 -80.5t80.5 -195.5v-431q0 -132 -92 -224.5t-224 -92.5h-147q-132 0 -224 92.5t-92 224.5zM225 1167v164h164v-164h-164zM266 297q0 -63 44.5 -108.5t107.5 -45.5h147q63 0 107.5 45.5t44.5 108.5v469 q0 47 -33 81t-80 34h-225q-46 0 -79.5 -34t-33.5 -81v-469zM594 1167v164h164v-164h-164z" />
|
||||
<glyph unicode="÷" horiz-adv-x="1126" d="M82 451v143h962v-143h-962zM471 143v185h184v-185h-184zM471 717v184h184v-184h-184z" />
|
||||
<glyph unicode="ø" horiz-adv-x="983" d="M92 -123l107 211q-97 94 -97 229v431q0 115 80.5 195.5t196.5 80.5h225q26 0 66 -8l57 110h164l-92 -182q82 -85 82 -196v-431q0 -132 -92 -224.5t-224 -92.5h-147q-48 0 -92 12l-70 -135h-164zM266 297q0 -35 10 -57l326 641h-223q-46 0 -79.5 -34t-33.5 -81v-469z M393 145q8 -2 25 -2h147q63 0 107.5 45.5t44.5 108.5v469q0 10 -2 14z" />
|
||||
<glyph unicode="ù" horiz-adv-x="1003" d="M123 276v748h164v-766q0 -47 33.5 -81t80.5 -34h84q95 0 163.5 68.5t68.5 163.5v649h164v-1024h-103l-61 92q-92 -92 -232 -92h-84q-117 0 -197.5 80t-80.5 196zM262 1434h174l287 -287h-174z" />
|
||||
<glyph unicode="ú" horiz-adv-x="1003" d="M123 276v748h164v-766q0 -47 33.5 -81t80.5 -34h84q95 0 163.5 68.5t68.5 163.5v649h164v-1024h-103l-61 92q-92 -92 -232 -92h-84q-117 0 -197.5 80t-80.5 196zM324 1147l286 287h174l-284 -287h-176z" />
|
||||
<glyph unicode="û" horiz-adv-x="1003" d="M123 276v748h164v-766q0 -47 33.5 -81t80.5 -34h84q95 0 163.5 68.5t68.5 163.5v649h164v-1024h-103l-61 92q-92 -92 -232 -92h-84q-117 0 -197.5 80t-80.5 196zM174 1147l328 328l327 -328h-174l-153 153l-154 -153h-174z" />
|
||||
<glyph unicode="ü" horiz-adv-x="1003" d="M123 276v748h164v-766q0 -47 33.5 -81t80.5 -34h84q95 0 163.5 68.5t68.5 163.5v649h164v-1024h-103l-61 92q-92 -92 -232 -92h-84q-117 0 -197.5 80t-80.5 196zM236 1167v164h163v-164h-163zM604 1167v164h164v-164h-164z" />
|
||||
<glyph unicode="ý" horiz-adv-x="1003" d="M123 276v748h164v-768q0 -47 33.5 -80t80.5 -33h78q96 0 167 66t71 160v655h164v-1106q0 -161 -117.5 -275t-282.5 -114h-235v143h239q95 0 163.5 68.5t68.5 163.5v188q-44 -44 -108.5 -68t-129.5 -24h-78q-117 0 -197.5 80t-80.5 196zM313 1147l287 287h174l-285 -287 h-176z" />
|
||||
<glyph unicode="þ" horiz-adv-x="1003" d="M123 -471v1905h164v-441q48 31 114 31h224q115 0 195.5 -80t80.5 -196v-431q0 -132 -91.5 -224.5t-223.5 -92.5h-146q-91 0 -153 47v-518h-164zM287 297q0 -63 45 -108.5t108 -45.5h146q63 0 107 45.5t44 108.5v469q0 47 -33 81t-79 34h-224q-46 0 -80 -31t-34 -72v-481z " />
|
||||
<glyph unicode="ÿ" horiz-adv-x="1003" d="M123 276v748h164v-768q0 -47 33.5 -80t80.5 -33h78q96 0 167 66t71 160v655h164v-1106q0 -161 -117.5 -275t-282.5 -114h-235v143h239q95 0 163.5 68.5t68.5 163.5v188q-44 -44 -108.5 -68t-129.5 -24h-78q-117 0 -197.5 80t-80.5 196zM236 1167v164h163v-164h-163z M604 1167v164h164v-164h-164z" />
|
||||
<glyph unicode="Œ" horiz-adv-x="1761" d="M102 440v613q0 158 111.5 269.5t269.5 111.5h1217v-144h-676v-352h594v-145h-594v-650h676v-143h-840v102q-120 -102 -272 -102h-45q-183 0 -312 128.5t-129 311.5zM268 420q0 -114 80.5 -195.5t194.5 -81.5h45q112 0 192 81.5t80 195.5v870h-377q-88 0 -151.5 -62.5 t-63.5 -150.5v-657z" />
|
||||
<glyph unicode="œ" horiz-adv-x="1556" d="M102 317v431q0 115 80.5 195.5t196.5 80.5h225q116 0 195 -82q85 82 205 82h184q120 0 203.5 -80.5t83.5 -195.5q0 -98 -65 -174.5t-159 -98.5l-370 -90v-20q3 -93 69.5 -157.5t159.5 -64.5h324v-143h-324q-174 0 -291 127q-43 -59 -110 -93t-144 -34h-147 q-132 0 -224 92.5t-92 224.5zM266 297q0 -63 44.5 -108.5t107.5 -45.5h147q63 0 107.5 45.5t44.5 108.5v469q0 47 -33 81t-80 34h-225q-46 0 -79.5 -34t-33.5 -81v-469zM881 537l333 81q43 9 70 43t27 87q0 54 -36.5 93.5t-86.5 39.5h-184q-51 0 -87 -39.5t-36 -93.5v-211z " />
|
||||
<glyph unicode="Ÿ" horiz-adv-x="1064" d="M41 1434h188l303 -512l304 512h188l-410 -676v-758h-163v758zM266 1556v164h164v-164h-164zM635 1556v164h164v-164h-164z" />
|
||||
<glyph unicode="ˆ" horiz-adv-x="860" d="M102 1147l328 328l328 -328h-174l-154 153l-154 -153h-174z" />
|
||||
<glyph unicode="˜" horiz-adv-x="860" d="M113 1239q0 91 47.5 148t142.5 57q43 0 82.5 -25t64.5 -55t55.5 -55t57.5 -25q30 0 51 23.5t21 54.5h113q0 -90 -48 -147.5t-143 -57.5q-43 0 -82.5 25t-64.5 55t-55.5 55t-57.5 25q-30 0 -51 -23.5t-21 -54.5h-112z" />
|
||||
<glyph unicode=" " horiz-adv-x="983" />
|
||||
<glyph unicode=" " horiz-adv-x="1966" />
|
||||
<glyph unicode=" " horiz-adv-x="983" />
|
||||
<glyph unicode=" " horiz-adv-x="1966" />
|
||||
<glyph unicode=" " horiz-adv-x="655" />
|
||||
<glyph unicode=" " horiz-adv-x="491" />
|
||||
<glyph unicode=" " horiz-adv-x="327" />
|
||||
<glyph unicode=" " horiz-adv-x="327" />
|
||||
<glyph unicode=" " horiz-adv-x="245" />
|
||||
<glyph unicode=" " horiz-adv-x="393" />
|
||||
<glyph unicode=" " horiz-adv-x="109" />
|
||||
<glyph unicode="‐" horiz-adv-x="675" d="M82 451v143h512v-143h-512z" />
|
||||
<glyph unicode="‑" horiz-adv-x="675" d="M82 451v143h512v-143h-512z" />
|
||||
<glyph unicode="‒" horiz-adv-x="675" d="M82 451v143h512v-143h-512z" />
|
||||
<glyph unicode="–" horiz-adv-x="880" d="M82 451v143h717v-143h-717z" />
|
||||
<glyph unicode="—" horiz-adv-x="1597" d="M82 451v143h1434v-143h-1434z" />
|
||||
<glyph unicode="‘" horiz-adv-x="409" d="M102 1024l21 410h164v-410h-185z" />
|
||||
<glyph unicode="’" horiz-adv-x="409" d="M123 1024v410h184l-20 -410h-164z" />
|
||||
<glyph unicode="‚" horiz-adv-x="409" d="M123 184h184l-20 -409h-164v409z" />
|
||||
<glyph unicode="“" horiz-adv-x="716" d="M102 1024l21 410h164v-410h-185zM410 1024l20 410h164v-410h-184z" />
|
||||
<glyph unicode="”" horiz-adv-x="716" d="M123 1024v410h184l-20 -410h-164zM430 1024v410h184l-20 -410h-164z" />
|
||||
<glyph unicode="„" horiz-adv-x="716" d="M123 184h184l-20 -409h-164v409zM430 184h184l-20 -409h-164v409z" />
|
||||
<glyph unicode="•" horiz-adv-x="614" d="M82 717q0 94 65.5 159.5t159.5 65.5t159.5 -65.5t65.5 -159.5t-65.5 -159.5t-159.5 -65.5t-159.5 65.5t-65.5 159.5z" />
|
||||
<glyph unicode="…" horiz-adv-x="1269" d="M123 0v184h184v-184h-184zM543 0v184h184v-184h-184zM963 0v184h184v-184h-184z" />
|
||||
<glyph unicode=" " horiz-adv-x="393" />
|
||||
<glyph unicode="‹" horiz-adv-x="593" d="M61 512l287 410h178l-286 -410l286 -410h-178z" />
|
||||
<glyph unicode="›" horiz-adv-x="593" d="M68 102l286 410l-286 410h178l286 -410l-286 -410h-178z" />
|
||||
<glyph unicode=" " horiz-adv-x="491" />
|
||||
<glyph unicode="€" horiz-adv-x="1085" d="M61 502v143h144v215h-144v144h144v55q0 155 110 265t265 110h444v-144h-444q-86 0 -148.5 -63.5t-62.5 -149.5v-73h614v-144h-614v-215h614v-143h-614q2 -144 103.5 -251.5t244.5 -107.5h307v-143h-307q-134 0 -249.5 69.5t-185 184.5t-77.5 248h-144z" />
|
||||
<glyph unicode="™" horiz-adv-x="1310" d="M61 1311v123h492v-123h-174v-594h-143v594h-175zM614 717v717h134l163 -287l164 287h133v-717h-143v432l-154 -260l-153 260v-432h-144z" />
|
||||
<glyph unicode="" horiz-adv-x="1024" d="M0 0v1024h1024v-1024h-1024z" />
|
||||
</font>
|
||||
</defs></svg>
|
Before Width: | Height: | Size: 46 KiB |
BIN
img/ghost.png
Before Width: | Height: | Size: 1.1 KiB |
BIN
img/icon.png
Before Width: | Height: | Size: 1.1 KiB |
BIN
img/logo.png
Before Width: | Height: | Size: 26 KiB |
BIN
img/postimg1.jpg
Before Width: | Height: | Size: 119 KiB |
BIN
img/postimg2.jpg
Before Width: | Height: | Size: 46 KiB |
BIN
img/texture.png
Before Width: | Height: | Size: 951 B |
51
index.hbs
@ -1,15 +1,40 @@
|
||||
{{!< default}}
|
||||
<section class="content">
|
||||
<ul class="hfeed">
|
||||
{{#foreach posts}}
|
||||
{{#if @first}}
|
||||
<li class="featured">
|
||||
{{> full-post}}
|
||||
</li>
|
||||
{{else}}
|
||||
{{> list-post}}
|
||||
{{/if}}
|
||||
{{/foreach}}
|
||||
</ul>
|
||||
|
||||
{{! The comment above "< default" means - insert everything in this file into
|
||||
the {body} of the default.hbs template, which contains our header/footer. }}
|
||||
|
||||
{{! The big featured header on the homepage, with the site logo and description }}
|
||||
<header id="site-head" {{! style="background-image: url()" }}>
|
||||
<div class="vertical">
|
||||
<div id="site-head-content" class="inner">
|
||||
|
||||
{{#if @blog.logo}}<a id="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="Blog Logo" /></a>{{/if}}
|
||||
<h1 class="blog-title">{{@blog.title}}</h1>
|
||||
<h2 class="blog-description">{{@blog.description}}</h2>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
{{! The main content area on the homepage }}
|
||||
<main class="content" role="main">
|
||||
|
||||
{{! Each post will be output using this markup }}
|
||||
{{#foreach posts}}
|
||||
|
||||
<article class="{{post_class}}">
|
||||
<header class="post-header">
|
||||
<span class="post-meta"><time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMM YYYY"}}</time> {{#if tags}}on {{tags}}{{/if}}</span>
|
||||
<h2 class="post-title"><a href="{{url}}">{{title}}</a></h2>
|
||||
|
||||
</header>
|
||||
<section class="post-excerpt">
|
||||
<p>{{excerpt}}…</p>
|
||||
</section>
|
||||
</article>
|
||||
|
||||
{{/foreach}}
|
||||
|
||||
{{!! After all the posts, we have the previous/next pagination links }}
|
||||
{{pagination}}
|
||||
</section>
|
||||
|
||||
</main>
|
12
js/index.js
@ -1,12 +0,0 @@
|
||||
/**
|
||||
* Placeholder JS file for Casper behaviours
|
||||
*/
|
||||
|
||||
/*globals jQuery, document */
|
||||
(function ($) {
|
||||
"use strict";
|
||||
|
||||
$(document).ready(function () {
|
||||
// code goes here
|
||||
});
|
||||
}(jQuery));
|
5
lib/jquery/jquery.min.js
vendored
@ -1,17 +0,0 @@
|
||||
<article class="post type-post status-publish format-standard hentry">
|
||||
{{#if image}}
|
||||
<figure class="post-thumb">
|
||||
<img width="550" height="250" src="/content/images/{{image}}" class="attachment-post-thumbnail wp-post-image" alt="ghostpost">
|
||||
</figure>
|
||||
{{/if}}
|
||||
<div class="wrap">
|
||||
<header>
|
||||
<h2 class="entry-title h1"><a href="/{{slug}}" rel="bookmark">{{title}}</a></h2>
|
||||
<span class="entry-meta">Published on <time class="updated" datetime="{{date published_at format='YYYY-MM-DD'}}">{{date published_at format='DD MMMM YYYY'}}</time></span>
|
||||
</header>
|
||||
|
||||
<section class="entry-content">
|
||||
{{content}}
|
||||
</section>
|
||||
</div>
|
||||
</article>
|
@ -1,6 +0,0 @@
|
||||
<li class="wrap">
|
||||
<article class="post type-post status-publish format-standard hentry">
|
||||
<h2 class="entry-title"><a href="/{{slug}}" rel="bookmark">{{title}}</a></h2>
|
||||
<time class="updated" datetime="2012-05-03">{{date published_at format="MMMM DD, YYYY"}}</time>
|
||||
</article>
|
||||
</li>
|
59
post.hbs
@ -1,6 +1,55 @@
|
||||
{{!< default}}
|
||||
<section class="content">
|
||||
{{#post}}
|
||||
{{> full-post}}
|
||||
{{/post}}
|
||||
</section>
|
||||
|
||||
{{! The comment above "< default" means - insert everything in this file into
|
||||
the {body} of the default.hbs template, which contains our header/footer. }}
|
||||
|
||||
<main class="content" role="main">
|
||||
|
||||
<article class="{{post_class}}">
|
||||
|
||||
{{! Each post has the blog logo at the top, with a link back to the home page }}
|
||||
<header class="post-header">
|
||||
<a id="blog-logo" href="{{@blog.url}}">
|
||||
{{#if @blog.logo}}
|
||||
<img src="{{@blog.logo}}" alt="Blog Logo" />
|
||||
{{else}}
|
||||
{{@blog.title}}
|
||||
{{/if}}
|
||||
</a>
|
||||
</header>
|
||||
|
||||
{{! Everything inside the #post tags pulls data from the post }}
|
||||
{{#post}}
|
||||
|
||||
{{! Everything below outputs content of the the post which has been published }}
|
||||
<span class="post-meta"><time datetime="{{date format="YYYY-MM-DD"}}">{{date format='DD MMM YYYY'}}</time> {{#if tags}}on {{tags}}{{/if}}</span>
|
||||
|
||||
<h1 class="post-title">{{title}}</h1>
|
||||
|
||||
<section class="post-content">
|
||||
{{content}}
|
||||
</section>
|
||||
|
||||
<footer class="post-footer">
|
||||
|
||||
{{#if author}}
|
||||
<section class="author">
|
||||
<h4>{{author.name}}</h4>
|
||||
<p>{{author.bio}}</p>
|
||||
</section>
|
||||
{{/if}}
|
||||
|
||||
<section class="share">
|
||||
<h4>Share this post</h4>
|
||||
<a class="icon-twitter" href="http://twitter.com/share?text={{title}}&url={{url absolute}}"><span class="hidden">Twitter</span></a>
|
||||
<a class="icon-facebook" href="http://www.facebook.com/sharer.php?u={{url absolute}}"><span class="hidden">Facebook</span></a>
|
||||
<a class="icon-google-plus" href="#"><span class="hidden">Google+</span></a>
|
||||
</section>
|
||||
|
||||
</footer>
|
||||
|
||||
{{/post}}
|
||||
|
||||
</article>
|
||||
|
||||
</main>
|