initial commit of base template

This commit is contained in:
David Miller
2014-10-24 21:11:07 -04:00
parent 3ae294a3ef
commit bf85ed3592
29 changed files with 20424 additions and 3 deletions

22
less/mixins.less Normal file
View File

@@ -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;
}