CaffGeek/MBACNationals

View on GitHub
Web.Admin/2014/css/5cols.css

Summary

Maintainability
Test Coverage
/*  GRID OF FIVE   ============================================================================= */

    
.span_5_of_5 {
    width: 100%;
}

.span_4_of_5 {
      width: 79.68%; 
}

.span_3_of_5 {
      width: 59.36%; 
}

.span_2_of_5 {
      width: 39.04%;
}

.span_1_of_5 {
      width: 18.72%;
}


/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
    .span_5_of_5 {
        width: 100%; 
    }
    .span_4_of_5 {
        width: 100%; 
    }
    .span_3_of_5 {
        width: 100%; 
    }
    .span_2_of_5 {
        width: 100%; 
    }
    .span_1_of_5 {
        width: 100%; 
    }
}