summaryrefslogtreecommitdiffstats
path: root/src/style.css
blob: 13a525517794770a65d0d114d46a5ab596777b00 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
@import url(https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700);

*, *:before, *:after { box-sizing: border-box; }
html {
	background-color: #eee;
}
body {
	font-size: 16px;
	font-family: 'PT Sans';
	max-width: 42rem;
	margin: -1.5rem auto;
	padding: 0 1rem;
	border: 1px solid #ccc;
	background-color: #fcfcfc;
	-moz-hyphens: auto; -webkit-hyphens: auto;
	-ms-hyphens: auto;  hyphens: auto;
}

a, a:visited {
	text-decoration: none;
	color: #32609C;
}
a:hover {
	color: #339;
}

header {
	font-size: 0.9rem;
	padding-top: 1.25rem;
}
header nav ul {
	font-size: 0.9rem;
	font-family: 'DejaVu Sans Mono';
	list-style-type: none;
	padding: 0;
}
header nav ul li {
	display: inline;
	margin-right: 0.5rem;
}
header nav a, header nav a:visited {
	color: #444;
}
header nav a:hover {
	color: #000;
}
header h1 {
	margin: 0;
}

#content {
	padding-bottom: 0.5rem;
	color: #222;
}

#content > p:first-of-type:first-letter {
	float: left;
	color: #903;
	font-size: 3rem;
	line-height: 2rem;
	padding-top: 0.4rem;
	padding-right: 0.4rem;
	padding-left: 0.1rem;
	font-family: 'Georgia';
}
@media (max-width: 767px) {
	#content > p:first-of-type:first-letter {
		padding-top: 0.3rem;
		padding-right: 0.2rem;
		font-size: 2.7rem;
	}
}

#users h3 {
	margin: 0 0 -0.5rem 0;
}
#users ul {
	list-style-type: none;
	padding: 0 0 0 0.5rem;
}

#users ul li {
	padding-bottom: 0.25rem;
}

.info-right {
	font-size: 14px;
	text-align: right;
	margin: 0;
}

.botborder {
	border-bottom: 0.15rem;
	border-bottom-style: dotted;
	border-bottom-color: #bbb;
	padding-bottom: 0.5rem;
}

footer p {
	color: #333;
	margin: 1rem 0;
}