| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 | .card {    background: #fff;    min-height: 50px;    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);    position: relative;    margin-bottom: 30px;    @include border-radius(2px);    .card-inside-title {        margin-top: 25px;        margin-bottom: 15px;        display: block;        font-size: 15px;        color: #000;        small {            color: #999;            display: block;            font-size: 11px;            margin-top: 5px;            a {                color: #777;                font-weight: bold;            }        }    }    .card-inside-title:first-child {        margin-top: 0;    }    .bg-red,    .bg-pink,    .bg-purple,    .bg-deep-purple,    .bg-indigo,    .bg-blue,    .bg-light-blue,    .bg-cyan,    .bg-teal,    .bg-green,    .bg-light-green,    .bg-lime,    .bg-yellow,    .bg-amber,    .bg-orange,    .bg-deep-orange,    .bg-brown,    .bg-grey,    .bg-blue-grey,    .bg-black {        border-bottom: none !important;        color: #fff !important;        h2, small, .material-icons {            color: #fff !important;        }        .badge {            background-color: #fff;            color: #555;        }    }    .header {        color: #555;        padding: 20px;        position: relative;        border-bottom: 1px solid rgba(204,204,204,0.35);        .header-dropdown {            position: absolute;            top: 20px;            right: 15px;            list-style: none;            .dropdown-menu {                li {                    display: block !important;                }            }            li {                display: inline-block;            }            i {                font-size: 20px;                color: #999;                @include transition(all .5s);                &:hover {                    color: #000;                }            }        }        h2 {            margin: 0;            font-size: 18px;            font-weight: normal;            color: #111;            small {                display: block;                font-size: 12px;                margin-top: 5px;                color: #999;                line-height: 15px;                a {                    font-weight: bold;                    color: #777;                }            }        }        .col-xs-12 {            h2 {                margin-top: 5px;            }        }    }    .body {        font-size: 14px;        color: #555;        padding: 20px;        @for $i from 1 through 12 {            .col-xs-#{$i},            .col-sm-#{$i},            .col-md-#{$i},            .col-lg-#{$i} {                margin-bottom: 20px;            }        }    }}
 |