Sha256: faf6dfb0b36a5253d1915940a9d4cf7f11610acfa49072000b1b59841d7b7dd7
Contents?: true
Size: 1.24 KB
Versions: 5
Compression:
Stored size: 1.24 KB
Contents
// Table of Contents // ================================================== // Reset // Groups // Avatars // Media Queries // Reset // ================================================== audio, canvas, video { display: inline-block; } audio:not([controls]) { display: none; height: 0; } img, svg:not(:root) { max-width: 100%; vertical-align: middle; } img { border: 0; border-radius: border-radius(b); display: block; height: auto; width: auto; } svg:not(:root) { overflow: hidden; } // Groups // ================================================== .img-group { > * { display: inline-block; margin-right: -20px; } > *:last-child { margin-right: 0; } } // Avatars // ================================================== .img-avatar { @include transition(border-color 300ms ease-in-out); border: 2px solid color(dark-haze); display: inline-block; padding: 2px; img { border-radius: inherit; } &.dark { border-color: color(dark-black); } } @each $name, $color in $colors { .img-avatar-hover-#{$name} { &:hover, &:active, &:focus { border-color: $color; } } } // Media Queries // ================================================== @media only screen and (max-width: 767px) { .img-responsive { max-width: 60%; } }
Version data entries
5 entries across 5 versions & 1 rubygems