-
Notifications
You must be signed in to change notification settings - Fork 6
/
variables.less
47 lines (40 loc) · 993 Bytes
/
variables.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//////////////
/// Colors ///
//////////////
@primary-color: #368;
@primary-shade: darken(#368, 10%);
@primary-tint: lighten(#368, 10%);
@primary-tint-2: lighten(#368, 30%);
@red: #e74c3c;
@dark-red: darken(@red, 20%);
@green: #2ecc71;
@dark-green: darken(@green, 20%);
@gray: #dcdcdc;
@dark-gray: darken(@gray, 10%);
@light-gray: lighten(@gray, 10%);
@white: #ffffff;
//////////////////
/// Typography ///
//////////////////
@fontstack: Helvetica, Arial, sans-serif;
@small: (@base-font-size * .8);
@base-font-size: 1.15em;
@large: (@base-font-size * 1.2);
@larger: (@base-font-size * 1.6);
///////////////////////////
/// Yet to be organized ///
///////////////////////////
.box-shadow (@shadow) {
-webkit-box-shadow: @shadow;
-moz-box-shadow: @shadow;
box-shadow: @shadow;
}
.border-radius(@radius) {
border-radius: @radius;
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
border-radius: @radius;
}
.text-shadow {
text-shadow: 0px 1px @light-gray;
}