blob: 04d7aebaad5d4d1831e090c17cf3fb8a41ee0f9f (
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
|
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;
}
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;
}
|