summaryrefslogtreecommitdiff
path: root/views/style.less
blob: 09630930b19f9cb08a9094dab560dfcf1e3b53c2 (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
56
57
58
59
60
61
62
63
64
65
@text_color: #666;
@background_color: #fff;
@emphasis_color: #222;
@light_color: #999;
@border_color: #eee;

*{
	margin: 0;
	padding: 0;
}

body{
	color: @text_color;
	background-color: @background_color;
	text-align: center;
	font-size: .625em;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#wrapper{
	margin: 0 auto;
	width: 960px;
	text-align: left;
}

#header #logo{
	background-image: url(/images/logo.png);
	background-repeat: no-repeat;
	width: 460px;
	height: 212px;
	display: block;
	margin: 10px 250px;
}

#header #logo span{
	display: none;
}

#header #description p{
	font-size: 1.4em;
	line-height: 1.8em;
	margin: 10px 170px;
	width: 620px;
	color: @light_color;
}

#body h1{
	margin: 20px 90px;
	font-size: 2.4em;
	color: @emphasis_color;
}

#body p{
	margin: 20px 90px;
	font-size: 1.6em;
	line-height: 2.4em;
	text-indent: 3em;
	text-align: justify;
}

hr{
	margin: 10px;
	border: 0;
	border-bottom: 1px solid @border_color;
}