Skip to content

Instantly share code, notes, and snippets.

@phylaxis
Forked from eddiemachado-zz/gist:3642552
Created September 5, 2012 19:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phylaxis/3643044 to your computer and use it in GitHub Desktop.
Save phylaxis/3643044 to your computer and use it in GitHub Desktop.
/*********************
COLORS
*********************/
$blue: #0a5785;
$light-blue: #88aabb;
$green: #00A459;
$orange: #cd6500;
$red: #b80024;
$black: #212121;
$gray-dark: #666;
$gray: #999;
$gray-light: #ccc;
$gray-lighter: #eee;
$white: #fff;
$white-smoke: #f8f8f8;
$yellow: #f8e876;
// meta color
$meta: $gray;
// category colors
$macbook: #0551d3;
$imac: #ff0e06;
$macpro: #0596cd;
$macmini: #ff6e06;
// alert styles
$alert-yellow: #ebe16f;
$alert-red: #fbe3e4;
$alert-green: #e6efc2;
$alert-blue: #d5edf8;
// comment colors
$newbie: #999;
$medium: #666;
$pro: #444;
$author: $blue;
// color classes
.cl-blue { color: $blue; }
.cl-red { color: $red; }
.cl-orange { color: $orange; }
.cl-green { color: $green; }
.post_content blockquote {
margin: 1.5em 3em;
margin-right: 2em;
font-family: Georgia, serif;
font-style: italic;
line-height: 1.7em;
font-size: 1.1em;
background: #EEE;
padding: 1.5em 1.5em 0.7335em;
postion: relative;
&:before {
font-size: 3em;
line-height: 1em;
position: absolute;
left: -1.2em;
font-family: 'IcoMoon';
font-style: normal;
speak: none;
content: '\0f';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment