blob: bf8cdab7396c749ae6883c51a98d2f7a80d7867b (
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
|
@import "common_style.css";
html {
background-color: #eff6fd;
}
body {
margin: 0;
padding: 0;
/* For IE */
text-align: center;
}
#content {
text-align: justify;
margin: 0 auto;
padding: 2ex 6ex 2ex 10ex;
background-color: white;
background-image: url(img/pageborder.png);
background-position: 100% 0;
background-repeat: repeat-y;
/* Using width instead of max-width for IE */
width: 70ex;
}
span.signature {
font-style: italic;
}
ul.menu {
text-align: center;
padding-left: 0;
}
ul.menu li {
display: inline;
}
ul.menu li:before {
content: "[";
}
ul.menu li:after {
content: "]";
}
pre.example {
border-style: solid;
border-width: 1px;
padding: 0.5ex;
background-color: #e0e0e0;
}
|