2013-09-12 11:59:14 +02:00
|
|
|
/* ----------------------------- */
|
2014-05-03 14:03:41 +02:00
|
|
|
/* ==desktop and HD devices */
|
2013-09-12 11:59:14 +02:00
|
|
|
/* ----------------------------- */
|
|
|
|
|
2014-09-12 09:36:09 +02:00
|
|
|
@media (min-width: (@medium-screen + 1)) {
|
2014-06-28 12:59:02 +02:00
|
|
|
/* rules for big resources and big screens like: background-images, font-faces, etc. */
|
2013-09-12 11:59:14 +02:00
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
2013-09-12 11:59:14 +02:00
|
|
|
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
|
2014-06-28 12:59:02 +02:00
|
|
|
/* style adjustments for high density devices */
|
2013-09-12 11:59:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------- */
|
2014-08-22 09:34:59 +02:00
|
|
|
/* ==Responsive large */
|
2013-09-12 11:59:14 +02:00
|
|
|
/* ---------------------------------- */
|
|
|
|
|
2014-09-12 09:36:09 +02:00
|
|
|
@media (min-width: (@medium-screen + 1)) {
|
2013-09-12 11:59:14 +02:00
|
|
|
|
2014-01-31 15:30:55 +01:00
|
|
|
/* layouts for large screens */
|
2015-03-04 11:47:46 +01:00
|
|
|
.large-hidden {
|
|
|
|
display: none !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.large-visible {
|
|
|
|
display: block !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.large-no-float {
|
2015-03-04 11:47:46 +01:00
|
|
|
float: none;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2013-09-12 11:59:14 +02:00
|
|
|
.large-inbl {
|
|
|
|
display: inline-block;
|
|
|
|
float: none;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2015-03-04 11:47:46 +01:00
|
|
|
|
2013-09-12 11:59:14 +02:00
|
|
|
.large-row {
|
|
|
|
display: table;
|
|
|
|
table-layout: fixed;
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
2015-03-04 11:47:46 +01:00
|
|
|
|
2013-09-12 11:59:14 +02:00
|
|
|
.large-col {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
2014-01-31 15:30:55 +01:00
|
|
|
/* widths for large screens */
|
2015-03-04 11:47:46 +01:00
|
|
|
.large-w25 {
|
|
|
|
width: 25% !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.large-w33 {
|
|
|
|
width: 33.3333% !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.large-w50 {
|
|
|
|
width: 50% !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.large-w66 {
|
|
|
|
width: 66.6666% !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.large-w75 {
|
|
|
|
width: 75% !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2014-01-31 15:30:55 +01:00
|
|
|
.large-w100,
|
|
|
|
.large-wauto {
|
2013-09-12 11:59:14 +02:00
|
|
|
display: block !important;
|
|
|
|
float: none !important;
|
|
|
|
clear: none !important;
|
|
|
|
width: auto !important;
|
|
|
|
margin-left: 0 !important;
|
|
|
|
margin-right: 0 !important;
|
2015-03-04 11:47:46 +01:00
|
|
|
border: 0;
|
2013-09-12 11:59:14 +02:00
|
|
|
}
|
|
|
|
|
2014-01-31 15:30:55 +01:00
|
|
|
/* margins for large screens */
|
2015-03-04 11:47:46 +01:00
|
|
|
.large-man {
|
|
|
|
margin: 0 !important;
|
2014-08-19 13:19:37 +02:00
|
|
|
}
|
2013-09-12 11:59:14 +02:00
|
|
|
}
|
|
|
|
|
2014-08-22 09:34:59 +02:00
|
|
|
/* ---------------------------------- */
|
|
|
|
/* ==Responsive medium */
|
|
|
|
/* ---------------------------------- */
|
|
|
|
|
2014-09-12 09:36:09 +02:00
|
|
|
@media (min-width: (@small-screen + 1)) and (max-width: @medium-screen) {
|
2014-08-22 09:34:59 +02:00
|
|
|
|
|
|
|
/* layouts for medium screens */
|
2015-03-04 11:47:46 +01:00
|
|
|
.medium-hidden {
|
|
|
|
display: none !important;
|
2014-08-22 09:34:59 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.medium-visible {
|
|
|
|
display: block !important;
|
2014-08-22 09:34:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.medium-no-float {
|
2015-03-04 11:47:46 +01:00
|
|
|
float: none;
|
2014-08-22 09:34:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.medium-inbl {
|
|
|
|
display: inline-block;
|
|
|
|
float: none;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2015-03-04 11:47:46 +01:00
|
|
|
|
2014-08-22 09:34:59 +02:00
|
|
|
.medium-row {
|
|
|
|
display: table;
|
|
|
|
table-layout: fixed;
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
2015-03-04 11:47:46 +01:00
|
|
|
|
2014-08-22 09:34:59 +02:00
|
|
|
.medium-col {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* widths for medium screens */
|
2015-03-04 11:47:46 +01:00
|
|
|
.medium-w25 {
|
|
|
|
width: 25% !important;
|
2014-08-22 09:34:59 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.medium-w33 {
|
|
|
|
width: 33.3333% !important;
|
2014-08-22 09:34:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.medium-w50 {
|
|
|
|
width: 50% !important;
|
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.medium-w66 {
|
|
|
|
width: 66.6666% !important;
|
2014-08-22 09:34:59 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.medium-w75 {
|
|
|
|
width: 75% !important;
|
2014-08-22 09:34:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.medium-w100,
|
|
|
|
.medium-wauto {
|
|
|
|
display: block !important;
|
|
|
|
float: none !important;
|
|
|
|
clear: none !important;
|
|
|
|
width: auto !important;
|
|
|
|
margin-left: 0 !important;
|
|
|
|
margin-right: 0 !important;
|
2015-03-04 11:47:46 +01:00
|
|
|
border: 0;
|
2014-08-22 09:34:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* margins for medium screens */
|
2015-03-04 11:47:46 +01:00
|
|
|
.medium-man,
|
|
|
|
.medium-ma0 {
|
|
|
|
margin: 0 !important;
|
2014-08-22 09:34:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------- */
|
|
|
|
/* ==Responsive small */
|
|
|
|
/* ---------------------------------- */
|
|
|
|
|
2014-09-12 09:36:09 +02:00
|
|
|
@media (min-width: (@tiny-screen + 1)) and (max-width: @small-screen) {
|
2014-08-19 13:19:37 +02:00
|
|
|
|
|
|
|
/* quick small resolution reset */
|
|
|
|
.mod,
|
|
|
|
.col,
|
|
|
|
fieldset {
|
|
|
|
display: block !important;
|
|
|
|
float: none !important;
|
|
|
|
clear: none !important;
|
|
|
|
width: auto !important;
|
|
|
|
margin-left: 0 !important;
|
|
|
|
margin-right: 0 !important;
|
|
|
|
border: 0;
|
|
|
|
}
|
2013-09-12 11:59:14 +02:00
|
|
|
|
2014-01-31 15:30:55 +01:00
|
|
|
/* quick reset in small resolution and less */
|
2013-09-12 11:59:14 +02:00
|
|
|
.w600p,
|
|
|
|
.w700p,
|
|
|
|
.w800p,
|
|
|
|
.w960p,
|
2014-01-31 15:30:55 +01:00
|
|
|
.mw960p {
|
2013-09-12 11:59:14 +02:00
|
|
|
width: auto;
|
|
|
|
float: none;
|
2015-03-04 11:47:46 +01:00
|
|
|
}
|
2013-09-12 11:59:14 +02:00
|
|
|
|
2014-01-31 15:30:55 +01:00
|
|
|
/* layouts for small screens */
|
2015-03-04 11:47:46 +01:00
|
|
|
.small-hidden {
|
|
|
|
display: none !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.small-visible {
|
|
|
|
display: block !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.small-no-float {
|
2015-03-04 11:47:46 +01:00
|
|
|
float: none;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2013-09-12 11:59:14 +02:00
|
|
|
.small-inbl {
|
|
|
|
display: inline-block;
|
|
|
|
float: none;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2015-03-04 11:47:46 +01:00
|
|
|
|
2013-09-12 11:59:14 +02:00
|
|
|
.small-row {
|
|
|
|
display: table !important;
|
|
|
|
table-layout: fixed !important;
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
2015-03-04 11:47:46 +01:00
|
|
|
|
2013-09-12 11:59:14 +02:00
|
|
|
.small-col {
|
|
|
|
display: table-cell !important;
|
|
|
|
vertical-align: top !important;
|
|
|
|
}
|
|
|
|
|
2014-01-31 15:30:55 +01:00
|
|
|
/* widths for small screens */
|
2015-03-04 11:47:46 +01:00
|
|
|
.small-w25 {
|
|
|
|
width: 25% !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.small-w33 {
|
|
|
|
width: 33.3333% !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.small-w50 {
|
|
|
|
width: 50% !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.small-w66 {
|
|
|
|
width: 66.6666% !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.small-w75 {
|
|
|
|
width: 75% !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2014-01-31 15:30:55 +01:00
|
|
|
.small-w100,
|
2015-03-04 11:47:46 +01:00
|
|
|
.small-wauto {
|
2013-09-12 11:59:14 +02:00
|
|
|
display: block !important;
|
|
|
|
float: none !important;
|
|
|
|
clear: none !important;
|
|
|
|
width: auto !important;
|
|
|
|
margin-left: 0 !important;
|
|
|
|
margin-right: 0 !important;
|
2015-03-04 11:47:46 +01:00
|
|
|
border: 0;
|
2013-09-12 11:59:14 +02:00
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
2014-01-31 15:30:55 +01:00
|
|
|
/* margins for small screens */
|
2015-03-04 11:47:46 +01:00
|
|
|
.small-man,
|
|
|
|
.small-ma0 {
|
|
|
|
margin: 0 !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.small-pan,
|
|
|
|
.small-pa0 {
|
|
|
|
padding: 0 !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
2014-08-19 13:19:37 +02:00
|
|
|
|
|
|
|
/* grid rwd for small screens */
|
|
|
|
.grid3 > *,
|
|
|
|
.grid4 > *,
|
|
|
|
.grid5 > *,
|
|
|
|
.grid6 > *,
|
|
|
|
.grid8 > *,
|
|
|
|
.grid10 > *,
|
|
|
|
.grid12 > * {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* autogrid rwd for small screens */
|
|
|
|
.autogrid5 > *,
|
|
|
|
.autogrid6 > *,
|
|
|
|
.autogrid8 > *,
|
|
|
|
.autogrid10 > *,
|
|
|
|
.autogrid12 > * {
|
|
|
|
width: 49% !important;
|
|
|
|
}
|
2013-09-12 11:59:14 +02:00
|
|
|
}
|
|
|
|
|
2014-08-22 09:34:59 +02:00
|
|
|
/* ---------------------------------- */
|
|
|
|
/* ==Responsive tiny */
|
|
|
|
/* ---------------------------------- */
|
|
|
|
|
2014-09-12 09:36:09 +02:00
|
|
|
@media (max-width: @tiny-screen) {
|
2014-05-07 10:45:47 +02:00
|
|
|
|
2013-09-12 11:59:14 +02:00
|
|
|
.w300p,
|
|
|
|
.w400p,
|
|
|
|
.w500p {
|
|
|
|
width: auto;
|
|
|
|
float: none;
|
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.row {
|
2013-09-12 11:59:14 +02:00
|
|
|
display: block !important;
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
|
2014-01-31 15:30:55 +01:00
|
|
|
/* layouts for tiny screens */
|
2015-03-04 11:47:46 +01:00
|
|
|
.tiny-hidden {
|
|
|
|
display: none !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.tiny-visible {
|
|
|
|
display: block !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tiny-no-float {
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
|
2013-09-12 11:59:14 +02:00
|
|
|
.tiny-inbl {
|
|
|
|
display: inline-block;
|
|
|
|
float: none;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
2013-09-12 11:59:14 +02:00
|
|
|
.tiny-row {
|
|
|
|
display: table !important;
|
|
|
|
table-layout: fixed !important;
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
2013-09-12 11:59:14 +02:00
|
|
|
.tiny-col {
|
|
|
|
display: table-cell !important;
|
|
|
|
vertical-align: top !important;
|
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
2013-09-12 11:59:14 +02:00
|
|
|
th,
|
|
|
|
td {
|
|
|
|
display: block !important;
|
|
|
|
width: auto !important;
|
|
|
|
text-align: left !important;
|
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
thead {
|
|
|
|
display: none;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
2013-09-12 11:59:14 +02:00
|
|
|
|
2014-01-31 15:30:55 +01:00
|
|
|
/* widths for tiny screens */
|
2015-03-04 11:47:46 +01:00
|
|
|
.tiny-w25 {
|
|
|
|
width: 25% !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.tiny-w33 {
|
|
|
|
width: 33.3333% !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.tiny-w50 {
|
|
|
|
width: 50% !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.tiny-w66 {
|
|
|
|
width: 66.6666% !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.tiny-w75 {
|
|
|
|
width: 75% !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2014-01-31 15:30:55 +01:00
|
|
|
.tiny-w100,
|
2015-03-04 11:47:46 +01:00
|
|
|
.tiny-wauto {
|
2013-09-12 11:59:14 +02:00
|
|
|
display: block !important;
|
|
|
|
float: none !important;
|
|
|
|
clear: none !important;
|
|
|
|
width: auto !important;
|
|
|
|
margin-left: 0 !important;
|
|
|
|
margin-right: 0 !important;
|
|
|
|
border: 0;
|
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
2014-01-31 15:30:55 +01:00
|
|
|
/* margins for tiny screens */
|
2015-03-04 11:47:46 +01:00
|
|
|
.tiny-man,
|
|
|
|
.tiny-ma0 {
|
|
|
|
margin: 0 !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
.tiny-pan,
|
|
|
|
.tiny-pa0 {
|
|
|
|
padding: 0 !important;
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|
2014-08-19 13:19:37 +02:00
|
|
|
|
|
|
|
/* grid rwd for tiny screens */
|
|
|
|
.grid > * > * {
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* autogrid rwd for tiny screens */
|
|
|
|
[class*="autogrid"] > * {
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
2013-09-12 11:59:14 +02:00
|
|
|
}
|