1 |
wakaba |
1.2 |
/* XPointer scheme definitions */ |
2 |
|
|
|
3 |
wakaba |
1.1 |
dl.xpointer-scheme-definition { |
4 |
|
|
display: block; |
5 |
|
|
border-style: none; |
6 |
|
|
background-color: rgb(221, 238, 255); |
7 |
|
|
color: black; |
8 |
|
|
} |
9 |
|
|
|
10 |
|
|
.xpointer-scheme-definition dt { |
11 |
|
|
display: block; |
12 |
|
|
float: left; |
13 |
|
|
clear: both; |
14 |
|
|
margin: 0; |
15 |
|
|
border-style: none; |
16 |
|
|
padding: 0.5em 0.7em; |
17 |
|
|
width: 10em; |
18 |
|
|
list-style: none; |
19 |
|
|
font-weight: normal; |
20 |
|
|
} |
21 |
|
|
.xpointer-scheme-definition dt:after { |
22 |
|
|
content: " : "; |
23 |
|
|
display: inline; |
24 |
|
|
} |
25 |
|
|
|
26 |
|
|
.xpointer-scheme-definition dd { |
27 |
|
|
display: block; |
28 |
|
|
margin: 0 0 0 2em; |
29 |
|
|
border-style: none; |
30 |
|
|
padding: 0.5em 0.7em; |
31 |
|
|
min-height: 4em; |
32 |
|
|
list-style: none; |
33 |
|
|
font-weight: normal; |
34 |
|
|
} |
35 |
|
|
|
36 |
|
|
.xpointer-scheme-definition dl + * { |
37 |
|
|
clear: both; |
38 |
|
|
} |
39 |
|
|
|
40 |
wakaba |
1.2 |
/* Links to XPointer specifications */ |
41 |
|
|
|
42 |
|
|
a[href^="http://www.w3.org/TR/2003/REC-xptr-framework-20030325/"]:after, |
43 |
|
|
a[href^="http://www.w3.org/TR/2004/NOTE-DOM-Level-3-XPath-20040226/"]:after { |
44 |
|
|
content: "xp"; |
45 |
|
|
vertical-align: super; |
46 |
|
|
color: gray; |
47 |
|
|
background-color: transparent; |
48 |
|
|
font-size: x-small; |
49 |
|
|
line-height: 1.0; |
50 |
|
|
font-family: "Times New Roman", serif; |
51 |
|
|
text-decoration: none; |
52 |
|
|
border-style: none; |
53 |
|
|
} |
54 |
|
|
|
55 |
|
|
a[href^="http://www.w3.org/TR/2004/NOTE-DOM-Level-3-XPath-20040226/"]:after { |
56 |
|
|
content: "dom"; |
57 |
|
|
} |
58 |
|
|
|
59 |
|
|
/* Revision: $Date: 2005/03/14 00:40:15 $ */ |
60 |
wakaba |
1.1 |
|
61 |
|
|
/* ***** BEGIN LICENSE BLOCK ***** |
62 |
|
|
* Copyright 2005 Wakaba <w@suika.fam.cx>. All rights reserved. |
63 |
|
|
* |
64 |
|
|
* This program is free software; you can redistribute it and/or |
65 |
|
|
* modify it under the same terms as Perl itself. |
66 |
|
|
* |
67 |
|
|
* Alternatively, the contents of this file may be used |
68 |
|
|
* under the following terms (the "MPL/GPL/LGPL"), |
69 |
|
|
* in which case the provisions of the MPL/GPL/LGPL are applicable instead |
70 |
|
|
* of those above. If you wish to allow use of your version of this file only |
71 |
|
|
* under the terms of the MPL/GPL/LGPL, and not to allow others to |
72 |
|
|
* use your version of this file under the terms of the Perl, indicate your |
73 |
|
|
* decision by deleting the provisions above and replace them with the notice |
74 |
|
|
* and other provisions required by the MPL/GPL/LGPL. If you do not delete |
75 |
|
|
* the provisions above, a recipient may use your version of this file under |
76 |
|
|
* the terms of any one of the Perl or the MPL/GPL/LGPL. |
77 |
|
|
* |
78 |
|
|
* "MPL/GPL/LGPL": |
79 |
|
|
* |
80 |
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
81 |
|
|
* |
82 |
|
|
* The contents of this file are subject to the Mozilla Public License Version |
83 |
|
|
* 1.1 (the "License"); you may not use this file except in compliance with |
84 |
|
|
* the License. You may obtain a copy of the License at |
85 |
|
|
* <http://www.mozilla.org/MPL/> |
86 |
|
|
* |
87 |
|
|
* Software distributed under the License is distributed on an "AS IS" basis, |
88 |
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License |
89 |
|
|
* for the specific language governing rights and limitations under the |
90 |
|
|
* License. |
91 |
|
|
* |
92 |
|
|
* The Original Code is xpointer-js code. |
93 |
|
|
* |
94 |
|
|
* The Initial Developer of the Original Code is Wakaba. |
95 |
|
|
* Portions created by the Initial Developer are Copyright (C) 2005 |
96 |
|
|
* the Initial Developer. All Rights Reserved. |
97 |
|
|
* |
98 |
|
|
* Contributor(s): |
99 |
|
|
* Wakaba <w@suika.fam.cx> |
100 |
|
|
* |
101 |
|
|
* Alternatively, the contents of this file may be used under the terms of |
102 |
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or |
103 |
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), |
104 |
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead |
105 |
|
|
* of those above. If you wish to allow use of your version of this file only |
106 |
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to |
107 |
|
|
* use your version of this file under the terms of the MPL, indicate your |
108 |
|
|
* decision by deleting the provisions above and replace them with the notice |
109 |
|
|
* and other provisions required by the LGPL or the GPL. If you do not delete |
110 |
|
|
* the provisions above, a recipient may use your version of this file under |
111 |
|
|
* the terms of any one of the MPL, the GPL or the LGPL. |
112 |
|
|
* |
113 |
|
|
* ***** END LICENSE BLOCK ***** */ |