All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.bower_components.radial-svg-slider-jwebswing.partials._layout.scss Maven / Gradle / Ivy

There is a newer version: 0.66.0.1
Show newest version
// 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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy