Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EmielH/stip-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/scss/stip/_variables.scss')
-rw-r--r--assets/scss/stip/_variables.scss16
1 files changed, 16 insertions, 0 deletions
diff --git a/assets/scss/stip/_variables.scss b/assets/scss/stip/_variables.scss
new file mode 100644
index 0000000..17a39d7
--- /dev/null
+++ b/assets/scss/stip/_variables.scss
@@ -0,0 +1,16 @@
+// Fonts
+$sans-serif: 'Roboto', 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;
+$serif: 'Lora', 'Times', 'Times New Roman', serif;
+
+// Responsive breaks
+$break-large: 980px;
+
+// Portrait size
+$portrait-size: 300px;
+$portrait-border-width: 20px;
+
+@mixin transition($args...) {
+ -webkit-transition: $args;
+ -moz-transition: $args;
+ transition: $args;
+}