Skip to content

Instantly share code, notes, and snippets.

@daniframos
Last active May 11, 2017 19:02
Show Gist options
  • Save daniframos/11391ed9d3ba658a79e0f5479bf3dbae to your computer and use it in GitHub Desktop.
Save daniframos/11391ed9d3ba658a79e0f5479bf3dbae to your computer and use it in GitHub Desktop.
/* DEBUG */
/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
body:before {
content: "Bootstrap: COL-LG";
position: fixed;
top: 0;
left: 0;
z-index: 99999;
background-color: red;
color: white;
font-weight: bold;
}
}
@media only screen and (min-width : 992px) and (max-width : 1199px) {
body:before {
content: "Bootstrap: COL-MD";
position: fixed;
top: 0;
left: 0;
z-index: 99999;
background-color: red;
color: white;
font-weight: bold;
}
}
/* Medium Devices, Desktops */
@media only screen and (min-width : 768px) and (max-width : 991px) {
body:before {
content: "Bootstrap: COL-SM";
position: fixed;
top: 0;
left: 0;
z-index: 99999;
background-color: red;
color: white;
font-weight: bold;
}
}
/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
body:before {
content: "Bootstrap: COL-XS";
position: fixed;
top: 0;
left: 0;
z-index: 99999;
background-color: red;
color: white;
font-weight: bold;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment