getdave / Tanlinell

Boilerplate Wordpress theme for rapid development of new WP themes. Based on the great work of the _s ("Underscore") theme.
GNU General Public License v2.0
6 stars 2 forks source link

Add loading module #233

Closed getdave closed 10 years ago

getdave commented 10 years ago

Add standard module. Currently demoed in CWD Layout A

.loading:after,
.loading:before {
    content:"";
    position:absolute;
    z-index:10;
    display:block;
}

.loading:before {
    left:0;
    top:0;
    z-index: $zindex-tier-5;
    width:100%;
    height:100%;
    background:#444;
}

.loading:after {
    left:50%;
    top:50%;
    z-index: $zindex-tier-6;
    width:40px;
    height:40px;
    margin:-20px 0 0 -20px;
    background: image-url("ajax-loader--dark.gif") no-repeat 50% 50% #222;  
    opacity:0.25;
    border-radius:50%;
}
getdave commented 10 years ago

Moved to new repo https://github.com/getdave/tanlinell-framework/issues/10