tadded @font-face and fonts to the whole blog - monochromatic - monochromatic blog: http://blog.z3bra.org
 (HTM) git clone git://z3bra.org/monochromatic
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
 (DIR) commit 3ee1984ee67ecba13bdb4bf0d422274193dbdcd2
 (DIR) parent bf6298c85a4c337d2df3c4499d16f28274c6a293
 (HTM) Author: Willy Goiffon <w.goiffon@gmail.com>
       Date:   Fri,  9 Aug 2013 15:52:40 +0200
       
       added @font-face and fonts to the whole blog
       
       Diffstat:
         M .gitignore                          |       1 +
         M css/monochrome.css                  |      19 +++++++++++++++++++
       
       2 files changed, 20 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/.gitignore b/.gitignore
       t@@ -1 +1,2 @@
        img/*
       +css/fonts/*
 (DIR) diff --git a/css/monochrome.css b/css/monochrome.css
       t@@ -11,12 +11,29 @@
         *
         */
        
       +/* Font definitions {{{ */
       +@font-face {
       +    font-family: archivo;
       +    src: url(/css/fonts/archivo.otf);
       +    font-weight: normal;
       +    font-style: normal;
       +}
       +
       +@font-face {
       +    font-family: 'Not Courrier Sans';
       +    src: url(/css/fonts/not-courrier-sans.otf);
       +    font-weight: normal;
       +    font-style: normal;
       +}
       +/* }}} */
       +
        /* Main blocks style {{{ */
        body {
            background-color: #222;
            color: #888;
            padding: 0;
            margin: 0;
       +    font-family: archivo, sans-serif;
        }
        
        #wrapper {
       t@@ -139,6 +156,7 @@ th {
        /* Coding style (<code>) {{{ */
        code {
            font-family: monospace;
       +    font-size: 60%;
        }
        
        pre {
       t@@ -173,6 +191,7 @@ pre hr {
        /* Text Formatting {{{ */
        strong {
            color: #fff;
       +    font-weight: normal;
        }
        
        em {