shido
Version:
Build fast with Shido, a CSS framework for building custom designs without any annoying style or component you have to fight to override.
23 lines (21 loc) • 500 B
text/less
each(@breakpoints-min, .(@px, @breakpoint) {
@media (min-width: @px) {
.@{breakpoint}\:offset-0 {
margin-left: 0%;
}
each(range(@s-columns), .(@loop) {
.@{breakpoint}\:offset-@{loop} {
margin-left: (@s-grid * @loop) * 1%;
}
})
}
})
each(@breakpoints-min, .(@px, @breakpoint) {
@media (min-width: @px) {
each(range(@s-columns), .(@loop) {
.@{breakpoint}\:offset-fit-@{loop} {
margin-left: ((100% / @loop)) * 1%;
}
})
}
})