summaryrefslogtreecommitdiff
path: root/style.css
blob: ef0eaa43f407bcb04441810616476916d3d52933 (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
body {
  color: black;
  background-color: white;
  font-family: 'Verdana', 'Arial', sans-serif;
  padding: 15px;
  margin: 0;
  font-size: 100.01%;
}
img {
  border: 0;
}
pre {
  margin: 25px;
  background-color: silver;
  color: navy;
  border: 1px dashed black;
  padding: 5px;
}
a {
  color: #af0000;
  background-color: white;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img#logo {
  float: left;
}
p.valid {
  float: right;
}
ul#linkbox {
  font-size: 12px;
  float: right;
  width: 150px;
  margin: 0;
  padding: 0;
  border: 1px solid silver;
}
ul#linkbox li {
  list-style: none;
  margin: 0;
  padding: 2px;
}
ul#linkbox a {
  display: block;
  padding: 5px;
  text-decoration: none;
  font-weight: bold;
}
ul#linkbox a:link {
  color: white;
  text-decoration: none;
  background-color: #af0000;
}
ul#linkbox a:visited {
  color: white;
  text-decoration: none;
  background-color: #af0000;
}
ul#linkbox a:hover {
  color: white;
  text-decoration: underline;
  background-color: #af0000;
}
ul#linkbox a:active {
  color: white;
  text-decoration: underline;
  background-color: #af0000;
}
div#content {
  margin-right: 150px;
  padding: 0 10px;
}
div#content h1 {
  color: #af0000;
  background-color: white;
  font-size: 20px;
  padding: 18px 0 18px 0;
  margin: 0 90px;
}
div#content h2 {
  font-size: 16px;
  margin-bottom: 16px;
}
div#content p {
  font-size: 14px;
  margin-top: 14px;
}
span.caption {
  font-size:12px;
}