Skip to content
Snippets Groups Projects
Select Git revision
  • 137635a6274723950708d1e54d9c28458046562f
  • master default protected
  • dev
3 results

reset.css

Blame
  • reset.css 2.77 KiB
    /**
     *   Anchor, default reset
     */
    * {
    	margin: 0;
    	padding: 0;
    
    	-webkit-font-smoothing: antialiased;
    
    	/* Don't count padding and borders towards widths */
    	-webkit-box-sizing: border-box;
    	-moz-box-sizing: border-box;
    	box-sizing: border-box;
    }
    
    /**
     *   Typographic reset
     */
    @font-face{
        font-family: Revalia;
        src: url(fonts/Revalia/Revalia-Regular.ttf)
    }
    @font-face{
        font-family: Cabin;
        src: url(fonts/Cabin/Cabin-Medium.ttf)
    }
    @font-face{
        font-family: Cabin-Bold;
        src: url(fonts/Cabin/Cabin-Bold.ttf)
    }
    /* Use a serif font for nice readability, but not Times */
    body {
    	font: 17px/26px Cabin;
    
    }
    
    h1, h2, h3, h4, h5, #top, .slidey b, .slidey label, .counter, input, textarea, button, .pagination {
    	font-family: Cabin-Bold;
    	font-weight: 300;
    }
    
    h1 a, h2 a, h3 a, h4 a, h5 a{
    	color : #6e8678;
    }
    
    #logo {
    	font-family: Revalia;
    	font-weight: 300;
    }
    
    pr, code, .mono {
    	font: 12px/19px "Anonymous Pro", Consolas, monospace;
    	padding: 0 2px;
    }
    
    p {
    	padding-bottom: 15px;
        text-align: justify;
    }
    
    pre {
    	padding: 15px 20px;
    	margin-bottom: 20px;
    
    	border-radius: 5px;
    	white-space: pre-wrap;
    }
    
    img {
    	max-width: 100%;