META-INF.resources.bower_components.vertical-timeline-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-vertical-timeline-css Show documentation
Show all versions of jwebmp-vertical-timeline-css Show documentation
The JWebSwing implementation for a CSS Vertical Timeline
The newest version!
// breakpoints
$S: 320px;
$M: 768px;
$L: 1170px;
// 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;
}
}
}