~ubuntu-branches/ubuntu/oneiric/libjboss-remoting-java/oneiric

« back to all changes in this revision

Viewing changes to docs/guide/html/css/html.css

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: package-import@ubuntu.com-20110909140103-hqokx61534tas9rg
Tags: 2.5.3.SP1-1
* Newer but not newest upstream release. Do not build samples.
* Change debian/watch to upstream's svn repo.
* Add patch to fix compile error caused by tomcat update.
  (Closes: #628303)
* Switch to source format 3.0.
* Switch to debhelper level 7.
* Remove useless Depends.
* Update Standards-Version: 3.9.2.
* Update README.source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 * {
2
 
     font-family: "Verdana", "Arial", "Helvetica";
3
 
     font-size: 14px;
4
 
 }
5
 
 
6
 
 A {
7
 
     color: #0000CC;
8
 
 }
9
 
 
10
 
 A:active {
11
 
     color: #0000CC;
12
 
 }
13
 
 
14
 
 A:visited {
15
 
     color: #0000CC;
16
 
 }
17
 
 
18
 
 P, OL, UL, LI, DL, DT, DD, BLOCKQUOTE {
19
 
     color: #000000;
20
 
 }
21
 
 
22
 
 TD, TH, SPAN {
23
 
     color: #000000;
24
 
 }
25
 
 
26
 
 BLOCKQUOTE {
27
 
     margin-right: 0px;
28
 
 }
29
 
 
30
 
 
31
 
 H1, H2, H3, H4, H5, H6    {
32
 
     color:       #003399;
33
 
     font-weight: 500;
34
 
     margin-top:  10px;
35
 
     padding-top: 5px;
36
 
 }
37
 
 
38
 
 H1 { font-size: 150%; }
39
 
 H2 { font-size: 140%; }
40
 
 H3 { font-size: 110%; font-weight: bold; }
41
 
 H4 { font-size: 110%; font-weight: bold;}
42
 
 H5 { font-size: 100%; font-style: italic; }
43
 
 H6 { font-size: 100%; font-style: italic; }
44
 
 
45
 
 TABLE  {
46
 
     border-collapse: collapse;
47
 
     border-spacing:  0;
48
 
     /*border:          1px dashed #CCCCCC;*/
49
 
     empty-cells:     hide;
50
 
     width: 100%
51
 
 }
52
 
 
53
 
 TD  {
54
 
     padding: 4pt;
55
 
 }
56
 
 
57
 
 
58
 
 TT {
59
 
     font-size:  90%;
60
 
     font-style: monospace;
61
 
     color:      #111111;
62
 
 }
63
 
 
64
 
 PRE {
65
 
     font-size:        100%;
66
 
     padding:          5px;
67
 
     border-style:     solid;
68
 
     border-width:     1px;
69
 
     border-color:     #CCCCCC;
70
 
     background-color: #F4F4F4;
71
 
 }
72
 
 
73
 
 HR  {
74
 
     width:            100%;
75
 
     height:           1px;
76
 
     background-color: #CCCCCC;
77
 
     border-width:     0px;
78
 
     padding:          0px;
79
 
     color:            #CCCCCC;
80
 
 }
81
 
 
82
 
 .variablelist {
83
 
     padding-top:    10;
84
 
     padding-bottom: 10;
85
 
     margin:         0;
86
 
 }
87
 
 
88
 
 .itemizedlist {
89
 
     padding-top:    0;
90
 
     padding-bottom: 0;
91
 
     margin:         0;
92
 
 list-style-type: disc;
93
 
 
94
 
 }
95
 
 
96
 
 .orderedlist{
97
 
     padding-top:    0;
98
 
     padding-bottom: 0;
99
 
     margin:         0;
100
 
 }
101
 
 
102
 
 .term {
103
 
     font-weight: bold;
104
 
 }
105
 
 
106
 
 .note
107
 
 {
108
 
    padding-bottom: 5px;
109
 
    padding-left: 5px;
110
 
    padding-right: 5px;
111
 
    background-color: #FFFFCC;
112
 
 }
113
 
 
114
 
 .warning
115
 
 {
116
 
    padding-bottom: 5px;
117
 
    padding-left: 5px;
118
 
    padding-right: 5px;
119
 
    background-color: #FBDADA;
120
 
 }
121
 
 
122