src/scss/toolkit/layout/responsive.scss in titon-toolkit-0.9.4 vs src/scss/toolkit/layout/responsive.scss in titon-toolkit-0.10.0

- old
+ new

@@ -1,53 +1,53 @@ /** - * @copyright Copyright 2010-2013, The Titon Project - * @license http://opensource.org/licenses/bsd-license.php - * @link http://titon.io + * @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; + max-width: 100%; + max-height: auto; + height: auto; } .show-print { display: none; } // Desktop states @include in-desktop { - .show-tablet, - .show-mobile, - .hide-desktop { display: none; } + .show-tablet, + .show-mobile, + .hide-desktop { display: none; } } // Tablet states @include in-tablet { - .show-desktop, - .show-mobile, - .hide-tablet { display: none; } + .show-desktop, + .show-mobile, + .hide-tablet { display: none; } } // Mobile states @include in-mobile { - .show-desktop, - .show-tablet, - .hide-mobile { display: none; } + .show-desktop, + .show-tablet, + .hide-mobile { display: none; } } // Orientation states @include if-portrait { - .show-landscape, - .hide-portrait { display: none; } + .show-landscape, + .hide-portrait { display: none; } } @include if-landscape { - .show-portrait, - .hide-landscape { display: none; } + .show-portrait, + .hide-landscape { display: none; } } // Type states @media print { - .show-print { display: block; } - .hide-print { display: none; } + .show-print { display: block; } + .hide-print { display: none; } } \ No newline at end of file