summaryrefslogtreecommitdiff
path: root/main.css
blob: 5a6ec6926bfd408201c90ad65d480d681d607394 (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
html,body {
	background: black;
	font-family: Monospace;
	color: lightgreen;
}

#website-container {
	width: 620px;
}

ul.navigation {
	list-style-type: none;
	display: block;
}

ul.navigation li {
	display: inline;
}

ul.navigation a {
	color: lightgreen;
	text-decoration: none;
}

ul.navigation a:hover {
	text-decoration: underline;
}

ul.posts {
	list-style-type: none;
}

ul.posts a {
	color: lightgreen;
	text-decoration: none;
}

/* code block */
.language-plaintext.highlighter-rouge {
  border-bottom: dashed;
}

ul.posts a:hover { text-decoration: underline; }

/* resources.html styles */
.home-social-links a {
	color: lightgreen;
	text-decoration: none;
}

/* Base Tags */
img { width: 100%; }

a {
	color: lightgreen;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}