summaryrefslogtreecommitdiff
path: root/less/mixins.less
blob: 5329b0221ff34982ead99cfdf64d9f23c00d5c6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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() {
	font-family: 'Lora', 'Times New Roman', serif;
}

.sans-serif-font() {
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}