META-INF.resources.bower_components.radial-svg-slider-jwebswing.partials._layout.scss Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-radial-slider-gem Show documentation
Show all versions of jwebmp-radial-slider-gem Show documentation
The JWebSwing implementation for a Radial Slider
// breakpoints
$S: 480px;
$M: 900px;
$L: 1100px;
// media queries
@mixin MQ($canvas) {
@if $canvas == S {
@media only screen and (min-width: $S) {
@content;
}
} @else if $canvas == M {
@media only screen and (min-width: $M) {
@content;
}
} @else if $canvas == L {
@media only screen and (min-width: $L) {
@content;
}
}
}
// super light grid system
@mixin column($percentage, $float-direction:left) {
width: 100% * $percentage;
float: $float-direction;
}