summaryrefslogtreecommitdiff
path: root/src/main/resources/static/scss/_responsive.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/static/scss/_responsive.scss')
-rw-r--r--src/main/resources/static/scss/_responsive.scss15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/resources/static/scss/_responsive.scss b/src/main/resources/static/scss/_responsive.scss
new file mode 100644
index 0000000..7e6bff3
--- /dev/null
+++ b/src/main/resources/static/scss/_responsive.scss
@@ -0,0 +1,15 @@
+/* Normal desktop :1200px. */
+$large_device:'(min-width: 1200px) and (max-width: 1500px)';
+
+/* Normal desktop :992px. */
+$mid_device:'(min-width: 992px) and (max-width: 1200px)';
+
+/* Tablet desktop :768px. */
+$tablet_device:'(min-width: 768px) and (max-width: 991px)';
+
+/* small mobile :320px. */
+$mobile_device:'(max-width: 767px)';
+
+/* Large Mobile :480px. */
+$large_mobile:'only screen and (min-width: 480px) and (max-width: 767px)';
+