/// Global rounded radius of rounded-corners.
/// @type Number
$global-rounded: 500px !default;
+
+/// Global media query to switch from desktop to mobile styles.
+/// @type String
+$global-breakpoint: '(max-width: 580px)';
/// @type Length
$container-width-small: 95% !default;
-/// Small breakpoint.
-/// @type Length
-$small-range: $container-width !default;
-
-@media only screen and (max-width: #{$small-range}) {
+@media only screen and #{$global-breakpoint} {
table.body img {
width: auto !important;
mso-hide:all;
overflow:hidden;
- @media (max-width: 600px) {
+ @media only screen and #{$global-breakpoint} {
display: block;
}
}
.show-for-large {
- @media (max-width: 600px) {
+ @media only screen and #{$global-breakpoint} {
display: none;
width:0;
mso-hide:all;
overflow:hidden;
}
}
-
@import 'settings';
@import '../../../../scss/foundation';
-@media only screen and (max-width: #{$small-range}) {
+@media only screen and #{$global-breakpoint} {
.small-float-center {
margin: 0 auto;
float: none;
.small-text-center {
text-align: center;
}
-
+
.up-3 td {
width: 45% !important;
}
display: block !important;
}
}
-}
\ No newline at end of file
+}