mirror of
https://github.com/safing/web
synced 2025-09-01 10:39:03 +00:00
118 lines
3.2 KiB
SCSS
118 lines
3.2 KiB
SCSS
/*
|
|
// Semantic UI has these classes, however they're only applicable to
|
|
// grids, containers, rows and columns.
|
|
// plus, there isn't any `mobile hidden`, `X hidden` class.
|
|
// this snippet is using the same class names and same approach
|
|
// plus a bit more but to all elements.
|
|
//
|
|
// see https://github.com/Semantic-Org/Semantic-UI/issues/1114
|
|
*/
|
|
|
|
/* Mobile */
|
|
@media only screen and (max-width: 767px) {
|
|
[class*="mobile-hidden"],
|
|
[class*="tablet-only"]:not(.mobile),
|
|
[class*="computer-only"]:not(.mobile),
|
|
[class*="large-screen-only"]:not(.mobile),
|
|
[class*="widescreen-only"]:not(.mobile),
|
|
[class*="or-lower-hidden"] {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
/* Tablet / iPad Portrait */
|
|
@media only screen and (min-width: 768px) and (max-width: 991px) {
|
|
[class*="mobile-only"]:not(.tablet),
|
|
[class*="tablet-hidden"],
|
|
[class*="computer-only"]:not(.tablet),
|
|
[class*="large-screen-only"]:not(.tablet),
|
|
[class*="widescreen-only"]:not(.tablet),
|
|
[class*="or-lower-hidden"]:not(.mobile) {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
/* Computer / Desktop / iPad Landscape */
|
|
@media only screen and (min-width: 992px) and (max-width: 1199px) {
|
|
[class*="mobile-only"]:not(.computer),
|
|
[class*="tablet-only"]:not(.computer),
|
|
[class*="computer-hidden"],
|
|
[class*="large-screen-only"]:not(.computer),
|
|
[class*="widescreen-only"]:not(.computer),
|
|
[class*="or-lower-hidden"]:not(.tablet):not(.mobile) {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
/* Large Monitor */
|
|
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
|
|
[class*="mobile-only"]:not([class*="large-screen"]),
|
|
[class*="tablet-only"]:not([class*="large-screen"]),
|
|
[class*="computer-only"]:not([class*="large-screen"]),
|
|
[class*="large-screen-hidden"],
|
|
[class*="widescreen-only"]:not([class*="large-screen"]),
|
|
[class*="or-lower-hidden"]:not(.computer):not(.tablet):not(.mobile) {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
/* Widescreen Monitor */
|
|
@media only screen and (min-width: 1920px) {
|
|
[class*="mobile-only"]:not([class*="widescreen"]),
|
|
[class*="tablet-only"]:not([class*="widescreen"]),
|
|
[class*="computer-only"]:not([class*="widescreen"]),
|
|
[class*="large-screen-only"]:not([class*="widescreen"]),
|
|
[class*="widescreen-hidden"],
|
|
[class*="widescreen-or-lower-hidden"] {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
/***/
|
|
|
|
/* Mobile */
|
|
@media only screen and (max-width: 767px) {
|
|
.hidden-on-mobile {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
/* Tablet / iPad Portrait */
|
|
@media only screen and (min-width: 768px) and (max-width: 991px) {
|
|
.hidden-on-tablet {
|
|
display: none !important;
|
|
}
|
|
}
|
|
/* Tablet and lower*/
|
|
@media only screen and (max-width: 991px) {
|
|
.hidden-on-tablet-and-lower {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
/* Computer / Desktop / iPad Landscape */
|
|
@media only screen and (min-width: 992px) and (max-width: 1199px) {
|
|
.hidden-on-computer {
|
|
display: none !important;
|
|
}
|
|
}
|
|
/* Computer and wider */
|
|
@media only screen and (min-width: 992px) {
|
|
.hidden-on-computer-and-wider {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
/* Large Monitor */
|
|
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
|
|
.hidden-on-large-screen {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
/* Widescreen Monitor */
|
|
@media only screen and (min-width: 1920px) {
|
|
.hidden-on-widescreen {
|
|
display: none !important;
|
|
}
|
|
}
|