• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * © 2016 and later: Unicode, Inc. and others.
3 * License & terms of use: http://www.unicode.org/copyright.html#License
4 *******************************************************************************
5 * Copyright (C) 2011, International Business Machines Corporation and         *
6 * others. All Rights Reserved.                                                *
7 *******************************************************************************
8 */
9
10/* Javadoc style sheet */
11
12/* Define colors, fonts and other style attributes here to override the defaults */
13
14/* Page background color */
15body { background-color: #FFFFFF; color:#000000 }
16
17/* Headings */
18h1 { font-size: 145% }
19
20/* Table colors */
21.TableHeadingColor     { background: #CCCCFF; color:#000000 } /* Dark mauve */
22.TableSubHeadingColor  { background: #EEEEFF; color:#000000 } /* Light mauve */
23.TableRowColor         { background: #FFFFFF; color:#000000 } /* White */
24
25/* Font used in left-hand frame lists */
26.FrameTitleFont   { font-size: 100%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
27.FrameHeadingFont { font-size:  90%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
28.FrameItemFont    { font-size:  90%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
29
30/* Navigation bar fonts and colors */
31.NavBarCell1    { background-color:#EEEEFF; color:#000000} /* Light mauve */
32.NavBarCell1Rev { background-color:#00008B; color:#FFFFFF} /* Dark Blue */
33.NavBarFont1    { font-family: Arial, Helvetica, sans-serif; color:#000000;color:#000000;}
34.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;color:#FFFFFF;}
35
36.NavBarCell2    { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF; color:#000000}
37.NavBarCell3    { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF; color:#000000}
38
39
40
41/* ICU modified JCite styles */
42pre.java /* container for citations */
43    {
44    border-style: solid;
45    border-width: 1px;
46    border-color: DarkGray;
47    margin: 1.5em 1.5em 1.5em 1.5em;
48    background-color: cornsilk;
49    }
50
51tt.java /* single cited line in JCite's -tt mode */
52    {
53    border-style: solid;
54    border-width: 1px;
55    border-color: DarkGray;
56    margin: 1.5em 1.5em 1.5em 1.5em;
57    background-color: cornsilk;
58    }
59
60span.j-blk /* block comment */
61{
62    color: DarkGreen;
63}
64
65span.j-cmt /* line comment */
66{
67    color: DarkGreen;
68}
69
70span.j-key /* keyword */
71{
72    /* font-weight:bold; */
73    color: Purple;
74    font-weight: bold;
75}
76
77span.j-str /* string constants */
78{
79    color: Blue;
80}
81
82span.j-chr /* char constants */
83{
84    color: Blue;
85}
86
87span.j-num /* number constants */
88{
89}
90
91span.j-sym /* symbols, punctuation */
92{
93}
94
95span.j-typ /* primitive types */
96{
97    color: Purple;
98    font-weight: bold;
99}
100
101span.j-jdoc /* javadoc */
102{
103    color: DarkSlateBlue;
104}
105
106span.j-jdoc-key /* javadoc keyword */
107{
108    color: MediumSlateBlue;
109    font-weight: bold;
110}
111
112span.j-jdoc-html /* javadoc html tag */
113{
114    color: SlateGray;
115}
116
117span.j-jdoc-link /* javadoc link */
118{
119    color: Blue;
120}
121
122span.j-undef /* undefined */
123{
124}
125
126span.j-hl /* highlight */
127{
128    text-decoration: none;
129    background-color: #FFFFB0;
130}
131