|
1 /* Add whitespace around entire display to avoid crowding edges of view */ |
|
2 html { |
|
3 margin: 10px; |
|
4 } |
|
5 |
|
6 /* Set default font to serif style, 12-pt and plain */ |
|
7 body { |
|
8 font-family: Georgia, "Times New Roman", Times, serif; |
|
9 font-size: 12px; |
|
10 font-weight: plain; |
|
11 } |
|
12 |
|
13 /* Use sans-serif fonts for all title styles and Nokia blue */ |
|
14 h1, h2, h3, h4, h5, h6, strong, em { |
|
15 font-family: Arial, Helvetica, sans-serif; |
|
16 color: #333; |
|
17 } |
|
18 |
|
19 /* For headlines at the top of a view, add space and a gray line underneath */ |
|
20 h2, h3 { |
|
21 padding:10px 0px; |
|
22 } |
|
23 |
|
24 li { |
|
25 margin-bottom:8px; |
|
26 margin-top:8px; |
|
27 } |
|
28 |
|
29 /* p.listing in Nile.css */ |
|
30 .CodeBlock { |
|
31 font-family: "Courier New", Courier, mono; |
|
32 color: #009; |
|
33 background-color: #EEE; |
|
34 padding: 10px 0px; |
|
35 margin: 10px 0px; |
|
36 } |
|
37 |
|
38 pre { |
|
39 font-family: "Courier New", Courier, mono; |
|
40 font-size: 12px; |
|
41 color: #333; |
|
42 } |
|
43 |
|
44 /* Tables. */ |
|
45 |
|
46 table { |
|
47 border: 1px solid #5990D0; |
|
48 table-layout: auto; |
|
49 } |
|
50 |
|
51 td, th { |
|
52 border: 1px solid #5990D0; |
|
53 padding: 5px; |
|
54 vertical-align:top; |
|
55 } |
|
56 |
|
57 th { |
|
58 background-color:#5990D0; |
|
59 color:#FFF; |
|
60 } |
|
61 |
|
62 /* Lists from nile.css */ |
|
63 div.ol.p { |
|
64 margin-left: 3em; |
|
65 } |
|
66 |
|
67 div ol > li { |
|
68 font-weight:bold; |
|
69 } |
|
70 |
|
71 /* Figures */ |
|
72 |
|
73 .Figure .Caption, .Figure .Image, .RelatedItems .Image { |
|
74 text-align: center; |
|
75 } |
|
76 |
|
77 /* p.figure in Nile.css*/ |
|
78 .Caption { |
|
79 color: #5990D0; |
|
80 text-align: center; |
|
81 font-weight: bold; |
|
82 } |
|
83 |
|
84 /* Other */ |
|
85 |
|
86 .Prototype { |
|
87 border: solid white 1px; |
|
88 background-color: #dddddd; |
|
89 } |
|
90 |
|
91 .copyrightStatement { |
|
92 font-size: 12px; |
|
93 color: #006699; /* Symbian blue */ |
|
94 } |
|
95 |
|
96 .unresolvedLink { |
|
97 color: #ff0000; |
|
98 background-color: #ffddbb; |
|
99 } |
|
100 |
|
101 /* Glossary */ |
|
102 .Glossary dt { margin-top: 1.5em; } |