summaryrefslogtreecommitdiff
path: root/style.css
blob: d8e3286beb74c7c2971a6fcd3f92f3bfa8bd584d (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
body {
	background: #121212;
	margin: 0;
	padding: 0;
	text-align: center;
}

main {
	margin: auto;
	max-width: 900px;
	text-align: left;
}

.icon {
	display: block;
	margin: auto;
	padding: 20px;
	max-width: 100%;
	height: auto;
}

p, h1, h2, h3, h4 {
	color: #dedede;
}

h1, h2, h3 {
	text-align: center;
}

hr {
  border-top: 1px dotted #dedede;
}

li {
	color: #dedede;
	text-align: left;
	vertical-align: middle;
}

a {
	color: #6767de;
}

footer {
	font-size: small;
	text-align: center;
}

.column {
	box-sizing: border-box;
	float: left;
	width: 50%;
	padding: 10px;
}

.row:after {
	content: "";
	display: table;
	clear: both;
}