Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 244
- Log:
Updates for new 17-Oct-2008 design.
- Author:
- rool
- Date:
- Fri Oct 17 15:14:19 +0100 2008
- Size:
- 3851 Bytes
1 | /* RISC OS Open Instiki stylesheet. |
2 | * |
3 | * Based on the Instiki default stylesheet. |
4 | */ |
5 | |
6 | @import url("/css/risc_os_open.css"); |
7 | |
8 | /* Set the page heading spacing */ |
9 | |
10 | h2#pageName |
11 | { |
12 | margin-bottom: 16px; |
13 | } |
14 | |
15 | div#content h3 |
16 | { |
17 | margin: 16px 0; |
18 | } |
19 | |
20 | /* Put a thin line under the byline (revision info), |
21 | * above the links to edit the page, view changes etc. |
22 | */ |
23 | |
24 | div.byline |
25 | { |
26 | margin-bottom: 10px; |
27 | border-bottom: 1px solid #c4ccd8; |
28 | padding-bottom: 10px; |
29 | } |
30 | |
31 | div#content table, div#content td, div#content tr |
32 | { |
33 | margin: 0; |
34 | padding: 0; |
35 | } |
36 | |
37 | div#content td { |
38 | padding-right: 10px; |
39 | } |
40 | |
41 | /* Text used in the navigation part of the sidebar for |
42 | * the currently selected page. |
43 | */ |
44 | |
45 | .sidebar-node .navOn |
46 | { |
47 | font-size: 90% |
48 | } |
49 | |
50 | .newWikiWord { background-color: #BFBFBF; } |
51 | .newWikiWord a:hover { background-color: white; } |
52 | |
53 | form#navigationSearchForm { display: inline; } |
54 | form#navigationSearchForm input { font-size: 80%; } |
55 | |
56 | div#Container .navigation { margin-top: 0.3em; font-size : 90%; color: #999; } |
57 | |
58 | .help { font-family: verdana, arial, helvetica, sans-serif; font-size: 70%; } |
59 | |
60 | .inputBox { font-family: verdana, arial, helvetica, sans-serif; font-size: 80%; background-color: #EEE; padding: 0.3em; margin-bottom: 1.5em; } |
61 | |
62 | blockquote { display: block; font-size: 90%; margin: 0 0 1.5em 0; padding: 0 2.5em; line-height: 1.5em; font-style: italic; } |
63 | |
64 | ol.setup { font-size: 110%; font-family: georgia, verdana, sans-serif; padding-left: 1.5em; margin-top: 1em; } |
65 | |
66 | .byline { padding-top: 1em; font-size: 60%; font-style: italic; margin-bottom: 1em; color: #999; } |
67 | |
68 | .diffdel, del.diffmod { background: #fcc; } |
69 | .diffins, ins.diffmod { background: #cfc; } |
70 | |
71 | #footer { font-size: 60%; line-height: 1.2em; color: #999; font-style: italic; text-align: right; padding-top: 2em; } |
72 | |
73 | div.inputFieldWithPrompt { margin: 0.75em 0; } |
74 | |
75 | div.errorExplanation { color: #900; background-color: #FFA; font-style: italic; font-weight: bold; margin: 1.5em 0; padding: 1em; width: 100%; } |
76 | div.errorExplanation h2 { display: none; } |
77 | div.errorExplanation p { padding: 0; margin: 0; border: none; } |
78 | div.errorExplanation ul { padding: 0; margin: 0.5em 0 0 2em; border: none; } |
79 | div.errorExplanation li { padding: 0; margin: 0; border: none; } |
80 | div.fieldWithErrors input { border: 1px solid #900; } |
81 | div.info { color: #060; background-color: #BFBFBF; padding: 0.5em; margin-top: 0.5em; font-weight: bold; width: 100%; } |
82 | |
83 | div#MarkupHelp { margin-left: 10px; } |
84 | div#MarkupHelp table { margin-bottom: 0; border-top: 3px solid #999; border-left: 3px solid #999; |
85 | border-right: 3px solid #BBB; border-bottom: 3px solid #BBB} |
86 | div#MarkupHelp td { font-size: 80%; padding: 0.2em; margin: 0; border: 1px solid #999; border-width: 1px 0 1px 0; |
87 | vertical-align: top; white-space: nowrap; } |
88 | div#MarkupHelp td.arrow { padding-right: 5px; padding: 0 0.75em; color: #999; } |
89 | div#MarkupHelp h3 { font-size: 90%; font-weight: bold; font-weight: normal; margin: 0 0 5px 0; padding: 5px 0 0 0; } |
90 | div#MarkupHelp p { font-size: 70%; } |
91 | |
92 | div.rightHandSide { float: right; width: 25%; margin-left: 0.7em; padding-left: 1.5em; border-left: 1px dotted #ccc; font-size: 80%; } |
93 | |
94 | .newsList { margin-top: 1.5em; } |
95 | .newsList p { margin-bottom: 2.5em; } |
96 | |
97 | /* Affects the display of "category: ..." */ |
98 | .property { color: #999; font-size: 80%; } |
99 | |
100 | /* Styles designed specifically for content */ |
101 | |
102 | dt { |
103 | font-weight: bold; |
104 | } |
105 | |
106 | dl.commands dt { |
107 | margin-left: 2em; |
108 | } |
109 | |
110 | dl.commands dd { |
111 | margin-left: 4em; |
112 | } |
113 | |
114 | dl.commands dt:first-child { |
115 | margin-left: 0; |
116 | margin-bottom: 14px;; |
117 | } |
118 | |
119 | pre.plaintext { |
120 | border: none; |
121 | background: none; |
122 | padding: 0; |
123 | margin: 0; |
124 | overflow: visible; |
125 | } |
126 | |
127 | /* Table of contents (see auto_sections.js) */ |
128 | |
129 | div#toc { padding-left: 2em; } |
130 | a.TOCBackLink { display: none; } |
131 | .TOCLevel3 { margin-left: 2em; } |
132 | .TOCLevel4 { margin-left: 4em; } |
133 | .TOCLevel5 { margin-left: 6em; } |
134 | .TOCLevel6 { margin-left: 8em; } |
135 |