/* Glass Panes Tumblr Theme - No-Script CSS 
 
 Version: 2.14.0
 License:
    This file is part of Glass Panes, a Tumblr-Powered Theme. 

    Glass Panes is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    Glass Panes is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Glass Panes.  If not, see <http://www.gnu.org/licenses/>.
    
*/

#info-body ul li.nav-description {
    display: none;
}
#info-body #description {
    display: block;
}

.index-page #posts {
    /* Masonry CSS */
    -moz-column-count: 1;
    -moz-column-gap: 2px;
    -moz-column-width: 264px;
    
    -webkit-column-count: 1;
    -webkit-column-gap: 2px;
    -webkit-column-width: 264px;
    
    column-count: 1;
    column-gap: 2px;
    column-width: 264px;
}

.index-page .post-overlay {
    display: block;
    position: relative;
}
.index-page .post-overlay .overlay-bg {
    display: none;
}
.index-page .post-overlay .details {
    bottom: 0;
    display: block;
    float: none;
    left: 0;
    margin: 0 auto;
    position: relative;
    top: 5px;
    height: 28px;
}
.index-page .post-overlay .details .fa {
    display: none;
}
.index-page .post-overlay .details .fa.clickable {
    display: inline-block;
}
.index-page .post-overlay .details .detail-text {
    display: none;
}

#load-more-posts {
    display: none;
}

/* Media Queries */
@media all and (max-width: 300px) 
{
    .index-page #posts {
        width: 100%;
        
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
    .index-page #posts .post-li {
        width: 100%;
    }
}
@media all and (max-width: 599px) and (min-width: 300px)
{
    .index-page #posts {
        width: 284px;
        
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}
@media all and (max-width: 879px) and (min-width: 600px)
{
    .index-page #posts {
        width: 568px;
        
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}
@media all and (max-width: 1169px) and (min-width: 880px) 
{
    .index-page #posts {
        width: 852px;
        
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}
@media all and (max-width: 1449px) and (min-width: 1170px) 
{
    .index-page #posts {
        width: 1136px;
        
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4;
    }
}
@media all and (max-width: 2600px) and (min-width: 1450px) 
{
    .index-page #posts {
        width: 1420px;
        
        -moz-column-count: 5;
        -webkit-column-count: 5;
        column-count: 5;
    }
}

