[9958] | 1 | @CHARSET "ISO-8859-1";
|
---|
| 2 | /*
|
---|
[13416] | 3 | * This is the CSS file used in the internal help browser.
|
---|
| 4 | * Refer to https://docs.oracle.com/javase/8/docs/api/javax/swing/text/html/CSS.html
|
---|
[13428] | 5 | * and https://www.w3.org/TR/CSS1/ to see what CSS properties are supported by Java.
|
---|
| 6 | * - Not rendered are width, height, float, clear, display, font-variant and others.
|
---|
| 7 | * - Inline elements can't have borders, margins and paddings.
|
---|
[9958] | 8 | */
|
---|
| 9 | body {margin-left: 0.2cm; font-family: Arial, sans-serif; font-size:14pt; font-weight:normal}
|
---|
| 10 | p {margin-top: 5px; margin-bottom: 5px;}
|
---|
| 11 | h1 {font-family: Arial, sans-serif; font-size:24pt; font-weight:bold}
|
---|
| 12 | h2 {margin-top: 14pt; font-family: Arial, sans-serif; font-size:20pt; font-weight:bold}
|
---|
| 13 | h3 {margin-top: 14pt; font-family: Arial, sans-serif; font-size:16pt; font-weight:bold}
|
---|
| 14 | h4 {margin-top: 14pt; font-family: Arial, sans-serif; font-size:14pt; font-weight:bold}
|
---|
| 15 | a {font-family: Arial, sans-serif; font-size:14pt; font-weight:normal; text-decoration: underline; color: blue}
|
---|
| 16 | ul {margin-left: 1cm; list-style-type: disc}
|
---|
| 17 | ul ul {margin-left: 1cm; list-style-type: circle}
|
---|
| 18 | ol {margin-left: 1cm;}
|
---|
| 19 | strong {font-weight: bold}
|
---|
| 20 | b {font-weight: bold}
|
---|
| 21 | em {font-style: italic}
|
---|
| 22 | i {font-style: italic}
|
---|
[13459] | 23 | code, pre, samp, tt {
|
---|
[13428] | 24 | background-color: rgb(240, 240, 240);
|
---|
[13459] | 25 | font-family: Courier New;
|
---|
[13416] | 26 | color: rgb(102, 0, 0);
|
---|
| 27 | }
|
---|
[13459] | 28 | code, tt {
|
---|
| 29 | font-size: 110%;
|
---|
| 30 | }
|
---|
[9958] | 31 | .warning-header {
|
---|
| 32 | font-family: Arial, sans-serif;
|
---|
| 33 | font-size:24pt;
|
---|
| 34 | font-weight:bold
|
---|
| 35 | }
|
---|
| 36 | .warning-body {
|
---|
| 37 | background-color:rgb(253,255,221);
|
---|
| 38 | padding: 10pt;
|
---|
| 39 | border-color:rgb(128,128,128);
|
---|
| 40 | border-style: solid;
|
---|
| 41 | border-width: 1px;
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | .error-header {
|
---|
| 45 | font-family: Arial, sans-serif;
|
---|
| 46 | font-size:24pt;
|
---|
| 47 | font-weight:bold
|
---|
| 48 | }
|
---|
| 49 | .error-body {
|
---|
| 50 | background-color:rgb(254,195,190);
|
---|
| 51 | padding: 10pt;
|
---|
| 52 | border-color:rgb(128,128,128);
|
---|
| 53 | border-style: solid;
|
---|
| 54 | border-width: 1px;
|
---|
[13459] | 55 | }
|
---|
| 56 |
|
---|
| 57 | /********
|
---|
| 58 | TRAC CSS
|
---|
| 59 | ********/
|
---|
| 60 |
|
---|
[13571] | 61 | dl.wiki { margin-top: 5px; margin-bottom: 5px }
|
---|
| 62 | dl.wiki dt { font-weight: bold }
|
---|
| 63 | dl.wiki dd { margin-left: 40px }
|
---|
| 64 |
|
---|
[13459] | 65 | div.code pre .hll { background-color: #ffffcc }
|
---|
| 66 | div.code pre { background: #ffffff; }
|
---|
| 67 | div.code pre .c { color: #999988; font-style: italic } /* Comment */
|
---|
| 68 | div.code pre .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
---|
| 69 | div.code pre .k { font-weight: bold } /* Keyword */
|
---|
| 70 | div.code pre .o { font-weight: bold } /* Operator */
|
---|
| 71 | div.code pre .ch { color: #999988; font-style: italic } /* Comment.Hashbang */
|
---|
| 72 | div.code pre .cm { color: #999988; font-style: italic } /* Comment.Multiline */
|
---|
| 73 | div.code pre .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
|
---|
| 74 | div.code pre .cpf { color: #999988; font-style: italic } /* Comment.PreprocFile */
|
---|
| 75 | div.code pre .c1 { color: #999988; font-style: italic } /* Comment.Single */
|
---|
| 76 | div.code pre .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
|
---|
| 77 | div.code pre .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
---|
| 78 | div.code pre .ge { font-style: italic } /* Generic.Emph */
|
---|
| 79 | div.code pre .gr { color: #aa0000 } /* Generic.Error */
|
---|
| 80 | div.code pre .gh { color: #999999 } /* Generic.Heading */
|
---|
| 81 | div.code pre .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
---|
| 82 | div.code pre .go { color: #888888 } /* Generic.Output */
|
---|
| 83 | div.code pre .gp { color: #555555 } /* Generic.Prompt */
|
---|
| 84 | div.code pre .gs { font-weight: bold } /* Generic.Strong */
|
---|
| 85 | div.code pre .gu { color: #aaaaaa } /* Generic.Subheading */
|
---|
| 86 | div.code pre .gt { color: #aa0000 } /* Generic.Traceback */
|
---|
| 87 | div.code pre .kc { font-weight: bold } /* Keyword.Constant */
|
---|
| 88 | div.code pre .kd { font-weight: bold } /* Keyword.Declaration */
|
---|
| 89 | div.code pre .kn { font-weight: bold } /* Keyword.Namespace */
|
---|
| 90 | div.code pre .kp { font-weight: bold } /* Keyword.Pseudo */
|
---|
| 91 | div.code pre .kr { font-weight: bold } /* Keyword.Reserved */
|
---|
| 92 | div.code pre .kt { color: #445588; font-weight: bold } /* Keyword.Type */
|
---|
| 93 | div.code pre .m { color: #009999 } /* Literal.Number */
|
---|
| 94 | div.code pre .s { color: #bb8844 } /* Literal.String */
|
---|
| 95 | div.code pre .na { color: #008080 } /* Name.Attribute */
|
---|
| 96 | div.code pre .nb { color: #999999 } /* Name.Builtin */
|
---|
| 97 | div.code pre .nc { color: #445588; font-weight: bold } /* Name.Class */
|
---|
| 98 | div.code pre .no { color: #008080 } /* Name.Constant */
|
---|
| 99 | div.code pre .ni { color: #800080 } /* Name.Entity */
|
---|
| 100 | div.code pre .ne { color: #990000; font-weight: bold } /* Name.Exception */
|
---|
| 101 | div.code pre .nf { color: #990000; font-weight: bold } /* Name.Function */
|
---|
| 102 | div.code pre .nn { color: #555555 } /* Name.Namespace */
|
---|
| 103 | div.code pre .nt { color: #000080 } /* Name.Tag */
|
---|
| 104 | div.code pre .nv { color: #008080 } /* Name.Variable */
|
---|
| 105 | div.code pre .ow { font-weight: bold } /* Operator.Word */
|
---|
| 106 | div.code pre .w { color: #bbbbbb } /* Text.Whitespace */
|
---|
| 107 | div.code pre .mb { color: #009999 } /* Literal.Number.Bin */
|
---|
| 108 | div.code pre .mf { color: #009999 } /* Literal.Number.Float */
|
---|
| 109 | div.code pre .mh { color: #009999 } /* Literal.Number.Hex */
|
---|
| 110 | div.code pre .mi { color: #009999 } /* Literal.Number.Integer */
|
---|
| 111 | div.code pre .mo { color: #009999 } /* Literal.Number.Oct */
|
---|
| 112 | div.code pre .sb { color: #bb8844 } /* Literal.String.Backtick */
|
---|
| 113 | div.code pre .sc { color: #bb8844 } /* Literal.String.Char */
|
---|
| 114 | div.code pre .sd { color: #bb8844 } /* Literal.String.Doc */
|
---|
| 115 | div.code pre .s2 { color: #bb8844 } /* Literal.String.Double */
|
---|
| 116 | div.code pre .se { color: #bb8844 } /* Literal.String.Escape */
|
---|
| 117 | div.code pre .sh { color: #bb8844 } /* Literal.String.Heredoc */
|
---|
| 118 | div.code pre .si { color: #bb8844 } /* Literal.String.Interpol */
|
---|
| 119 | div.code pre .sx { color: #bb8844 } /* Literal.String.Other */
|
---|
| 120 | div.code pre .sr { color: #808000 } /* Literal.String.Regex */
|
---|
| 121 | div.code pre .s1 { color: #bb8844 } /* Literal.String.Single */
|
---|
| 122 | div.code pre .ss { color: #bb8844 } /* Literal.String.Symbol */
|
---|
| 123 | div.code pre .bp { color: #999999 } /* Name.Builtin.Pseudo */
|
---|
| 124 | div.code pre .vc { color: #008080 } /* Name.Variable.Class */
|
---|
| 125 | div.code pre .vg { color: #008080 } /* Name.Variable.Global */
|
---|
| 126 | div.code pre .vi { color: #008080 } /* Name.Variable.Instance */
|
---|
| 127 | div.code pre .il { color: #009999 } /* Literal.Number.Integer.Long */
|
---|
| 128 |
|
---|
| 129 | table.code td .hll { background-color: #ffffcc }
|
---|
| 130 | table.code td { background: #ffffff; }
|
---|
| 131 | table.code td .c { color: #999988; font-style: italic } /* Comment */
|
---|
| 132 | table.code td .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
---|
| 133 | table.code td .k { font-weight: bold } /* Keyword */
|
---|
| 134 | table.code td .o { font-weight: bold } /* Operator */
|
---|
| 135 | table.code td .ch { color: #999988; font-style: italic } /* Comment.Hashbang */
|
---|
| 136 | table.code td .cm { color: #999988; font-style: italic } /* Comment.Multiline */
|
---|
| 137 | table.code td .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
|
---|
| 138 | table.code td .cpf { color: #999988; font-style: italic } /* Comment.PreprocFile */
|
---|
| 139 | table.code td .c1 { color: #999988; font-style: italic } /* Comment.Single */
|
---|
| 140 | table.code td .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
|
---|
| 141 | table.code td .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
---|
| 142 | table.code td .ge { font-style: italic } /* Generic.Emph */
|
---|
| 143 | table.code td .gr { color: #aa0000 } /* Generic.Error */
|
---|
| 144 | table.code td .gh { color: #999999 } /* Generic.Heading */
|
---|
| 145 | table.code td .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
---|
| 146 | table.code td .go { color: #888888 } /* Generic.Output */
|
---|
| 147 | table.code td .gp { color: #555555 } /* Generic.Prompt */
|
---|
| 148 | table.code td .gs { font-weight: bold } /* Generic.Strong */
|
---|
| 149 | table.code td .gu { color: #aaaaaa } /* Generic.Subheading */
|
---|
| 150 | table.code td .gt { color: #aa0000 } /* Generic.Traceback */
|
---|
| 151 | table.code td .kc { font-weight: bold } /* Keyword.Constant */
|
---|
| 152 | table.code td .kd { font-weight: bold } /* Keyword.Declaration */
|
---|
| 153 | table.code td .kn { font-weight: bold } /* Keyword.Namespace */
|
---|
| 154 | table.code td .kp { font-weight: bold } /* Keyword.Pseudo */
|
---|
| 155 | table.code td .kr { font-weight: bold } /* Keyword.Reserved */
|
---|
| 156 | table.code td .kt { color: #445588; font-weight: bold } /* Keyword.Type */
|
---|
| 157 | table.code td .m { color: #009999 } /* Literal.Number */
|
---|
| 158 | table.code td .s { color: #bb8844 } /* Literal.String */
|
---|
| 159 | table.code td .na { color: #008080 } /* Name.Attribute */
|
---|
| 160 | table.code td .nb { color: #999999 } /* Name.Builtin */
|
---|
| 161 | table.code td .nc { color: #445588; font-weight: bold } /* Name.Class */
|
---|
| 162 | table.code td .no { color: #008080 } /* Name.Constant */
|
---|
| 163 | table.code td .ni { color: #800080 } /* Name.Entity */
|
---|
| 164 | table.code td .ne { color: #990000; font-weight: bold } /* Name.Exception */
|
---|
| 165 | table.code td .nf { color: #990000; font-weight: bold } /* Name.Function */
|
---|
| 166 | table.code td .nn { color: #555555 } /* Name.Namespace */
|
---|
| 167 | table.code td .nt { color: #000080 } /* Name.Tag */
|
---|
| 168 | table.code td .nv { color: #008080 } /* Name.Variable */
|
---|
| 169 | table.code td .ow { font-weight: bold } /* Operator.Word */
|
---|
| 170 | table.code td .w { color: #bbbbbb } /* Text.Whitespace */
|
---|
| 171 | table.code td .mb { color: #009999 } /* Literal.Number.Bin */
|
---|
| 172 | table.code td .mf { color: #009999 } /* Literal.Number.Float */
|
---|
| 173 | table.code td .mh { color: #009999 } /* Literal.Number.Hex */
|
---|
| 174 | table.code td .mi { color: #009999 } /* Literal.Number.Integer */
|
---|
| 175 | table.code td .mo { color: #009999 } /* Literal.Number.Oct */
|
---|
| 176 | table.code td .sb { color: #bb8844 } /* Literal.String.Backtick */
|
---|
| 177 | table.code td .sc { color: #bb8844 } /* Literal.String.Char */
|
---|
| 178 | table.code td .sd { color: #bb8844 } /* Literal.String.Doc */
|
---|
| 179 | table.code td .s2 { color: #bb8844 } /* Literal.String.Double */
|
---|
| 180 | table.code td .se { color: #bb8844 } /* Literal.String.Escape */
|
---|
| 181 | table.code td .sh { color: #bb8844 } /* Literal.String.Heredoc */
|
---|
| 182 | table.code td .si { color: #bb8844 } /* Literal.String.Interpol */
|
---|
| 183 | table.code td .sx { color: #bb8844 } /* Literal.String.Other */
|
---|
| 184 | table.code td .sr { color: #808000 } /* Literal.String.Regex */
|
---|
| 185 | table.code td .s1 { color: #bb8844 } /* Literal.String.Single */
|
---|
| 186 | table.code td .ss { color: #bb8844 } /* Literal.String.Symbol */
|
---|
| 187 | table.code td .bp { color: #999999 } /* Name.Builtin.Pseudo */
|
---|
| 188 | table.code td .vc { color: #008080 } /* Name.Variable.Class */
|
---|
| 189 | table.code td .vg { color: #008080 } /* Name.Variable.Global */
|
---|
| 190 | table.code td .vi { color: #008080 } /* Name.Variable.Instance */
|
---|
| 191 | table.code td .il { color: #009999 } /* Literal.Number.Integer.Long */
|
---|