From 57aa89824a8dabb631c15af986a39e779d0fe3cb Mon Sep 17 00:00:00 2001 From: Mark Weiman Date: Sun, 11 Oct 2015 01:00:38 -0400 Subject: inital --- static/less/mixins.less | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 static/less/mixins.less (limited to 'static/less/mixins.less') diff --git a/static/less/mixins.less b/static/less/mixins.less new file mode 100644 index 0000000..c3b74c8 --- /dev/null +++ b/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 -- cgit v1.3.1