Sha256: 27c6ff21f0dee2829decd8aee5c2836c55fc0652810547793da29fcae490d22f
Contents?: true
Size: 1.5 KB
Versions: 4
Compression:
Stored size: 1.5 KB
Contents
/** * @copyright 2010-2013, The Titon Project * @license http://opensource.org/licenses/bsd-license.php * @link http://titon.io */ @import "../common"; img, video, canvas { max-width: 100%; max-height: auto; height: auto; } .show-print { display: none; } @if $responsive-size == "device" or $responsive-size == "both" { // Desktop states @include in-desktop { .show-tablet, .show-mobile, .hide-desktop { display: none; } } // Tablet states @include in-tablet { .show-desktop, .show-mobile, .hide-tablet { display: none; } } // Mobile states @include in-mobile { .show-desktop, .show-tablet, .hide-mobile { display: none; } } } @if $responsive-size == "size" or $responsive-size == "both" { // Large states @include in-large { .show-medium, .show-small, .hide-large { display: none; } } // Medium states @include in-medium { .show-large, .show-small, .hide-medium { display: none; } } // Small states @include in-small { .show-large, .show-medium, .hide-small { display: none; } } } // Orientation states @include if-portrait { .show-landscape, .hide-portrait { display: none; } } @include if-landscape { .show-portrait, .hide-landscape { display: none; } } // Type states @media print { .show-print { display: block; } .hide-print { display: none; } }
Version data entries
4 entries across 4 versions & 1 rubygems