summaryrefslogtreecommitdiffstats
path: root/sass/base/_layout.scss
blob: 60d27a7ec27b09c2c6d569cd00da2a5260fc5a1e (plain)
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
48
49
50
51
$max-width: 1200px;

@mixin square($property){
	width: $property;
	height: $property;
}
@mixin user-select($select){
	-moz-user-select: $select;
	-khtml-user-select: $select;
	-webkit-user-select: $select;
	-o-user-select: $select;
	user-select: $select;
}

*{
	margin: 0;
	padding: 0;
}
body{
	font-family: $default;
	font-weight: 300;
	font-size: 14px;
	background: #333 image-url('random_grey_variations.png');
}
h1{
	font-size: 2em;
}
h2{
	font-size: 1.5em;
}
h3{
	font-size: 1.3em;
}
a{
	text-decoration: none;
	outline-width: 0;
	color: $main;
}
.left{
	float: left;
}
.right{
	float: right;
}
.clear{
	clear: both;
}
.inner{
	width: $max-width;
	margin: 0 auto;
}