// Large Mode
@media only screen and (min-width: 1200px) {
.visible-large {
display: inherit !important;
}
.hidden-large {
display: none !important;
}
}
// Desktop Modes
@media only screen and (min-width: 960px) and (max-width: 1199px) {
.visible-large {
display: none !important;
}
.hidden-large {
display: inherit !important;
}
.visible-desktop {
display: inherit !important;
}
.hidden-desktop {
display: none !important;
}
.promo {
h1 {
font-size: 3.7em;
}
p {
font-size: 1.3em;
}
}
.promo-image {
width: 40%;
}
.promo-image img {
max-width: 100%;
}
}
The following users have thanked you: Bernd Robl
Time to create page: 0.075 seconds