aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/scss/variables.scss
blob: 2448aaddb969101b865e6cc404a7d8eb0e0468e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$blue: #3bbfce;
$margin: 8px;
$chameleon-font-family: Arial, Helvetica, "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
$font: 12px;

.content-navigation {
	border-color: $blue;
	$blue: #0000ff;
	color: $blue;
	color1: darken($blue, 9%);
	font-family: $chameleon-font-family;
	$font-size: $font;
	font-size: $font-size;
}

.border {
	padding: $margin;
	margin: $margin;
	border-color: $blue;
}