preston/bittorious

View on GitHub
app/assets/stylesheets/application.css.scss

Summary

Maintainability
Test Coverage
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the top of the
 * compiled file, but it's generally better to create a new file per style scope.
 *
 *= require_self
 *= require_tree .
 *= require devise_bootstrap_views
 *= require angular-growl-v2
 */

// "bootstrap-sprockets" must be imported before "bootstrap" and "bootstrap/variables"
@import "bootstrap-sprockets";
@import "bootstrap";

textarea:invalid,
input:invalid {
    box-shadow: 0 10px 10px rgba(220,13,23, .5);
}
header.navbar {
    margin-bottom: 0px;
}
footer p > span {
    padding: 20px;
}

table tbody {

    tr.selected {
        background-color: #a7c6d8;
        -webkit-transition:    all .2s ease-out;
        -moz-transition:    all .2s ease-out;
        -o-transition:        all .2s ease-out;
        transition:            all .2s ease-out;
    } 
    tr {
        -webkit-transition:    all .2s ease-out;
        -moz-transition:    all .2s ease-out;
        -o-transition:        all .2s ease-out;
        transition:            all .2s ease-out;
    }
    tr:hover {
        cursor: pointer;
    }
    tr:hover:not(.selected) {
        background-color: #c7e6f8;
        -webkit-transition:    all .2s ease-out;
        -moz-transition:    all .2s ease-out;
        -o-transition:        all .2s ease-out;
        transition:            all .2s ease-out;
    } 

}