hiding content on print, small and large screen

This commit is contained in:
Raphael Goetter 2014-05-03 11:31:26 +02:00
parent 6f84bea1c6
commit 1b593067e5

View File

@ -155,7 +155,21 @@ strong,
overflow: hidden;
height: 1px; width: 1px;
}
@media print {
.no-print {
display: none;
}
}
@media (max-width: @small-screen) {
.no-small-screen {
display: none;
}
}
@media (min-width: @large-screen) {
.no-large-screen {
display: none;
}
}
/* ----------------------------- */
/* == browsers consistency */
/* ----------------------------- */