/*
 *  Chris Blog
 *  @Author: Shaharia Azam <shahariaazam.com>
 *  @Description: Custom CSS for chris blog
 */
.glyphicons-showoff i {
    margin-right: 6px;
    margin-left: 5px;
}

.button-showoff {
    text-align: center;
    margin-bottom: 30px;
}

.glyphicons-retinapng .glyphicons-icon {
    background-image: url(../img/glyphicons/glyphicons_2x.png);
    background-size: 463px 1994px;
}

.halflings-retinapng .halflings-icon {
    background-image: url(../img/glyphicons/glyphicons_halflings_2x.png);
    background-size: 469px 182px;
}

.lt-ie9 .glyphicons-retinapng .glyphicons-icon {
    background-image: url(../img/glyphicons/glyphicons.png);
    background-size: 463px 1994px;
}

.lt-ie9 .halflings-retinapng .halflings-icon {
    background-image: url(../img/glyphicons/glyphicons_halflings.png);
    background-size: 469px 182px;
}

/*Color Switcher*/

#colorswitcher {
    position: fixed;
    /*display: none;*/
    top: 200px;
    left: 0;
    background-color: none;
    width: 36px;
    padding: 4px;
    z-index: 99999;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 0;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 0 6px 6px 0;
    -moz-border-radius: 0 6px 6px 0;
    border-radius: 0 6px 6px 0;
}

#colorswitcher div.colorbox {
    width: 30px;
    height: 30px;
    float: left;
    cursor: pointer;
    margin: 3px;
    display: block;
}

#colorswitcher #classic {
    background-color: #9b7188;
}

#colorswitcher #nytimes {
    background-color: #4c7a9f;
}

#colorswitcher #red {
    background-color: #D54563;
}

#colorswitcher #yellow {
    background-color: #E1B93F
}

#colorswitcher #blue {
    background-color: #3051B9;
}

#colorswitcher #green {
    background-color: #B2B74E;
}

#colorswitcher div.colorbox .glyphicons-icon.settings {
    background-position: 1px -1340px;
}

#colorswitcher div.colorbox .glyphicons-icon.circle_question_mark {
    background-position: -191px -909px;
}

/* Google Font */

body{
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
}

.content-area{
    border-top: 1px solid #696969;
}

.zone-content .meta{
    color: #a9a9a9;
    font-weight: normal;
    font-size: 14px;
}

pre{
    border: none;
}

.widget ul{
    list-style: none;
}

.widget ul li{
    margin-top: 3px;
}

.zone-content .post-list{
    list-style: decimal;
}

body{
    font-size: 16px;
}

.listing-homepage{
    -moz-column-count:3; /* Firefox */
    -webkit-column-count:3; /* Safari and Chrome */
    column-count:3;
    -moz-column-gap:60px; /* Firefox */
    -webkit-column-gap:60px; /* Safari and Chrome */
    column-gap:60px;
    counter-reset: my-badass-counter;
}

/*Li designing*/
ol {
    counter-reset:li; /* Initiate a counter */
    margin-left:0; /* Remove the default left margin */
    padding-left:0; /* Remove the default left padding */
}
ol > li {
    position:relative; /* Create a positioning context */
    margin:0 0 6px 2em; /* Give each list item a left margin to make room for the numbers */
    padding:4px 8px; /* Add some spacing around the content */
    list-style:none; /* Disable the normal item numbering */
    border-top:2px solid #666;
    background:#f6f6f6;
}
ol > li:before {
    content:counter(li); /* Use the counter as content */
    counter-increment:li; /* Increment the counter by 1 */
    /* Position and style the number */
    position:absolute;
    top:-2px;
    left:-2em;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    width:2em;
    /* Some space between the number and the content in browsers that support
       generated content but not positioning it (Camino 2 is one example) */
    margin-right:8px;
    padding:4px;
    border-top:2px solid #666;
    color:#fff;
    background:#666;
    font-weight:bold;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-align:center;
}
li ol,
li ul {margin-top:6px;}
ol ol li:last-child {margin-bottom:0;}

ol li a, ol li a:hover{
    text-decoration: none;
}