source: gs2-extensions/apache-jena/trunk/src/src/fuseki.css@ 28449

Last change on this file since 28449 was 28449, checked in by davidb, 11 years ago

GS flavoured CSS

  • Property svn:executable set to *
File size: 3.3 KB
Line 
1/**
2 Licensed to the Apache Software Foundation (ASF) under one or more
3 contributor license agreements. See the NOTICE file distributed with
4 this work for additional information regarding copyright ownership.
5 The ASF licenses this file to You under the Apache License, Version 2.0
6 (the "License"); you may not use this file except in compliance with
7 the License. You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16*/
17body {
18 font-family: Verdana, Arial, Helvetica, sans-serif ;
19 font-size: 10pt ;
20 line-height: 18pt ;
21 color: black;
22 background: white ;
23 margin: 0 ;
24}
25
26p { margin-left: 2% ; margin-right: 2% ; }
27
28.warning { color: #FF0000 ; }
29.error { color: #FF0000 ; font-weight: bold; }
30
31/* Makes lists a little tighter
32li { line-height: 14pt ; }
33*/
34
35textarea { background-color: #F0F0F0 ; }
36
37table {
38 font-family: Verdana, Arial, sans-serif ;
39 font-size: 10pt ;
40 border-collapse: collapse;
41 border: 1px solid black ;
42 cellspacing: 0 ;
43 cellpadding: 0
44}
45
46td {
47 border: 1px solid #808080 ;
48 empty-cells: show;
49 padding: 5 ;
50 spacing: 0 ;
51 vertical-align:top;
52 text-align:center
53}
54
55
56th {
57 border: 1px solid #808080 ;
58 empty-cells: show;
59 padding: 5 ;
60 vertical-align:top;
61 text-align:center
62}
63
64.box
65{ margin-left : 5% ;
66 margin-right : 5% ;
67 border: solid ;
68 border-width: thin;
69 background-color: #F0F0F0;
70 padding: 2mm;
71 page-break-inside: avoid ;
72}
73
74.noindent { margin-left: -5% ; margin-right: -5%; }
75.moreindent { margin-left: 5% ; margin-right: 5%; }
76
77
78/* Use this for the document title as displayed on the page at the top. */
79
80
81h1 {
82 text-align:center ;
83 font-size: 14pt;
84 line-height: 24pt ;
85 font-weight: bold;
86 /* color:#000; */
87 color: #FFF;
88 /* background:#CADFF4; */
89 background:#459e00;
90 padding: 0 ;
91 margin: 0 ;
92 padding-left: 1ex;
93 padding-right: 1ex;
94 text-align:center;
95}
96
97h2 {
98 font-size: 12pt;
99 line-height: 16pt ;
100 font-size: 110%;
101 font-weight: bold;
102 /* color: #003399; */
103 color: #FFF;
104 /* background:#CADFF4; */
105 background:#459e00;
106 margin-bottom:5px;
107 padding-left: 1ex;
108 padding-right: 1ex;
109}
110
111h3, h4, h5 {
112 font-size: 100%;
113 font-weight: bold;
114 margin-bottom:3px;
115}
116
117ul { list-style-type: disc }
118dt { font-weight: bold }
119
120/* Change background/foreground colour on hover */
121
122A:link { color: rgb(0, 0, 255) } /* for unvisited links */
123A:hover { color: rgb(255, 0, 0) } /* when mouse is over link */
124
125/* No extra space between paragraphs : inherits from body */
126pre {
127 font-family: monospace;
128 font-size: 10pt ;
129 line-height: 14pt ;
130 margin-top: 1 ;
131 margin-bottom: 1 ;
132 margin-left: 5ex ;
133 }
134
135/* Some general utility definitions */
136.centered {
137 text-align: center;
138}
139
140.caption {
141 text-align: center;
142 font-size: smaller;
143}
144
145code {
146 font-size: 10pt;
147}
148
149.footnote {
150 font-size: smaller;
151 border-top: thin solid gray;
152}
Note: See TracBrowser for help on using the repository browser.