summaryrefslogtreecommitdiff
path: root/root/static/less/mixins.less
diff options
context:
space:
mode:
Diffstat (limited to 'root/static/less/mixins.less')
-rw-r--r--root/static/less/mixins.less22
1 files changed, 22 insertions, 0 deletions
diff --git a/root/static/less/mixins.less b/root/static/less/mixins.less
new file mode 100644
index 0000000..c3b74c8
--- /dev/null
+++ b/root/static/less/mixins.less
@@ -0,0 +1,22 @@
+// Mixins
+
+.transition-all() {
+ -webkit-transition: all 0.5s;
+ -moz-transition: all 0.5s;
+ transition: all 0.5s;
+}
+
+.background-cover() {
+ -webkit-background-size: cover;
+ -moz-background-size: cover;
+ background-size: cover;
+ -o-background-size: cover;
+}
+
+.serif() {
+ font-family: 'Lora', 'Times New Roman', serif;
+}
+
+.sans-serif () {
+ font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
+} \ No newline at end of file