summaryrefslogtreecommitdiff
path: root/css/styles.css
blob: a87cdd3d775daf93616cff622242eed881ca3729 (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
body {
    margin: auto;
	margin-top: 10px;
    margin-bottom: 15px;
    width: 720px;
    font-family: monospace;
    font-size: 16px; 
    color: whitesmoke;
    background: darkslategray;
}

h1 {
	margin: 0px;
	padding: 0px;
	font-size: 240%;
	font-weight: normal;
}

h2 {
    margin: 0px;
    padding: 0px;
    font-size: 160%;
    font-weight: normal;
}

h3 {
	margin: 0px;
	font-weight: normal;
}

h4 {
	margin: 0px;
	padding: 0px;
	font-weight: normal;
	color: gray;
}

ul {
	list-style: '> ';
	margin: 0px;
}
	
li {
    margin: 15px 0px 15px;
}

details {
    margin-top: 15px;
}

summary {
    font-size: 115%;
    margin-top: 3px;
    margin-bottom: 3px;
}

blockquote {
	border-left: 5px solid thistle;
	margin: 1.2em 10px;
	padding: 0.5em 12px;
	font-style: italic;
}

#content {
    margin: 20px;
}

#nav {
    float: right;
    color: gray;
    font-size: 120%;
}

a:link { 
    text-decoration: none;
    color: darkorange;
}
a:visited {
    text-decoration: none;
    color: darkorange;
}
a:active {
    text-decoration: none;
    color: darkorange;
}
a:hover { color: thistle; }