blob: ecd10fa66646455db2e8efe402797ff0f1161153 (
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
|
/**
* Copy of CC standard stylesheet, plus tweaks for iframe usage
*/
body {
margin: 0;
background: #eee;
font-family: Verdana;
color: #333;
}
#main {
border: 1px solid #D0D0D0;
background: #fff;
margin: 0.5em;
}
/**
* Looks like you have to specify the width of #menu
* or IE5 Mac stretches it all the way across the div, and
* Opera streches it half way.
*/
#main #menu {
border-left: 1px dotted #ccc;
float: right;
width: 230px;
background: white;
margin: 0 0 10px 10px;
}
td, h3, p, h1, pre {
margin: 0 20px 20px 20px;
font-size: 11px;
line-height: 140%;
}
.header {
padding-left: 10px;
padding-top: 10px;
}
.nav {
padding-left: 10px;
padding-bottom: 10px;
font-size: 11px;
margin-bottom: 16px;
}
#menu p {
font-size: 11px;
}
.dent {
margin-left: 64px;
}
|