diff options
Diffstat (limited to 'repos/static/less/mixins.less')
| -rw-r--r-- | repos/static/less/mixins.less | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/repos/static/less/mixins.less b/repos/static/less/mixins.less new file mode 100644 index 0000000..c3b74c8 --- /dev/null +++ b/repos/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 |
