From ba2a312b4c60334b9bda5d3820fe6e4f615a7463 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Fri, 23 Feb 2018 22:00:32 +1100 Subject: [PATCH] Added responsive settings/tools --- public/styles/settings/responsive.scss | 43 ++++++++++++++++++++++++++ public/styles/tools/_responsive.scss | 31 +++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 public/styles/settings/responsive.scss create mode 100644 public/styles/tools/_responsive.scss diff --git a/public/styles/settings/responsive.scss b/public/styles/settings/responsive.scss new file mode 100644 index 0000000..dc4a0c5 --- /dev/null +++ b/public/styles/settings/responsive.scss @@ -0,0 +1,43 @@ +/* + * Responsive Settings + * Provides settings for responsive tools + * + * Dependencies: + * + * Version: + * 1.0.1 - 2018/02/23 + */ + +//Pixel size definitions +$s-screen-xsmall: 500px; +$s-screen-small: 750px; +$s-screen-medium: 1000px; +$s-screen-large: 1250px; +$s-screen-xlarge: 1500px; + +//Size definitions +$s-xsmall: 'xsmall'; +$s-small: 'small'; +$s-medium: 'medium'; +$s-large: 'large'; +$s-xlarge: 'xlarge'; + +//Groups +$s-xsmall-up: 'xsmall-up'; +$s-small-up: 'small-up'; +$s-medium-up: 'medium-up'; +$s-large-up: 'large-up'; + +//Breakpoints +$s-breakpoints: ( + $s-xsmall '(max-width: #{$s-screen-small - 1})', + $s-small '(min-width: #{$s-screen-small}) and (max-width: #{$s-screen-medium - 1})', + $s-medium '(min-width: #{$s-screen-medium}) and (max-width: #{$s-screen-large - 1})', + $s-large '(min-width: #{$s-screen-large}) and (max-width: #{$s-screen-xlarge - 1})', + $s-xlarge '(min-width: #{$s-screen-xlarge})', + + $s-xsmall-up '(min-width: #{$s-screen-xsmall})', + $s-small-up '(min-width: #{$s-screen-small})', + $s-medium-up '(min-width: #{$s-screen-medium})', + $s-large-up '(min-width: #{$s-screen-large})' +); diff --git a/public/styles/tools/_responsive.scss b/public/styles/tools/_responsive.scss new file mode 100644 index 0000000..4a32a19 --- /dev/null +++ b/public/styles/tools/_responsive.scss @@ -0,0 +1,31 @@ +/* + * Responsive Tools + * Responsive tools + * + * Dependencies: + * styles/settings/responsive.scss + * + * Version: + * 1.0.0 - 2018/02/23 + */ + +@mixin t-media-query($media-query) { + $breakpoint-found: false; + + @each $breakpoint in $s-breakpoints { + $name: nth($breakpoint, 1); + $declaration: nth($breakpoint, 2); + + @if $media-query == $name and $declaration { + $breakpoint-found: true; + + @media only screen and #{$declaration} { + @content; + } + } + } + + @if $breakpoint-found == false { + @warn 'Breakpoint "#{$media-query}" does not exist'; + } +}