styles
Version:
Compile your LESS stylesheets using JSON and underscore.
73 lines (72 loc) • 1.14 kB
CSS
.pull-right {
float: right;
}
.pull-left {
float: left;
}
.hide {
display: none ;
}
.show {
display: block ;
}
.invisible {
visibility: hidden;
}
.text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
.affix {
position: fixed;
}
@-ms-viewport {
width: device-width;
}
.hidden {
display: none;
visibility: hidden;
}
.visible-phone {
display: none ;
}
.visible-tablet {
display: none ;
}
.hidden-desktop {
display: none ;
}
.visible-desktop {
display: inherit ;
}
@media (min-width: 768px) and (max-width: 979px) {
.hidden-desktop {
display: inherit ;
}
.visible-desktop {
display: none ;
}
.visible-tablet {
display: inherit ;
}
.hidden-tablet {
display: none ;
}
}
@media (max-width: 767px) {
.hidden-desktop {
display: inherit ;
}
.visible-desktop {
display: none ;
}
.visible-phone {
display: inherit ;
}
.hidden-phone {
display: none ;
}
}