summaryrefslogtreecommitdiffstats
path: root/web/static/css/base.less
blob: 714d5abc47d810be44549b58bfd538e64956c0e8 (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
* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	height: 100%;
	background: #000;
	color: #ddd;
	font-family: sans-serif;
}

a {
	text-decoration: none;
	color: #dde;
}

form {
	input {
		background: #fff;
		border: 1px solid #cdd;
		padding: 5px 10px;
	}
}

.clear {
	clear: both;
}

#wrapper {
	width: 900px;
	margin: 50px auto;
	background: #111;
}