Slide 17
Slide 17 text
.border-radius(@radius: 5px) {
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
border-radius: @radius;
}
.sans-serif(@weight: normal, @size: 14px, @lineHeight: 20px) {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: @size;
font-weight: @weight;
line-height: @lineHeight;
}
.module {
.border-radius();
.sans-serif(bold, 18px, 24px);
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Reusable mixins with Less