drnic-celerity 0.0.6.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (230) hide show
  1. data/History.txt +75 -0
  2. data/License.txt +621 -0
  3. data/Manifest.txt +229 -0
  4. data/README.rdoc +78 -0
  5. data/Rakefile +25 -0
  6. data/benchmark/bm_2000_spans.rb +48 -0
  7. data/benchmark/bm_digg.rb +26 -0
  8. data/benchmark/bm_google_images.rb +36 -0
  9. data/benchmark/bm_input_locator.rb +69 -0
  10. data/benchmark/bm_text_input.rb +19 -0
  11. data/benchmark/loader.rb +14 -0
  12. data/celerity.gemspec +40 -0
  13. data/lib/celerity.rb +77 -0
  14. data/lib/celerity/browser.rb +888 -0
  15. data/lib/celerity/clickable_element.rb +73 -0
  16. data/lib/celerity/collections.rb +156 -0
  17. data/lib/celerity/container.rb +779 -0
  18. data/lib/celerity/default_viewer.rb +14 -0
  19. data/lib/celerity/disabled_element.rb +40 -0
  20. data/lib/celerity/element.rb +314 -0
  21. data/lib/celerity/element_collection.rb +107 -0
  22. data/lib/celerity/element_locator.rb +177 -0
  23. data/lib/celerity/elements/button.rb +45 -0
  24. data/lib/celerity/elements/file_field.rb +29 -0
  25. data/lib/celerity/elements/form.rb +23 -0
  26. data/lib/celerity/elements/frame.rb +77 -0
  27. data/lib/celerity/elements/image.rb +76 -0
  28. data/lib/celerity/elements/label.rb +11 -0
  29. data/lib/celerity/elements/link.rb +30 -0
  30. data/lib/celerity/elements/meta.rb +7 -0
  31. data/lib/celerity/elements/non_control_elements.rb +106 -0
  32. data/lib/celerity/elements/option.rb +32 -0
  33. data/lib/celerity/elements/radio_check.rb +115 -0
  34. data/lib/celerity/elements/select_list.rb +142 -0
  35. data/lib/celerity/elements/table.rb +144 -0
  36. data/lib/celerity/elements/table_cell.rb +29 -0
  37. data/lib/celerity/elements/table_elements.rb +42 -0
  38. data/lib/celerity/elements/table_row.rb +48 -0
  39. data/lib/celerity/elements/text_field.rb +169 -0
  40. data/lib/celerity/exception.rb +83 -0
  41. data/lib/celerity/htmlunit.rb +65 -0
  42. data/lib/celerity/htmlunit/commons-codec-1.4.jar +0 -0
  43. data/lib/celerity/htmlunit/commons-collections-3.2.1.jar +0 -0
  44. data/lib/celerity/htmlunit/commons-httpclient-3.1.jar +0 -0
  45. data/lib/celerity/htmlunit/commons-io-1.4.jar +0 -0
  46. data/lib/celerity/htmlunit/commons-lang-2.4.jar +0 -0
  47. data/lib/celerity/htmlunit/commons-logging-1.1.1.jar +0 -0
  48. data/lib/celerity/htmlunit/cssparser-0.9.5.jar +0 -0
  49. data/lib/celerity/htmlunit/htmlunit-2.6-SNAPSHOT.jar +0 -0
  50. data/lib/celerity/htmlunit/htmlunit-core-js-2.6-SNAPSHOT.jar +0 -0
  51. data/lib/celerity/htmlunit/nekohtml-1.9.13-20090820.100833-15.jar +0 -0
  52. data/lib/celerity/htmlunit/sac-1.3.jar +0 -0
  53. data/lib/celerity/htmlunit/serializer-2.7.1.jar +0 -0
  54. data/lib/celerity/htmlunit/xalan-2.7.1.jar +0 -0
  55. data/lib/celerity/htmlunit/xercesImpl-2.9.1.jar +0 -0
  56. data/lib/celerity/htmlunit/xml-apis-1.3.04.jar +0 -0
  57. data/lib/celerity/identifier.rb +11 -0
  58. data/lib/celerity/ignoring_web_connection.rb +15 -0
  59. data/lib/celerity/input_element.rb +25 -0
  60. data/lib/celerity/listener.rb +141 -0
  61. data/lib/celerity/resources/no_viewer.png +0 -0
  62. data/lib/celerity/short_inspect.rb +20 -0
  63. data/lib/celerity/util.rb +91 -0
  64. data/lib/celerity/viewer_connection.rb +89 -0
  65. data/lib/celerity/watir_compatibility.rb +83 -0
  66. data/lib/celerity/xpath_support.rb +48 -0
  67. data/spec/browser_authentication_spec.rb +16 -0
  68. data/spec/browser_spec.rb +300 -0
  69. data/spec/clickable_element_spec.rb +39 -0
  70. data/spec/default_viewer_spec.rb +23 -0
  71. data/spec/element_spec.rb +51 -0
  72. data/spec/filefield_spec.rb +18 -0
  73. data/spec/htmlunit_spec.rb +56 -0
  74. data/spec/index_offset_spec.rb +24 -0
  75. data/spec/listener_spec.rb +142 -0
  76. data/spec/spec_helper.rb +8 -0
  77. data/tasks/benchmark.rake +4 -0
  78. data/tasks/deployment.rake +43 -0
  79. data/tasks/environment.rake +7 -0
  80. data/tasks/fix.rake +25 -0
  81. data/tasks/jar.rake +57 -0
  82. data/tasks/rdoc.rake +4 -0
  83. data/tasks/rspec.rake +43 -0
  84. data/tasks/simple_ci.rake +94 -0
  85. data/tasks/snapshot.rake +22 -0
  86. data/tasks/website.rake +17 -0
  87. data/tasks/yard.rake +9 -0
  88. data/website/benchmarks.html +237 -0
  89. data/website/css/color.css +153 -0
  90. data/website/css/hacks.css +3 -0
  91. data/website/css/layout.css +179 -0
  92. data/website/css/screen.css +5 -0
  93. data/website/css/textmate.css +226 -0
  94. data/website/css/typography.css +72 -0
  95. data/website/gfx/body_bg.gif +0 -0
  96. data/website/gfx/button_bg.jpg +0 -0
  97. data/website/gfx/header_bg.jpg +0 -0
  98. data/website/gfx/header_left.jpg +0 -0
  99. data/website/gfx/header_right.jpg +0 -0
  100. data/website/gfx/nav_bg.jpg +0 -0
  101. data/website/index.html +133 -0
  102. data/website/yard/Celerity.html +50 -0
  103. data/website/yard/Celerity/Area.html +212 -0
  104. data/website/yard/Celerity/Areas.html +103 -0
  105. data/website/yard/Celerity/Browser.html +5594 -0
  106. data/website/yard/Celerity/Button.html +312 -0
  107. data/website/yard/Celerity/Buttons.html +103 -0
  108. data/website/yard/Celerity/CheckBox.html +347 -0
  109. data/website/yard/Celerity/CheckBoxes.html +103 -0
  110. data/website/yard/Celerity/ClickableElement.html +448 -0
  111. data/website/yard/Celerity/Container.html +7676 -0
  112. data/website/yard/Celerity/Dd.html +198 -0
  113. data/website/yard/Celerity/Dds.html +103 -0
  114. data/website/yard/Celerity/DefaultViewer.html +101 -0
  115. data/website/yard/Celerity/DisabledElement.html +252 -0
  116. data/website/yard/Celerity/Div.html +198 -0
  117. data/website/yard/Celerity/Divs.html +103 -0
  118. data/website/yard/Celerity/Dl.html +198 -0
  119. data/website/yard/Celerity/Dls.html +103 -0
  120. data/website/yard/Celerity/Dt.html +198 -0
  121. data/website/yard/Celerity/Dts.html +103 -0
  122. data/website/yard/Celerity/Element.html +1703 -0
  123. data/website/yard/Celerity/ElementCollection.html +725 -0
  124. data/website/yard/Celerity/ElementLocator.html +589 -0
  125. data/website/yard/Celerity/Em.html +198 -0
  126. data/website/yard/Celerity/Ems.html +103 -0
  127. data/website/yard/Celerity/Exception.html +23 -0
  128. data/website/yard/Celerity/Exception/CelerityException.html +32 -0
  129. data/website/yard/Celerity/Exception/MissingWayOfFindingObjectException.html +32 -0
  130. data/website/yard/Celerity/Exception/NavigationException.html +33 -0
  131. data/website/yard/Celerity/Exception/NoValueFoundException.html +33 -0
  132. data/website/yard/Celerity/Exception/ObjectDisabledException.html +33 -0
  133. data/website/yard/Celerity/Exception/ObjectReadOnlyException.html +33 -0
  134. data/website/yard/Celerity/Exception/UnexpectedPageException.html +33 -0
  135. data/website/yard/Celerity/Exception/UnknownCellException.html +33 -0
  136. data/website/yard/Celerity/Exception/UnknownFormException.html +33 -0
  137. data/website/yard/Celerity/Exception/UnknownFrameException.html +33 -0
  138. data/website/yard/Celerity/Exception/UnknownObjectException.html +33 -0
  139. data/website/yard/Celerity/Exception/UnknownRowException.html +33 -0
  140. data/website/yard/Celerity/FileField.html +289 -0
  141. data/website/yard/Celerity/FileFields.html +103 -0
  142. data/website/yard/Celerity/Form.html +284 -0
  143. data/website/yard/Celerity/Forms.html +103 -0
  144. data/website/yard/Celerity/Frame.html +527 -0
  145. data/website/yard/Celerity/Frames.html +103 -0
  146. data/website/yard/Celerity/H1.html +198 -0
  147. data/website/yard/Celerity/H1s.html +103 -0
  148. data/website/yard/Celerity/H2.html +198 -0
  149. data/website/yard/Celerity/H2s.html +103 -0
  150. data/website/yard/Celerity/H3.html +198 -0
  151. data/website/yard/Celerity/H3s.html +103 -0
  152. data/website/yard/Celerity/H4.html +198 -0
  153. data/website/yard/Celerity/H4s.html +103 -0
  154. data/website/yard/Celerity/H5.html +198 -0
  155. data/website/yard/Celerity/H5s.html +103 -0
  156. data/website/yard/Celerity/H6.html +198 -0
  157. data/website/yard/Celerity/H6s.html +103 -0
  158. data/website/yard/Celerity/Hidden.html +285 -0
  159. data/website/yard/Celerity/Hiddens.html +103 -0
  160. data/website/yard/Celerity/Image.html +645 -0
  161. data/website/yard/Celerity/Images.html +103 -0
  162. data/website/yard/Celerity/InputElement.html +271 -0
  163. data/website/yard/Celerity/Label.html +210 -0
  164. data/website/yard/Celerity/Labels.html +103 -0
  165. data/website/yard/Celerity/Li.html +198 -0
  166. data/website/yard/Celerity/Link.html +295 -0
  167. data/website/yard/Celerity/Links.html +103 -0
  168. data/website/yard/Celerity/Lis.html +103 -0
  169. data/website/yard/Celerity/Listener.html +821 -0
  170. data/website/yard/Celerity/Map.html +198 -0
  171. data/website/yard/Celerity/Maps.html +103 -0
  172. data/website/yard/Celerity/Meta.html +196 -0
  173. data/website/yard/Celerity/Metas.html +103 -0
  174. data/website/yard/Celerity/MethodGenerator.html +195 -0
  175. data/website/yard/Celerity/NonControlElement.html +212 -0
  176. data/website/yard/Celerity/Ol.html +198 -0
  177. data/website/yard/Celerity/Ols.html +103 -0
  178. data/website/yard/Celerity/Option.html +348 -0
  179. data/website/yard/Celerity/Options.html +103 -0
  180. data/website/yard/Celerity/P.html +198 -0
  181. data/website/yard/Celerity/Pre.html +198 -0
  182. data/website/yard/Celerity/Pres.html +103 -0
  183. data/website/yard/Celerity/Ps.html +103 -0
  184. data/website/yard/Celerity/Radio.html +339 -0
  185. data/website/yard/Celerity/RadioCheckCommon.html +453 -0
  186. data/website/yard/Celerity/Radios.html +103 -0
  187. data/website/yard/Celerity/SelectList.html +1122 -0
  188. data/website/yard/Celerity/SelectLists.html +103 -0
  189. data/website/yard/Celerity/ShortInspect.html +108 -0
  190. data/website/yard/Celerity/Span.html +198 -0
  191. data/website/yard/Celerity/Spans.html +103 -0
  192. data/website/yard/Celerity/Strong.html +198 -0
  193. data/website/yard/Celerity/Strongs.html +103 -0
  194. data/website/yard/Celerity/Table.html +1287 -0
  195. data/website/yard/Celerity/TableBodies.html +103 -0
  196. data/website/yard/Celerity/TableBody.html +203 -0
  197. data/website/yard/Celerity/TableCell.html +279 -0
  198. data/website/yard/Celerity/TableCells.html +103 -0
  199. data/website/yard/Celerity/TableElement.html +437 -0
  200. data/website/yard/Celerity/TableFooter.html +203 -0
  201. data/website/yard/Celerity/TableFooters.html +103 -0
  202. data/website/yard/Celerity/TableHeader.html +203 -0
  203. data/website/yard/Celerity/TableHeaders.html +103 -0
  204. data/website/yard/Celerity/TableRow.html +478 -0
  205. data/website/yard/Celerity/TableRows.html +103 -0
  206. data/website/yard/Celerity/Tables.html +103 -0
  207. data/website/yard/Celerity/TextField.html +938 -0
  208. data/website/yard/Celerity/TextFields.html +103 -0
  209. data/website/yard/Celerity/Th.html +208 -0
  210. data/website/yard/Celerity/Ul.html +209 -0
  211. data/website/yard/Celerity/Uls.html +103 -0
  212. data/website/yard/Celerity/Util.html +264 -0
  213. data/website/yard/Celerity/VERSION.html +44 -0
  214. data/website/yard/HtmlUnit.html +23 -0
  215. data/website/yard/HtmlUnit/Html.html +23 -0
  216. data/website/yard/HtmlUnit/Util.html +23 -0
  217. data/website/yard/Java/ComGargoylesoftwareHtmlunitHtml/HtmlPage.html +90 -0
  218. data/website/yard/Java/JavaLang/Iterable.html +103 -0
  219. data/website/yard/Java/OrgW3cDom/NamedNodeMap.html +97 -0
  220. data/website/yard/README.txt.html +116 -0
  221. data/website/yard/String.html +103 -0
  222. data/website/yard/all-files.html +22 -0
  223. data/website/yard/all-methods.html +3276 -0
  224. data/website/yard/all-namespaces.html +258 -0
  225. data/website/yard/app.js +18 -0
  226. data/website/yard/index.html +19 -0
  227. data/website/yard/jquery.js +11 -0
  228. data/website/yard/style.css +68 -0
  229. data/website/yard/syntax_highlight.css +21 -0
  230. metadata +307 -0
@@ -0,0 +1,3 @@
1
+ .clearer {
2
+ clear: both;
3
+ }
@@ -0,0 +1,179 @@
1
+ * {
2
+ margin: 0;
3
+ padding: 0;
4
+ }
5
+
6
+ a {
7
+
8
+ }
9
+
10
+ a:hover {
11
+
12
+ }
13
+
14
+ body {
15
+ padding: 2em;
16
+ }
17
+
18
+ /*
19
+ .left {
20
+ float: left;
21
+ }
22
+
23
+ .right {
24
+ float: right;
25
+ }
26
+ */
27
+
28
+ table th, table td {
29
+ padding: 0.2em 0.8em;
30
+ }
31
+
32
+ #container {
33
+ margin: 0 auto;
34
+ width: 100%;
35
+ }
36
+
37
+ #header {
38
+ width: 100%;
39
+ height: 193px;
40
+ position: relative;
41
+ overflow: hidden;
42
+ }
43
+
44
+ #header #leftSlice {
45
+ position: absolute;
46
+ top: 0;
47
+ left: 0;
48
+ width: 269px;
49
+ height: 193px;
50
+ }
51
+
52
+ #header #rightSlice {
53
+ position: absolute;
54
+ top: 0;
55
+ right: 0;
56
+ width: 492px;
57
+ height: 193px;
58
+ }
59
+
60
+ #header h1 {
61
+ position: absolute;
62
+ left: 170px;
63
+ top: 20px;
64
+ }
65
+
66
+ #header #tagline {
67
+ position: absolute;
68
+ left: 255px;
69
+ top: 60px;
70
+ }
71
+
72
+ #nav {
73
+ height: 121px;
74
+ overflow: auto;
75
+ }
76
+
77
+ #nav ul {
78
+ height: 90px;
79
+ overflow: auto;
80
+ text-align: center;
81
+ }
82
+
83
+ #nav ul li {
84
+ display: inline;
85
+ white-space: nowrap;
86
+ }
87
+
88
+ #nav ul li a {
89
+ display: inline;
90
+ margin: 0 0.6em;
91
+ height: 40px;
92
+ line-height: 2.05em;
93
+ white-space: nowrap;
94
+ padding-top: 6px;
95
+ }
96
+
97
+ #nav ul li a:hover {
98
+ padding-top: 3px;
99
+ }
100
+
101
+ #nav ul li a.active {
102
+ padding-top: 0;
103
+ }
104
+
105
+ #nav ul li a:hover.active {
106
+ padding-top: 0;
107
+ }
108
+
109
+ #content {
110
+ padding: 0 1em 1em 1em;
111
+ }
112
+
113
+ #content ul {
114
+ list-style-position: inside;
115
+ }
116
+
117
+ #content ul li {
118
+ margin: 0.2em;
119
+ }
120
+
121
+ #content ul li ul li {
122
+ margin-left: 1.5em;
123
+ }
124
+
125
+ #footer {
126
+ margin-top: 1.25em;
127
+ padding: 1em;
128
+ }
129
+
130
+ #footer .w3cbutton {
131
+ line-height: 2em;
132
+ }
133
+
134
+ #footer .w3cbutton span.w3c {
135
+ padding: 0 0.4em;
136
+ }
137
+
138
+ #footer .w3cbutton span.spec {
139
+ padding: 0 0.2em;
140
+ }
141
+
142
+
143
+ ul.projectlist {
144
+ width: 100%;
145
+ list-style: none;
146
+ }
147
+
148
+ .project {
149
+ float: left;
150
+ width: 100%;
151
+ display: block;
152
+ padding-bottom: 1em;
153
+ }
154
+
155
+ .project img {
156
+ float: left;
157
+ }
158
+
159
+ .project a.img {
160
+ padding: 0.5em;
161
+ }
162
+
163
+
164
+ .project.left a.img {
165
+ float: left;
166
+ margin: 0 1em 0 0;
167
+ }
168
+
169
+ .project.right a.img {
170
+ float: right;
171
+ margin: 0 0 0 1em;
172
+ }
173
+
174
+ #download {
175
+ display: block;
176
+ padding: 0.2em 0.4em;
177
+ float: right;
178
+ margin: 0 0 1em 1em;
179
+ }
@@ -0,0 +1,5 @@
1
+ @import url(layout.css);
2
+ @import url(color.css);
3
+ @import url(typography.css);
4
+ @import url(hacks.css);
5
+ @import url(textmate.css);
@@ -0,0 +1,226 @@
1
+ /* Stylesheet generated from TextMate theme
2
+ *
3
+ * Mac Classic
4
+ *
5
+ *
6
+ */
7
+
8
+ /* Mostly to improve view within the TextMate HTML viewer */
9
+ body {
10
+ margin: 0;
11
+ padding: 0;
12
+ }
13
+
14
+ pre.textmate-source {
15
+ margin: 0;
16
+ padding: 0 0 0 2px;
17
+ font-family: "DejaVu Sans Mono", monospace;
18
+ font-size: 14px;
19
+ line-height: 1.3em;
20
+ word-wrap: break-word;
21
+ white-space: pre;
22
+ white-space: pre-wrap;
23
+ white-space: -moz-pre-wrap;
24
+ white-space: -o-pre-wrap;
25
+ }
26
+
27
+ pre.textmate-source.mac_classic {
28
+ color: #000000;
29
+ background: rgb(249,249,247)
30
+ }
31
+
32
+ pre.textmate-source .linenum {
33
+ width: 75px;
34
+ padding: 0.1em 1em 0.2em 0;
35
+ color: #888;
36
+ background-color: #eee;
37
+ }
38
+ pre.textmate-source.mac_classic span {
39
+ padding-top: 0.2em;
40
+ padding-bottom: 0.1em;
41
+ }
42
+ pre.textmate-source.mac_classic ::selection {
43
+ background-color: rgba(77, 151, 255, 0.33);
44
+ }
45
+ /* Comment */
46
+ pre.textmate-source.mac_classic .comment {
47
+ color: #0066FF;
48
+ font-style: italic;
49
+ }
50
+
51
+ /* Keyword */
52
+ pre.textmate-source.mac_classic .keyword, pre.textmate-source.mac_classic .storage {
53
+ color: #0000FF;
54
+ font-weight: bold;
55
+ }
56
+
57
+ /* Number */
58
+ pre.textmate-source.mac_classic .constant_numeric {
59
+ color: #0000CD;
60
+ }
61
+
62
+ /* User-defined constant */
63
+ pre.textmate-source.mac_classic .constant {
64
+ color: #C5060B;
65
+ font-weight: bold;
66
+ }
67
+
68
+ /* Built-in constant */
69
+ pre.textmate-source.mac_classic .constant_language {
70
+ color: #585CF6;
71
+ font-weight: bold;
72
+ }
73
+
74
+ /* Variable */
75
+ pre.textmate-source.mac_classic .variable_language, pre.textmate-source.mac_classic .variable_other {
76
+ color: #318495;
77
+ }
78
+
79
+ /* String */
80
+ pre.textmate-source.mac_classic .string {
81
+ color: #036A07;
82
+ }
83
+
84
+ /* String interpolation */
85
+ pre.textmate-source.mac_classic .constant_character_escape, pre.textmate-source.mac_classic .string .source {
86
+ color: #26B31A;
87
+ }
88
+
89
+ /* Preprocessor line */
90
+ pre.textmate-source.mac_classic .meta_preprocessor {
91
+ color: #1A921C;
92
+ }
93
+
94
+ /* Preprocessor directive */
95
+ pre.textmate-source.mac_classic .keyword_control_import {
96
+ color: #0C450D;
97
+ font-weight: bold;
98
+ }
99
+
100
+ /* Function name */
101
+ pre.textmate-source.mac_classic .entity_name_function, pre.textmate-source.mac_classic .support_function_any-method {
102
+ color: #0000A2;
103
+ font-weight: bold;
104
+ }
105
+
106
+ /* Type name */
107
+ pre.textmate-source.mac_classic .entity_name_type {
108
+ text-decoration: underline;
109
+ }
110
+
111
+ /* Inherited class name */
112
+ pre.textmate-source.mac_classic .entity_other_inherited-class {
113
+ font-style: italic;
114
+ }
115
+
116
+ /* Function parameter */
117
+ pre.textmate-source.mac_classic .variable_parameter {
118
+ font-style: italic;
119
+ }
120
+
121
+ /* Function argument and result types */
122
+ pre.textmate-source.mac_classic .storage_type_method {
123
+ color: #70727E;
124
+ }
125
+
126
+ /* Section */
127
+ pre.textmate-source.mac_classic .meta_section .entity_name_section, pre.textmate-source.mac_classic .declaration_section .entity_name_section {
128
+ font-style: italic;
129
+ }
130
+
131
+ /* Library function */
132
+ pre.textmate-source.mac_classic .support_function {
133
+ color: #3C4C72;
134
+ font-weight: bold;
135
+ }
136
+
137
+ /* Library object */
138
+ pre.textmate-source.mac_classic .support_class, pre.textmate-source.mac_classic .support_type {
139
+ color: #6D79DE;
140
+ font-weight: bold;
141
+ }
142
+
143
+ /* Library constant */
144
+ pre.textmate-source.mac_classic .support_constant {
145
+ color: #06960E;
146
+ font-weight: bold;
147
+ }
148
+
149
+ /* Library variable */
150
+ pre.textmate-source.mac_classic .support_variable {
151
+ color: #21439C;
152
+ font-weight: bold;
153
+ }
154
+
155
+ /* JS: Operator */
156
+ pre.textmate-source.mac_classic .keyword_operator_js {
157
+ color: #687687;
158
+ }
159
+
160
+ /* Invalid */
161
+ pre.textmate-source.mac_classic .invalid {
162
+ color: #FFFFFF;
163
+ background-color: #990000;
164
+ }
165
+
166
+ /* Invalid trailing whitespace */
167
+ pre.textmate-source.mac_classic .invalid_deprecated_trailing-whitespace {
168
+ background-color: #FFD0D0;
169
+ }
170
+
171
+ /* Embedded source */
172
+ pre.textmate-source.mac_classic .text .source, pre.textmate-source.mac_classic .string_unquoted {
173
+ background-color: rgba(0, 0, 0, 0.05);
174
+ }
175
+
176
+ /* Embedded embedded source */
177
+ pre.textmate-source.mac_classic .text .source .string_unquoted, pre.textmate-source.mac_classic .text .source .text .source {
178
+ background-color: rgba(0, 0, 0, 0.06);
179
+ }
180
+
181
+ /* Markup XML declaration */
182
+ pre.textmate-source.mac_classic .meta_tag_preprocessor_xml {
183
+ color: #68685B;
184
+ }
185
+
186
+ /* Markup DOCTYPE */
187
+ pre.textmate-source.mac_classic .meta_tag_sgml_doctype, pre.textmate-source.mac_classic .meta_tag_sgml_doctype .entity, pre.textmate-source.mac_classic .meta_tag_sgml_doctype .string, pre.textmate-source.mac_classic .meta_tag_preprocessor_xml, pre.textmate-source.mac_classic .meta_tag_preprocessor_xml .entity, pre.textmate-source.mac_classic .meta_tag_preprocessor_xml .string {
188
+ color: #888888;
189
+ }
190
+
191
+ /* Markup DTD */
192
+ pre.textmate-source.mac_classic .string_quoted_docinfo_doctype_DTD {
193
+ font-style: italic;
194
+ }
195
+
196
+ /* Markup tag */
197
+ pre.textmate-source.mac_classic .meta_tag, pre.textmate-source.mac_classic .declaration_tag {
198
+ color: #1C02FF;
199
+ }
200
+
201
+ /* Markup name of tag */
202
+ pre.textmate-source.mac_classic .entity_name_tag {
203
+ font-weight: bold;
204
+ }
205
+
206
+ /* Markup tag attribute */
207
+ pre.textmate-source.mac_classic .entity_other_attribute-name {
208
+ font-style: italic;
209
+ }
210
+
211
+ /* Markup: Heading */
212
+ pre.textmate-source.mac_classic .markup_heading {
213
+ color: #0C07FF;
214
+ font-weight: bold;
215
+ }
216
+
217
+ /* Markup: Quote */
218
+ pre.textmate-source.mac_classic .markup_quote {
219
+ color: #000000;
220
+ font-style: italic;
221
+ }
222
+
223
+ /* Markup: List */
224
+ pre.textmate-source.mac_classic .markup_list {
225
+ color: #B90690;
226
+ }
@@ -0,0 +1,72 @@
1
+ body {
2
+ font-family: "verdana";
3
+ }
4
+
5
+ p {
6
+ margin-bottom: 1.5em;
7
+ line-height: 1.4em;
8
+ }
9
+
10
+ q {
11
+ font-style: italic;
12
+ }
13
+
14
+ #content ul, #content table, #content fieldset {
15
+ margin-bottom: 1.5em;
16
+ }
17
+
18
+ #content ul ul {
19
+ margin-bottom: 0;
20
+ }
21
+
22
+ ul {
23
+ line-height: 1.4em;
24
+ }
25
+
26
+ /* ---( headers )-------------------------- */
27
+
28
+ h1 {
29
+ font-size: 1.8em;
30
+ }
31
+
32
+ h2 {
33
+ font-size: 1.4em;
34
+ }
35
+
36
+ h3 {
37
+ font-size: 1.1em;
38
+ }
39
+
40
+ h4 {
41
+ font-size: 0.92em;
42
+ }
43
+
44
+ h5 {
45
+ font-size: 0.82em;
46
+ }
47
+
48
+ #header {
49
+ font-family: "trebuchet ms", serif;
50
+ }
51
+
52
+ #header h1 {
53
+ font-size: 2em;
54
+ }
55
+
56
+ #header #tagline {
57
+ font-size: 0.7em;
58
+ }
59
+
60
+ #nav {
61
+ font-size: 0.9em;
62
+ font-weight: bold;
63
+ }
64
+
65
+ #footer {
66
+ font-size: 0.75em;
67
+ }
68
+
69
+ #footer .w3cbutton {
70
+ font-weight: bold;
71
+ white-space: nowrap;
72
+ }