Sha256: 5824f42715c6a2662e4cb71725d1175fd4ffd06bd7698044290da2aa8905dfeb
Contents?: true
Size: 1.85 KB
Versions: 6
Compression:
Stored size: 1.85 KB
Contents
/** * @copyright 2010-2013, The Titon Project * @license http://opensource.org/licenses/bsd-license.php * @link http://titon.io */ @import "../common"; .fluid { display: block; width: 100%; height: auto; max-width: 100%; max-height: auto; } .show-retina, .show-print { display: none !important; } // Desktop states @include in-desktop { .show-tablet, .show-mobile, .hide-desktop { display: none !important; } } // Tablet states @include in-tablet { .show-desktop, .show-mobile, .hide-tablet { display: none !important; } } // Mobile states @include in-mobile { .show-desktop, .show-tablet, .hide-mobile { display: none !important; } } // Large states @include in-large { .show-medium, .show-small, .hide-large { display: none !important; } } // Medium states @include in-medium { .show-large, .show-small, .hide-medium { display: none !important; } } // Small states @include in-small { .show-large, .show-medium, .hide-small { display: none !important; } } // Orientation states @include if-portrait { .show-landscape, .hide-portrait { display: none !important; } } @include if-landscape { .show-portrait, .hide-landscape { display: none !important; } } // Type states @include if-retina { .hide-retina { display: none !important; } .show-retina { display: block !important; } table.show-retina { display: table !important; } tr.show-retina { display: table-row !important; } td.show-retina, th.show-retina { display: table-cell !important; } } @media print { .hide-print { display: none !important; } .show-print { display: block !important; } table.show-print { display: table !important; } tr.show-print { display: table-row !important; } td.show-print, th.show-print { display: table-cell !important; } }
Version data entries
6 entries across 6 versions & 1 rubygems