|
| 1 | +/* ### |
| 2 | + * IP: GHIDRA |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | +/* |
| 17 | + WARNING! |
| 18 | + This file is copied to all help directories. If you change this file, you must copy it |
| 19 | + to each src/main/help/help/shared directory. |
| 20 | + |
| 21 | + |
| 22 | + Java Help Note: JavaHelp does not accept sizes (like in 'margin-top') in anything but |
| 23 | + px (pixel) or with no type marking. |
| 24 | +
|
| 25 | +*/ |
| 26 | + |
| 27 | +body { margin-bottom: 50px; margin-left: 10px; margin-right: 10px; margin-top: 10px; } /* some padding to improve readability */ |
| 28 | +li { font-family:times new roman; font-size:14pt; } |
| 29 | +h1 { color:#000080; font-family:times new roman; font-size:36pt; font-style:italic; font-weight:bold; text-align:center; } |
| 30 | +h2 { margin: 10px; margin-top: 20px; color:#984c4c; font-family:times new roman; font-size:18pt; font-weight:bold; } |
| 31 | +h3 { margin-left: 10px; margin-top: 20px; color:#0000ff; font-family:times new roman; `font-size:14pt; font-weight:bold; } |
| 32 | +h4 { margin-left: 10px; margin-top: 20px; font-family:times new roman; font-size:14pt; font-style:italic; } |
| 33 | + |
| 34 | +/* |
| 35 | + P tag code. Most of the help files nest P tags inside of blockquote tags (the was the |
| 36 | + way it had been done in the beginning). The net effect is that the text is indented. In |
| 37 | + modern HTML we would use CSS to do this. We need to support the Ghidra P tags, nested in |
| 38 | + blockquote tags, as well as naked P tags. The following two lines accomplish this. Note |
| 39 | + that the 'blockquote p' definition will inherit from the first 'p' definition. |
| 40 | +*/ |
| 41 | +p { margin-left: 40px; font-family:times new roman; font-size:14pt; } |
| 42 | +blockquote p { margin-left: 10px; } |
| 43 | + |
| 44 | +p.providedbyplugin { color:#7f7f7f; margin-left: 10px; font-size:14pt; margin-top:100px } |
| 45 | +p.ProvidedByPlugin { color:#7f7f7f; margin-left: 10px; font-size:14pt; margin-top:100px } |
| 46 | +p.relatedtopic { color:#800080; margin-left: 10px; font-size:14pt; } |
| 47 | +p.RelatedTopic { color:#800080; margin-left: 10px; font-size:14pt; } |
| 48 | + |
| 49 | +/* |
| 50 | + We wish for a tables to have space between it and the preceding element, so that text |
| 51 | + is not too close to the top of the table. Also, nest the table a bit so that it is clear |
| 52 | + the table relates to the preceding text. |
| 53 | +*/ |
| 54 | +table { margin-left: 20px; margin-top: 10px; width: 80%;} |
| 55 | +td { font-family:times new roman; font-size:14pt; vertical-align: top; } |
| 56 | +th { font-family:times new roman; font-size:14pt; font-weight:bold; background-color: #EDF3FE; } |
| 57 | + |
| 58 | +/* |
| 59 | + Code-like formatting for things such as file system paths and proper names of classes, |
| 60 | + methods, etc. To apply this to a file path, use this syntax: |
| 61 | + <CODE CLASS="path">...</CODE> |
| 62 | +*/ |
| 63 | +code { color: black; font-weight: bold; font-family: courier new, monospace; font-size: 14pt; white-space: nowrap; } |
| 64 | +code.path { color: #4682B4; font-weight: bold; font-family: courier new, monospace; font-size: 14pt; white-space: nowrap; } |
0 commit comments