summaryrefslogtreecommitdiffstats
path: root/sass/base/_layout.scss
blob: 3d164ebdb29b3b22ff384f9a9a3b1605b018d32c (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
52
53
54
55
$max-width: 1000px;

*{
	margin: 0;
	padding: 0;
}
body{
	font-family: $default;
	font-weight: 300;
	font-size: 14px;
	background: $background;
	color: $gray01;
}
h1{
	font-size: 1.8em;
}
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;
}

@media screen and (max-width: 1030px){
	body{
		margin: 0 30px;
	}
	.inner{
		width: 100%;
	}
}

@media screen and (max-width: 600px){
	body{
		font-size: 13px;
	}
}