responsive-image-grid
Version:
Image-Grid: a pure css lightweight, responsive and mobile friendly image-grid
26 lines (23 loc) • 368 B
text/less
// Base
*,
*::before,
*::after {
box-sizing: inherit;
}
html {
box-sizing: border-box;
font-size: @html-font-size;
line-height: @html-line-height;
-webkit-tap-highlight-color: transparent;
}
body {
font-size: @body-font-size;
overflow-x: hidden;
}
// Disabled state
&[disabled],
.disabled {
cursor: default;
opacity: .75;
pointer-events: none;
}