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