devcenter 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (192) hide show
  1. data/.gitignore +18 -0
  2. data/Gemfile +8 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +39 -0
  5. data/Rakefile +2 -0
  6. data/bin/devcenter +7 -0
  7. data/devcenter.gemspec +30 -0
  8. data/lib/devcenter.rb +6 -0
  9. data/lib/devcenter/cli.rb +45 -0
  10. data/lib/devcenter/coderay_extensions.rb +70 -0
  11. data/lib/devcenter/commands.rb +4 -0
  12. data/lib/devcenter/commands/base.rb +47 -0
  13. data/lib/devcenter/commands/open.rb +34 -0
  14. data/lib/devcenter/commands/preview.rb +28 -0
  15. data/lib/devcenter/commands/pull.rb +37 -0
  16. data/lib/devcenter/helpers.rb +41 -0
  17. data/lib/devcenter/layout.html +299 -0
  18. data/lib/devcenter/md_parser.rb +87 -0
  19. data/lib/devcenter/previewer.rb +36 -0
  20. data/lib/devcenter/previewer/assets/images/public/article-icon-large.png +0 -0
  21. data/lib/devcenter/previewer/assets/images/public/article-icon.png +0 -0
  22. data/lib/devcenter/previewer/assets/images/public/aside_accordion_indicator_default.png +0 -0
  23. data/lib/devcenter/previewer/assets/images/public/aside_accordion_indicator_open.png +0 -0
  24. data/lib/devcenter/previewer/assets/images/public/body_bg.png +0 -0
  25. data/lib/devcenter/previewer/assets/images/public/callout_bg.png +0 -0
  26. data/lib/devcenter/previewer/assets/images/public/feed-icon-sprite.png +0 -0
  27. data/lib/devcenter/previewer/assets/images/public/heroku-header-logo-mobile.png +0 -0
  28. data/lib/devcenter/previewer/assets/images/public/heroku-header-logo.png +0 -0
  29. data/lib/devcenter/previewer/assets/images/public/heroku-logo.png +0 -0
  30. data/lib/devcenter/previewer/assets/images/public/icon_sprite_16.png +0 -0
  31. data/lib/devcenter/previewer/assets/images/public/index_li_bullet.png +0 -0
  32. data/lib/devcenter/previewer/assets/images/public/intro_bg.png +0 -0
  33. data/lib/devcenter/previewer/assets/images/public/jive_discussion_arrow.png +0 -0
  34. data/lib/devcenter/previewer/assets/images/public/jive_discussion_glyph.png +0 -0
  35. data/lib/devcenter/previewer/assets/images/public/line.png +0 -0
  36. data/lib/devcenter/previewer/assets/images/public/pre_code_background.png +0 -0
  37. data/lib/devcenter/previewer/assets/images/public/search-icon.png +0 -0
  38. data/lib/devcenter/previewer/assets/images/public/search_glyph.png +0 -0
  39. data/lib/devcenter/previewer/assets/images/public/search_return.png +0 -0
  40. data/lib/devcenter/previewer/assets/images/public/tag-icon-large.png +0 -0
  41. data/lib/devcenter/previewer/assets/images/public/toc-icon.png +0 -0
  42. data/lib/devcenter/previewer/assets/public.css +2125 -0
  43. data/lib/devcenter/previewer/assets/public/article-icon-large.png +0 -0
  44. data/lib/devcenter/previewer/assets/public/article-icon.png +0 -0
  45. data/lib/devcenter/previewer/assets/public/aside_accordion_indicator_default.png +0 -0
  46. data/lib/devcenter/previewer/assets/public/aside_accordion_indicator_open.png +0 -0
  47. data/lib/devcenter/previewer/assets/public/body_bg.png +0 -0
  48. data/lib/devcenter/previewer/assets/public/callout_bg.png +0 -0
  49. data/lib/devcenter/previewer/assets/public/feed-icon-sprite.png +0 -0
  50. data/lib/devcenter/previewer/assets/public/heroku-header-logo-mobile.png +0 -0
  51. data/lib/devcenter/previewer/assets/public/heroku-header-logo.png +0 -0
  52. data/lib/devcenter/previewer/assets/public/heroku-logo.png +0 -0
  53. data/lib/devcenter/previewer/assets/public/icon_sprite_16.png +0 -0
  54. data/lib/devcenter/previewer/assets/public/index_li_bullet.png +0 -0
  55. data/lib/devcenter/previewer/assets/public/intro_bg.png +0 -0
  56. data/lib/devcenter/previewer/assets/public/jive_discussion_arrow.png +0 -0
  57. data/lib/devcenter/previewer/assets/public/jive_discussion_glyph.png +0 -0
  58. data/lib/devcenter/previewer/assets/public/line.png +0 -0
  59. data/lib/devcenter/previewer/assets/public/pre_code_background.png +0 -0
  60. data/lib/devcenter/previewer/assets/public/public.css +2125 -0
  61. data/lib/devcenter/previewer/assets/public/search-icon.png +0 -0
  62. data/lib/devcenter/previewer/assets/public/search_glyph.png +0 -0
  63. data/lib/devcenter/previewer/assets/public/search_return.png +0 -0
  64. data/lib/devcenter/previewer/assets/public/tag-icon-large.png +0 -0
  65. data/lib/devcenter/previewer/assets/public/toc-icon.png +0 -0
  66. data/lib/devcenter/previewer/file_listener.rb +23 -0
  67. data/lib/devcenter/previewer/views/article.erb +345 -0
  68. data/lib/devcenter/previewer/web_app.rb +53 -0
  69. data/lib/devcenter/previewer/web_server.rb +29 -0
  70. data/lib/devcenter/version.rb +3 -0
  71. data/vendor/sinatra/.gitignore +6 -0
  72. data/vendor/sinatra/.travis.yml +16 -0
  73. data/vendor/sinatra/.yardopts +4 -0
  74. data/vendor/sinatra/AUTHORS +61 -0
  75. data/vendor/sinatra/Gemfile +91 -0
  76. data/vendor/sinatra/LICENSE +22 -0
  77. data/vendor/sinatra/README.de.rdoc +2116 -0
  78. data/vendor/sinatra/README.es.rdoc +2106 -0
  79. data/vendor/sinatra/README.fr.rdoc +2133 -0
  80. data/vendor/sinatra/README.hu.rdoc +608 -0
  81. data/vendor/sinatra/README.jp.rdoc +1056 -0
  82. data/vendor/sinatra/README.ko.rdoc +1932 -0
  83. data/vendor/sinatra/README.pt-br.rdoc +778 -0
  84. data/vendor/sinatra/README.pt-pt.rdoc +647 -0
  85. data/vendor/sinatra/README.rdoc +2049 -0
  86. data/vendor/sinatra/README.ru.rdoc +2033 -0
  87. data/vendor/sinatra/README.zh.rdoc +1816 -0
  88. data/vendor/sinatra/Rakefile +182 -0
  89. data/vendor/sinatra/examples/chat.rb +61 -0
  90. data/vendor/sinatra/examples/simple.rb +3 -0
  91. data/vendor/sinatra/examples/stream.ru +26 -0
  92. data/vendor/sinatra/lib/sinatra.rb +5 -0
  93. data/vendor/sinatra/lib/sinatra/base.rb +1820 -0
  94. data/vendor/sinatra/lib/sinatra/images/404.png +0 -0
  95. data/vendor/sinatra/lib/sinatra/images/500.png +0 -0
  96. data/vendor/sinatra/lib/sinatra/main.rb +30 -0
  97. data/vendor/sinatra/lib/sinatra/showexceptions.rb +345 -0
  98. data/vendor/sinatra/lib/sinatra/version.rb +3 -0
  99. data/vendor/sinatra/sinatra.gemspec +18 -0
  100. data/vendor/sinatra/test/base_test.rb +172 -0
  101. data/vendor/sinatra/test/builder_test.rb +91 -0
  102. data/vendor/sinatra/test/coffee_test.rb +90 -0
  103. data/vendor/sinatra/test/compile_test.rb +139 -0
  104. data/vendor/sinatra/test/contest.rb +98 -0
  105. data/vendor/sinatra/test/creole_test.rb +65 -0
  106. data/vendor/sinatra/test/delegator_test.rb +160 -0
  107. data/vendor/sinatra/test/encoding_test.rb +20 -0
  108. data/vendor/sinatra/test/erb_test.rb +98 -0
  109. data/vendor/sinatra/test/extensions_test.rb +98 -0
  110. data/vendor/sinatra/test/filter_test.rb +437 -0
  111. data/vendor/sinatra/test/haml_test.rb +91 -0
  112. data/vendor/sinatra/test/helper.rb +123 -0
  113. data/vendor/sinatra/test/helpers_test.rb +1768 -0
  114. data/vendor/sinatra/test/integration/app.rb +62 -0
  115. data/vendor/sinatra/test/integration_helper.rb +222 -0
  116. data/vendor/sinatra/test/integration_test.rb +87 -0
  117. data/vendor/sinatra/test/less_test.rb +69 -0
  118. data/vendor/sinatra/test/liquid_test.rb +59 -0
  119. data/vendor/sinatra/test/mapped_error_test.rb +305 -0
  120. data/vendor/sinatra/test/markaby_test.rb +80 -0
  121. data/vendor/sinatra/test/markdown_test.rb +82 -0
  122. data/vendor/sinatra/test/middleware_test.rb +68 -0
  123. data/vendor/sinatra/test/nokogiri_test.rb +67 -0
  124. data/vendor/sinatra/test/public/favicon.ico +0 -0
  125. data/vendor/sinatra/test/rabl_test.rb +89 -0
  126. data/vendor/sinatra/test/rack_test.rb +45 -0
  127. data/vendor/sinatra/test/radius_test.rb +59 -0
  128. data/vendor/sinatra/test/rdoc_test.rb +66 -0
  129. data/vendor/sinatra/test/readme_test.rb +120 -0
  130. data/vendor/sinatra/test/request_test.rb +45 -0
  131. data/vendor/sinatra/test/response_test.rb +64 -0
  132. data/vendor/sinatra/test/result_test.rb +76 -0
  133. data/vendor/sinatra/test/route_added_hook_test.rb +59 -0
  134. data/vendor/sinatra/test/routing_test.rb +1175 -0
  135. data/vendor/sinatra/test/sass_test.rb +116 -0
  136. data/vendor/sinatra/test/scss_test.rb +89 -0
  137. data/vendor/sinatra/test/server_test.rb +48 -0
  138. data/vendor/sinatra/test/settings_test.rb +561 -0
  139. data/vendor/sinatra/test/sinatra_test.rb +12 -0
  140. data/vendor/sinatra/test/slim_test.rb +84 -0
  141. data/vendor/sinatra/test/static_test.rb +219 -0
  142. data/vendor/sinatra/test/streaming_test.rb +149 -0
  143. data/vendor/sinatra/test/templates_test.rb +333 -0
  144. data/vendor/sinatra/test/textile_test.rb +65 -0
  145. data/vendor/sinatra/test/views/a/in_a.str +1 -0
  146. data/vendor/sinatra/test/views/ascii.erb +2 -0
  147. data/vendor/sinatra/test/views/b/in_b.str +1 -0
  148. data/vendor/sinatra/test/views/calc.html.erb +1 -0
  149. data/vendor/sinatra/test/views/error.builder +3 -0
  150. data/vendor/sinatra/test/views/error.erb +3 -0
  151. data/vendor/sinatra/test/views/error.haml +3 -0
  152. data/vendor/sinatra/test/views/error.sass +2 -0
  153. data/vendor/sinatra/test/views/explicitly_nested.str +1 -0
  154. data/vendor/sinatra/test/views/foo/hello.test +1 -0
  155. data/vendor/sinatra/test/views/hello.builder +1 -0
  156. data/vendor/sinatra/test/views/hello.coffee +1 -0
  157. data/vendor/sinatra/test/views/hello.creole +1 -0
  158. data/vendor/sinatra/test/views/hello.erb +1 -0
  159. data/vendor/sinatra/test/views/hello.haml +1 -0
  160. data/vendor/sinatra/test/views/hello.less +5 -0
  161. data/vendor/sinatra/test/views/hello.liquid +1 -0
  162. data/vendor/sinatra/test/views/hello.mab +1 -0
  163. data/vendor/sinatra/test/views/hello.md +1 -0
  164. data/vendor/sinatra/test/views/hello.nokogiri +1 -0
  165. data/vendor/sinatra/test/views/hello.rabl +2 -0
  166. data/vendor/sinatra/test/views/hello.radius +1 -0
  167. data/vendor/sinatra/test/views/hello.rdoc +1 -0
  168. data/vendor/sinatra/test/views/hello.sass +2 -0
  169. data/vendor/sinatra/test/views/hello.scss +3 -0
  170. data/vendor/sinatra/test/views/hello.slim +1 -0
  171. data/vendor/sinatra/test/views/hello.str +1 -0
  172. data/vendor/sinatra/test/views/hello.test +1 -0
  173. data/vendor/sinatra/test/views/hello.textile +1 -0
  174. data/vendor/sinatra/test/views/hello.wlang +1 -0
  175. data/vendor/sinatra/test/views/hello.yajl +1 -0
  176. data/vendor/sinatra/test/views/layout2.builder +3 -0
  177. data/vendor/sinatra/test/views/layout2.erb +2 -0
  178. data/vendor/sinatra/test/views/layout2.haml +2 -0
  179. data/vendor/sinatra/test/views/layout2.liquid +2 -0
  180. data/vendor/sinatra/test/views/layout2.mab +2 -0
  181. data/vendor/sinatra/test/views/layout2.nokogiri +3 -0
  182. data/vendor/sinatra/test/views/layout2.rabl +3 -0
  183. data/vendor/sinatra/test/views/layout2.radius +2 -0
  184. data/vendor/sinatra/test/views/layout2.slim +3 -0
  185. data/vendor/sinatra/test/views/layout2.str +2 -0
  186. data/vendor/sinatra/test/views/layout2.test +1 -0
  187. data/vendor/sinatra/test/views/layout2.wlang +2 -0
  188. data/vendor/sinatra/test/views/nested.str +1 -0
  189. data/vendor/sinatra/test/views/utf8.erb +2 -0
  190. data/vendor/sinatra/test/wlang_test.rb +70 -0
  191. data/vendor/sinatra/test/yajl_test.rb +86 -0
  192. metadata +414 -0
@@ -0,0 +1,2125 @@
1
+ /*
2
+ title: reset css
3
+ author: maximilian schoening (@mschoening)
4
+ */
5
+
6
+
7
+ html, body, div, span, object, iframe,
8
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
9
+ abbr, address, cite, code,
10
+ del, dfn, em, img, ins, kbd, q, samp,
11
+ small, strong, sub, sup, var,
12
+ a, b, i,
13
+ dl, dt, dd, ol, ul, li,
14
+ fieldset, form, label, legend,
15
+ table, caption, tbody, tfoot, thead, tr, th, td,
16
+ article, aside, dialog, figure, footer,
17
+ header, hgroup, menu, nav, section,
18
+ time, mark, audio, video {
19
+ background: transparent;
20
+ border: 0;
21
+ font-size: 100%;
22
+ margin: 0;
23
+ outline: 0;
24
+ padding: 0;
25
+ vertical-align: baseline;
26
+ }
27
+
28
+ article, aside, dialog, figure, footer, header, hgroup, nav, section {
29
+ display : block;
30
+ }
31
+
32
+ body {
33
+ line-height: 1;
34
+ }
35
+
36
+ blockquote, q {
37
+ quotes: '' '';
38
+ }
39
+
40
+ blockquote:before, blockquote:after, q:before, q:after {
41
+ content: '';
42
+ }
43
+
44
+ table {
45
+ border-collapse: separate;
46
+ border-spacing: 0
47
+ }
48
+
49
+ table, th, td {
50
+ vertical-align: middle;
51
+ }
52
+
53
+ th, td {
54
+ font-weight: normal;
55
+ text-align: left;
56
+ }
57
+ .CodeRay {
58
+ color: #f8f8f8;
59
+ font-family: Monaco, monospace;
60
+ font-size: 11px;
61
+ }
62
+
63
+ span.CodeRay { white-space: pre; border: 0px; padding: 2px }
64
+ .CodeRay pre { margin: 0px }
65
+ table.CodeRay { border-collapse: collapse; width: 100%; padding: 2px }
66
+ table.CodeRay td { padding: 2px 4px; vertical-align: top }
67
+
68
+ .CodeRay .no { padding: 0px 4px }
69
+ .CodeRay .code { width: 100% }
70
+
71
+ ol.CodeRay { font-size: 10pt }
72
+ ol.CodeRay li { white-space: pre }
73
+
74
+ .CodeRay .code pre { overflow: auto }
75
+
76
+ .CodeRay .attribute-name { color: #fbde2d; } /* attribute_name */
77
+ .CodeRay .annotation { } /* annotation */
78
+ .CodeRay .attribute-value { } /* attribute_value */
79
+ .CodeRay .binary { color: #d8fa3c; } /* bin */
80
+ .CodeRay .comment { color: #aeaeae; } /* comment */
81
+
82
+ .CodeRay .char { color: #d8fa3c; } /* char */
83
+ .CodeRay .char .content { color: #d8fa3c; }
84
+ .CodeRay .char .delimiter { color: #d8fa3c; }
85
+
86
+ .CodeRay .class { } /* class */
87
+ .CodeRay .imaginary { color: #d8fa3c; } /* imaginary */
88
+ .CodeRay .constant { color: #d8fa3c; } /* constant */
89
+ .CodeRay .color { } /* color */
90
+ .CodeRay .class-variable { } /* class_variable */
91
+ .CodeRay .decorator { } /* decorator */
92
+ .CodeRay .definition { } /* definition */
93
+ .CodeRay .directive { } /* directive */
94
+ .CodeRay .delimiter { } /* delimiter */
95
+ .CodeRay .doc { } /* doc */
96
+ .CodeRay .doctype { } /* doctype */
97
+ .CodeRay .doc-string { } /* doc_string */
98
+ .CodeRay .escape { } /* (don't know) */
99
+ .CodeRay .entity { color: #ff6400; } /* entity */
100
+ .CodeRay .error { } /* error */
101
+ .CodeRay .exception { } /* exception */
102
+ .CodeRay .float { color: #d8fa3c; } /* float */
103
+ .CodeRay .function { } /* method */
104
+ .CodeRay .global-variable { } /* global_variable */
105
+ .CodeRay .hex { color: #d8fa3c; } /* hex */
106
+ .CodeRay .integer { color: #d8fa3c; } /* integer */
107
+ .CodeRay .include { } /* include */
108
+
109
+ .CodeRay .inline { } /* inline */
110
+ .CodeRay .inline .inline { }
111
+ .CodeRay .inline .inline .inline { }
112
+ .CodeRay .inline .inline-delimiter { } /* inline_delimiter */
113
+ .CodeRay .inline-delimiter { } /* inline_delimiter */
114
+
115
+ .CodeRay .instance-variable { } /* instance_variable */
116
+ .CodeRay .label { } /* label */
117
+ .CodeRay .local-variable { } /* local_variable */
118
+ .CodeRay .octal { color: #d8fa3c; } /* oct */
119
+ .coderay .operator { color: #fbde2d; } /* operator */
120
+ .CodeRay .predefined { } /* predefined */
121
+ .CodeRay .preprocessor { } /* preprocessor */
122
+ .CodeRay .pseudo-class { } /* pseudo_class */
123
+ .CodeRay .reserved, .keyword { color: #fbde2d; } /* keywords, ? */
124
+
125
+ .CodeRay .key { color: #d8fa3c; } /* key */
126
+ .CodeRay .key .delimiter { color: #d8fa3c; }
127
+ .CodeRay .key .char { color: #d8fa3c; }
128
+ .CodeRay .value { } /* value */
129
+
130
+ .CodeRay .regexp { } /* regexp */
131
+ .CodeRay .regexp .content { }
132
+ .CodeRay .regexp .delimiter { }
133
+ .CodeRay .regexp .modifier { }
134
+ .CodeRay .regexp .function { }
135
+
136
+ .CodeRay .string { color: #adc6ee; } /* string */
137
+ .CodeRay .string .string { }
138
+ .CodeRay .string .string .string { }
139
+ .CodeRay .string .content { }
140
+ .CodeRay .string .char { }
141
+ .CodeRay .string .delimiter { } /* quotes */
142
+
143
+ .CodeRay .shell { } /* shell */
144
+ .CodeRay .shell .content { }
145
+ .CodeRay .shell .delimiter { }
146
+
147
+ .CodeRay .symbol { color: #d8fa3c; } /* symbol */
148
+ .CodeRay .symbol .content { color: #d8fa3c; }
149
+ .CodeRay .symbol .delimiter { color: #d8fa3c; }
150
+
151
+ .CodeRay .tag { } /* tag */
152
+ .CodeRay .type { } /* type */
153
+ .CodeRay .variable { } /* variable */
154
+
155
+ .CodeRay .insert { } /* insert */
156
+ .CodeRay .insert .insert { }
157
+ .CodeRay .delete { } /* delete */
158
+ .CodeRay .delete .delete { }
159
+ .CodeRay .change { } /* change */
160
+ .CodeRay .change .change { }
161
+ .CodeRay .head { } /* head */
162
+ .CodeRay .head .head { }
163
+ /*
164
+ title: header css
165
+ author: maximilian schoening (@mschoening)
166
+ */
167
+
168
+ /* =heroku header
169
+ ---------------------------------------------- */
170
+ #hearoku-header * { /* mini CSS reset */
171
+ border: 0;
172
+ line-height: 1;
173
+ margin: 0;
174
+ padding: 0;
175
+ }
176
+
177
+ #heroku-header {
178
+ background: #29264d;
179
+ border-bottom: 4px solid #494573;
180
+ font-family: 'Helvetica Neue', Helvetica, Arial, Geneva, sans-serif;
181
+ font-size: 16px;
182
+ -webkit-font-smoothing: antialiased;
183
+ padding: 18px 24px;
184
+ }
185
+
186
+ #heroku-header:after {
187
+ clear: both;
188
+ content: ".";
189
+ display: block;
190
+ height: 0;
191
+ visibility: hidden;
192
+ zoom: 1;
193
+ }
194
+
195
+ #heroku-header #heroku-header-hgroup {
196
+ float: left;
197
+ }
198
+
199
+ #heroku-header #heroku-header-hgroup h1 a:link, #heroku-header #heroku-header-hgroup h1 a:visited {
200
+ background: url('https://nav.heroku.com//images/v2/heroku-header-logo.png') no-repeat;
201
+ height: 55px;
202
+ display: block;
203
+ text-indent: -99999px;
204
+ width: 178px;
205
+ }
206
+
207
+ #heroku-header #heroku-header-nav {
208
+ float: right;
209
+ margin: 11px 0 0 0;
210
+ }
211
+
212
+ #heroku-header #heroku-header-nav:after {
213
+ clear: both;
214
+ content: ".";
215
+ display: block;
216
+ height: 0;
217
+ visibility: hidden;
218
+ zoom: 1;
219
+ }
220
+
221
+ #heroku-header #heroku-header-nav ul {
222
+ float: left;
223
+ list-style: none;
224
+ margin: 0 26px 0 0;
225
+ padding: 8px 0 9px 0;
226
+ overflow: hidden;
227
+ }
228
+
229
+ #heroku-header #heroku-header-nav ul.group {
230
+ background: #231d40;
231
+ -moz-border-radius: 5px;
232
+ -webkit-border-radius: 5px;
233
+ border-radius: 5px;
234
+ -moz-box-shadow: 0 1px 1px rgba(255, 255, 255, .05), 0 0 1px rgba(0, 0, 0, .5) inset;
235
+ -webkit-box-shadow: 0 1px 1px rgba(255, 255, 255, .05), 0 0 1px rgba(0, 0, 0, .5) inset;
236
+ box-shadow: 0 1px 1px rgba(255, 255, 255, .05), 0 0 1px rgba(0, 0, 0, .5) inset;
237
+ padding: 8px 10px 9px 10px;
238
+ }
239
+
240
+ #heroku-header #heroku-header-nav ul.last {
241
+ margin: 0;
242
+ }
243
+
244
+ #heroku-header #heroku-header-nav ul:after {
245
+ clear: both;
246
+ content: ".";
247
+ display: block;
248
+ height: 0;
249
+ visibility: hidden;
250
+ zoom: 1;
251
+ }
252
+
253
+ #heroku-header #heroku-header-nav ul li {
254
+ border-right: 2px solid #534890;
255
+ float: left;
256
+ padding: 0 12px 0 0;
257
+ margin: 0 12px 0 0;
258
+ }
259
+
260
+ #heroku-header #heroku-header-nav ul li.last {
261
+ border: none;
262
+ margin: 0;
263
+ padding: 0;
264
+ }
265
+
266
+ #heroku-header #heroku-header-nav ul li a:link, #heroku-header #heroku-header-nav ul li a:visited {
267
+ color: #c9c3e6;
268
+ font-weight: 500;
269
+ text-decoration: none;
270
+ text-shadow: 0 1px 1px rgba(0, 0, 0, .1);
271
+ }
272
+
273
+ #heroku-header #heroku-header-nav ul li a:hover, #heroku-header #heroku-header-nav ul li a:active {
274
+ color: #fff;
275
+ }
276
+
277
+ #heroku-header #heroku-header-nav #heroku-header-aid li a:link, #heroku-header #heroku-header-nav #heroku-header-aid li a:visited {
278
+ color: #45a4ff;
279
+ }
280
+
281
+ #heroku-header #heroku-header-nav #heroku-header-aid li a:hover, #heroku-header #heroku-header-nav #heroku-header-aid li a:active {
282
+ color: #74d0f4;
283
+ }
284
+
285
+ #heroku-header #heroku-header-nav #heroku-header-my-heroku li a:link, #heroku-header #heroku-header-nav #heroku-header-my-heroku li a:visited {
286
+ color: #978cd4;
287
+ }
288
+
289
+ #heroku-header #heroku-header-nav #heroku-header-my-heroku li a:hover, #heroku-header #heroku-header-nav #heroku-header-my-heroku li a:active {
290
+ color: #b9aef6;
291
+ }
292
+
293
+ #heroku-header #heroku-header-nav ul li.active a:link, #heroku-header #heroku-header-nav ul li.active a:visited {
294
+ color: #bff740 !important;
295
+ }
296
+
297
+ #heroku-header #heroku-header-quicknav {
298
+ display: none;
299
+ }
300
+
301
+ @media only screen and (max-width: 990px) {
302
+ #heroku-header {
303
+ font-size: 14px;
304
+ }
305
+
306
+ #heroku-header #heroku-header-hgroup {
307
+ margin: 10px 0 0 0;
308
+ }
309
+
310
+ #heroku-header #heroku-header-nav {
311
+ margin: 0;
312
+ }
313
+
314
+ #heroku-header #heroku-header-nav ul li {
315
+ border: none;
316
+ float: none;
317
+ margin: 0 0 6px 0;
318
+ }
319
+ }
320
+
321
+ @media only screen and (max-width: 600px) {
322
+ #heroku-header {
323
+ border-bottom: 3px solid #494573;
324
+ padding: 12px 4px;
325
+ }
326
+
327
+ #heroku-header #heroku-header-hgroup {
328
+ display: none;
329
+ }
330
+
331
+ #heroku-header #heroku-header-nav {
332
+ display: none;
333
+ }
334
+
335
+ #heroku-header #heroku-header-quicknav {
336
+ background: url('https://nav.heroku.com/images/v2/heroku-header-logo-mobile.png') no-repeat left center;
337
+ display: block;
338
+ height: 37px;
339
+ margin: 0 auto;
340
+ position: relative;
341
+ width: 312px;
342
+ }
343
+
344
+ #heroku-header #heroku-header-quicknav select {
345
+ background: transparent; /* increases clickable area */
346
+ color: #fff;
347
+ display: block;
348
+ height: 32px;
349
+ left: 37px;
350
+ opacity: 0;
351
+ position: absolute;
352
+ top: 2px;
353
+ width: 275px;
354
+ z-index: 2;
355
+ }
356
+
357
+ #heroku-header #heroku-header-quicknav select:hover {
358
+ cursor: pointer;
359
+ }
360
+
361
+ #heroku-header #heroku-header-quicknav a:link, #heroku-header #heroku-header-quicknav a:visited {
362
+ background: url('https://nav.heroku.com/images/v2/heroku-header-quicknav-a-bg.png') no-repeat right center, -moz-linear-gradient(top, #e2e2e2, #b0b0b0);
363
+ background: url('https://nav.heroku.com/images/v2/heroku-header-quicknav-a-bg.png') no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#e2e2e2), to(#b0b0b0));
364
+ -moz-border-radius: 5px;
365
+ -webkit-border-radius: 5px;
366
+ border-radius: 5px;
367
+ color: #323232;
368
+ display: block;
369
+ font-size: 14px;
370
+ -webkit-font-smoothing: antialiased;
371
+ font-weight: bold;
372
+ left: 37px;
373
+ line-height: 32px;
374
+ padding: 0 12px;
375
+ position: absolute;
376
+ text-decoration: none;
377
+ text-shadow: 0 1px 1px rgba(255, 255, 255, .33);
378
+ top: 2px;
379
+ width: 251px;
380
+ z-index: 1;
381
+ }
382
+
383
+ #heroku-header #heroku-header-quicknav select:hover + a:link, #heroku-header #heroku-header-quicknav select:hover + a:visited {
384
+ background: url('https://nav.heroku.com/images/v2/heroku-header-quicknav-a-bg.png') no-repeat right center, -moz-linear-gradient(top, #f1f1f1, #c4c4c4);
385
+ background: url('https://nav.heroku.com/images/v2/heroku-header-quicknav-a-bg.png') no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), to(#c4c4c4));
386
+ }
387
+
388
+ #heroku-header #heroku-header-quicknav select:active + a:link, #heorku-header #heorku-header-quicknav select:hover + a:visited {
389
+ background: url('https://nav.heroku.com/images/v2/heroku-header-quicknav-a-bg.png') no-repeat right center, -moz-linear-gradient(top, #c4c4c4, #f1f1f1);
390
+ background: url('https://nav.heroku.com/images/v2/heroku-header-quicknav-a-bg.png') no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#c4c4c4), to(#f1f1f1));
391
+ }
392
+ }
393
+
394
+ /* =IE7 & IE8 hax
395
+ ---------------------------------------------- */
396
+ #heroku-header {
397
+ min-width/*\**/: 991px\9;
398
+ }
399
+ /* ------------------------------------------- */
400
+ /* ------------------------------------------- */
401
+ /*
402
+ title: library css
403
+ author: maximilian schoening (@mschoening)
404
+ */
405
+
406
+ /* =floating
407
+ ---------------------------------------------- */
408
+
409
+ .left {
410
+ float: left;
411
+ }
412
+
413
+ .right {
414
+ float: right;
415
+ }
416
+ /* ------------------------------------------- */
417
+
418
+ /* =clearing
419
+ ---------------------------------------------- */
420
+ .clear {
421
+ clear: both;
422
+ }
423
+
424
+ .clearfix {
425
+ overflow: hidden;
426
+ }
427
+
428
+ .pie-clearfix:after {
429
+ clear: both;
430
+ content: ".";
431
+ display: block;
432
+ height: 0;
433
+ visibility: hidden;
434
+ }
435
+
436
+ .pie-clearfix-ie {
437
+ display: block;
438
+ zoom: 1;
439
+ }
440
+ /* ------------------------------------------- */
441
+
442
+ /* =spacing
443
+ ---------------------------------------------- */
444
+ .no_border {
445
+ border: 0 !important;
446
+ }
447
+
448
+ .no_bottom {
449
+ margin-bottom: 0 !important;
450
+ }
451
+
452
+ .no_left {
453
+ margin-left: 0 !important;
454
+ }
455
+
456
+ .no_right {
457
+ margin-right: 0 !important;
458
+ }
459
+
460
+ .no_top {
461
+ margin-top: 0 !important;
462
+ }
463
+
464
+ .reset {
465
+ margin: 0 !important;
466
+ padding: 0 !important;
467
+ }
468
+
469
+ .reset_all {
470
+ border: 0 !important;
471
+ margin: 0 !important;
472
+ padding: 0 !important;
473
+ }
474
+
475
+ .reset_margin {
476
+ margin: 0 !important;
477
+ }
478
+
479
+ .reset_padding {
480
+ padding: 0 !important;
481
+ }
482
+ /* ------------------------------------------- */
483
+
484
+ /* =alignment
485
+ ---------------------------------------------- */
486
+ .align_center {
487
+ text-align: center !important;
488
+ }
489
+
490
+ .align_justify {
491
+ text-align: justify !important;
492
+ }
493
+
494
+ .align_left {
495
+ text-align: left !important;
496
+ }
497
+
498
+ .align_right {
499
+ text-align: right !important;
500
+ }
501
+ /* ------------------------------------------- */
502
+
503
+ /* =visibility
504
+ ---------------------------------------------- */
505
+ .block {
506
+ display: block !important;
507
+ }
508
+
509
+ .hide {
510
+ display: none !important;
511
+ }
512
+
513
+ .hide-offset {
514
+ position: absolute;
515
+ top: -99999px;
516
+ }
517
+
518
+ .inline {
519
+ display: inline !important;
520
+ }
521
+ /* ------------------------------------------- */
522
+ /*
523
+ title: base css
524
+ author: maximilian schoening (@mschoening)
525
+ */
526
+
527
+
528
+ @font-face {
529
+ font-family: 'hk';
530
+ font-style: normal;
531
+ font-weight: normal;
532
+ src: url('/fonts/heroku-partners.eot');
533
+ src: url('/fonts/heroku-partners.eot?#iefix') format('embedded-opentype'),
534
+ url('/fonts/heroku-partners.woff') format('woff'),
535
+ url('/fonts/heroku-partners.ttf') format('truetype'),
536
+ url('/fonts/heroku-partners.svg#HerokuPartners') format('svg');
537
+ }
538
+
539
+ body {
540
+ background: url('/assets/public/body_bg.png') repeat #f0f0f0;
541
+ color: #333;
542
+ font-family: 'Helvetica Neue', Helvetica, Arial, Geneva, sans-serif;
543
+ font-size: 13px;
544
+ }
545
+
546
+ body.dev:before {
547
+ background: yellow;
548
+ border-bottom: 1px solid #000;
549
+ content:"This is NOT a production instance: your changes will eventually be overwritten.";
550
+ display: block;
551
+ height: 1em;
552
+ padding: 1em 0;
553
+ text-align: center;
554
+ width: 100%;
555
+ }
556
+
557
+ /* =headings
558
+ ---------------------------------------------- */
559
+ h2 {
560
+ color: #666;
561
+ font-size: 20px;
562
+ font-weight: normal;
563
+ margin: 0 0 18px 0;
564
+ }
565
+
566
+ h3 {
567
+ border-bottom: 1px solid #e5e5e5;
568
+ color: #666;
569
+ font-size: 16px;
570
+ font-weight: normal;
571
+ margin: 0 0 12px 0;
572
+ padding: 0 0 4px 0;
573
+ }
574
+
575
+ h4 {
576
+ color: #666;
577
+ font-size: 14px;
578
+ margin: 0 0 8px 0;
579
+ }
580
+ /* ------------------------------------------- */
581
+
582
+ /* =links
583
+ ---------------------------------------------- */
584
+ a:link, a:visited {
585
+ color: #3e588d;
586
+ text-decoration: none;
587
+ }
588
+
589
+ a:hover, a:active {
590
+
591
+ }
592
+ /* ------------------------------------------- */
593
+
594
+ /* =paragraphs
595
+ ---------------------------------------------- */
596
+ p {
597
+ line-height: 20px;
598
+ margin: 0 0 22px 0;
599
+ }
600
+
601
+ p:last-child {
602
+ margin: 0;
603
+ }
604
+ /* ------------------------------------------- */
605
+
606
+ /* =images
607
+ ---------------------------------------------- */
608
+ p img, li img {
609
+ background: #fff;
610
+ border: 1px solid #e5e5e5;
611
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
612
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
613
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
614
+ display: block;
615
+ padding: 4px;
616
+ max-width: 460px;
617
+ }
618
+ /* ------------------------------------------- */
619
+
620
+ /* =lists
621
+ ---------------------------------------------- */
622
+ ul, ol {
623
+ margin: 0 0 22px 0;
624
+ padding: 0 0 0 24px;
625
+ }
626
+
627
+ ul:last-child, ol:last-child {
628
+ margin: 0;
629
+ }
630
+
631
+ ul li, ol li {
632
+ line-height: 18px;
633
+ margin: 0 0 8px 0;
634
+ }
635
+
636
+ ul li:last-child, ol li:last-child {
637
+ margin: 0;
638
+ }
639
+ /* ------------------------------------------- */
640
+
641
+ /* =code
642
+ ---------------------------------------------- */
643
+ code {
644
+ background: #f0f6fc;
645
+ border: 1px solid #d2dce6;
646
+ color: #444;
647
+ font-family: Monaco, monospace;
648
+ font-size: 11px;
649
+ padding: 1px 2px;
650
+ white-space: nowrap;
651
+ }
652
+
653
+ pre {
654
+ background: url('/assets/public/pre_code_background.png') repeat #434e56;
655
+ border: 1px solid #3f464c;
656
+ -moz-border-radius: 3px;
657
+ -webkit-border-radius: 3px;
658
+ border-radius: 3px;
659
+ line-height: 18px;
660
+ margin: 0 0 22px 0;
661
+ overflow-y: auto;
662
+ padding: 12px;
663
+ }
664
+
665
+ pre::-webkit-scrollbar {
666
+ height: 7px;
667
+ width: 7px;
668
+ }
669
+
670
+ pre::-webkit-scrollbar-button:start:decrement, pre::-webkit-scrollbar-button:end:increment {
671
+ display: none;
672
+ }
673
+
674
+ pre::-webkit-scrollbar-track-piece {
675
+ background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .3)), to(rgba(0, 0, 0, .1)));
676
+ }
677
+
678
+ pre::-webkit-scrollbar-thumb:horizontal {
679
+ background: -webkit-gradient(linear, left top, left bottom, from(#99a2ab), to(#6a747c));
680
+ -webkit-border-radius: 3px;
681
+ -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .66) inset;
682
+ box-shadow: 0 1px 0 rgba(0, 0, 0, .66) inset;
683
+ width: 25px;
684
+ }
685
+
686
+ pre code {
687
+ background: transparent;
688
+ border: none;
689
+ color: #f8f8f8;
690
+ white-space: pre;
691
+ }
692
+ /* ------------------------------------------- */
693
+
694
+ /* =forms
695
+ ---------------------------------------------- */
696
+
697
+ /* ------------------------------------------- */
698
+
699
+ /* =tables
700
+ ---------------------------------------------- */
701
+ table {
702
+ margin: 0 0 22px 0;
703
+ width: 100%;
704
+ }
705
+
706
+ table tr th {
707
+ background: #f1f1f1;
708
+ border-bottom: 1px solid #e5e5e5;
709
+ border-left: 1px solid #e5e5e5;
710
+ border-top: 1px solid #e5e5e5;
711
+ color: #999;
712
+ font-size: 11px;
713
+ padding: 8px;
714
+ text-align: center;
715
+ }
716
+
717
+ table tr th:last-child {
718
+ border-right: 1px solid #e5e5e5;
719
+ }
720
+
721
+ table tr td {
722
+ border-bottom: 1px solid #e5e5e5;
723
+ border-left: 1px solid #e5e5e5;
724
+ padding: 8px;
725
+ text-align: center;
726
+ }
727
+
728
+ table tr td:first-child {
729
+ text-align: left;
730
+ }
731
+
732
+ table tr td:last-child {
733
+ border-right: 1px solid #e5e5e5;
734
+ }
735
+ /* ------------------------------------------- */
736
+
737
+ /* =objects
738
+ ---------------------------------------------- */
739
+ object {
740
+ margin: 0 0 22px 0;
741
+ max-width: 470px;
742
+ }
743
+ /* ------------------------------------------- */
744
+
745
+ /* =highlights
746
+ ---------------------------------------------- */
747
+
748
+ /* ------------------------------------------- */
749
+
750
+ /* =results
751
+ ---------------------------------------------- */
752
+ .results {
753
+ list-style: none;
754
+ padding: 0;
755
+ }
756
+
757
+ .results li {
758
+ margin: 0 0 12px 0;
759
+ }
760
+
761
+ .results li:last-child {
762
+ margin: 0;
763
+ }
764
+
765
+ .results li a:link, .results li a:visited {
766
+ background: url('/assets/public/icon_sprite_16.png') no-repeat;
767
+ font-size: 13px;
768
+ font-weight: bold;
769
+ padding: 4px 0 4px 22px;
770
+ }
771
+
772
+ .results.articles li a:link, .results.articles li a:visited {
773
+ background-position: left 4px;
774
+ }
775
+
776
+ .results.community li a:link, .results.community li a:visited {
777
+ background-position: left -35px;
778
+ }
779
+
780
+ .results .snippet {
781
+ color: #777;
782
+ }
783
+
784
+ /* ------------------------------------------- */
785
+
786
+ /* =platform
787
+ ---------------------------------------------- */
788
+ .platform h1 sub {
789
+ font-size: 12px;
790
+ padding: 0 0 0 8px;
791
+ }
792
+
793
+ .platform .results, .platform article {
794
+ margin: 0 0 22px 0;
795
+ }
796
+
797
+ .platform p, .platform ul {
798
+ margin: 0 0 12px 0;
799
+ }
800
+
801
+ .platform article li {
802
+ list-style: disc;
803
+ }
804
+
805
+ .platform article a:link, .platform article a:visited {
806
+ background: none;
807
+ font-size: 13px;
808
+ font-weight: normal;
809
+ padding: 0;
810
+ }
811
+
812
+ .platform h3 a:link, .platform h3 a:visited {
813
+ background: url('/assets/public/icon_sprite_16.png') no-repeat;
814
+ background-position: left 5px;
815
+ font-weight: bold;
816
+ line-height: 20px;
817
+ padding: 4px 0 4px 22px;
818
+ }
819
+
820
+ /* ------------------------------------------- */
821
+
822
+ /* =layout
823
+ ---------------------------------------------- */
824
+ .wrapper {
825
+ margin: 0 auto;
826
+ padding: 0 12px;
827
+ width: 960px;
828
+ }
829
+
830
+ /* =header
831
+ ---------------------------------------------- */
832
+ /* todo: move header styles here */
833
+ /* ------------------------------------------- */
834
+
835
+ /* =sheet
836
+ ---------------------------------------------- */
837
+ #sheet {
838
+ padding: 32px 0;
839
+ }
840
+
841
+ /* =sidebar
842
+ ---------------------------------------------- */
843
+ #sidebar {
844
+ float: left;
845
+ margin: 0 24px 0 0;
846
+ width: 204px;
847
+ }
848
+
849
+ /* =search
850
+ ---------------------------------------------- */
851
+ #search {
852
+ margin: 0 0 12px 0;
853
+ }
854
+
855
+ #search form p input[type='text'] {
856
+ background-color: #fafafa;
857
+ background-image: url('/assets/public/search_glyph.png');
858
+ background-position: left 6px;
859
+ background-repeat: no-repeat;
860
+ border: 1px solid #aeb3b8;
861
+ -moz-border-radius: 3px;
862
+ -webkit-border-radius: 3px;
863
+ border-radius: 3px;
864
+ -moz-box-shadow: 0 1px 1px rgba(255, 255, 255, .66), 0 1px 4px rgba(0, 0, 0, .1) inset;
865
+ -webkit-box-shadow: 0 1px 1px rgba(255, 255, 255, .66), 0 1px 4px rgba(0, 0, 0, .1) inset;
866
+ box-shadow: 0 1px 1px rgba(255, 255, 255, .66), 0 1px 4px rgba(0, 0, 0, .1) inset;
867
+ color: #2275bb;
868
+ font-family: 'Helvetica Neue', Helvetica, Arial, Geneva, sans-serif;
869
+ font-size: 16px;
870
+ padding: 8px 8px 8px 34px;
871
+ outline: none;
872
+ width: 160px;
873
+ }
874
+
875
+ #search form p input[type='text']:focus {
876
+ background-position: left -35px;
877
+ border: 1px solid #74a9de;
878
+ -moz-box-shadow: 0 0 4px rgba(111, 177, 243, .5), 0 1px 4px rgba(0, 0, 0, .1) inset;
879
+ -webkit-box-shadow: 0 0 4px rgba(111, 177, 243, .5), 0 1px 4px rgba(0, 0, 0, .1) inset;
880
+ box-shadow: 0 0 4px rgba(111, 177, 243, .5), 0 1px 4px rgba(0, 0, 0, .1) inset;
881
+ }
882
+
883
+ #search form p input[type='text']:focus:valid {
884
+ background-image: url('/assets/public/search_glyph.png'), url('/assets/public/search_return.png');
885
+ background-position: left -35px, right 10px;
886
+ padding: 8px 29px 8px 34px;
887
+ width: 139px;
888
+ }
889
+
890
+ #search form p {
891
+ margin: 0;
892
+ }
893
+ /* ------------------------------------------- */
894
+
895
+ /* =quicknav
896
+ ---------------------------------------------- */
897
+ #quicknav {
898
+ display: none;
899
+ }
900
+ /* ------------------------------------------- */
901
+
902
+ /* =nav
903
+ ---------------------------------------------- */
904
+ #nav {
905
+ list-style: none;
906
+ padding: 0;
907
+ }
908
+
909
+ #nav .category-group {
910
+ line-height: 18px;
911
+ margin: 0 0 6px 0;
912
+ }
913
+
914
+ #nav .category-group .category, #nav .category-group .fake-category {
915
+ background: url('/assets/public/aside_accordion_indicator_default.png') right center no-repeat, -moz-linear-gradient(top, #f7f7f7, #ededed);
916
+ background: url('/assets/public/aside_accordion_indicator_default.png') right center no-repeat, -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#ededed));
917
+ background: url('/assets/public/aside_accordion_indicator_default.png') right center no-repeat, linear-gradient(top, #f7f7f7, #ededed);
918
+ border: 1px solid #acb3b7;
919
+ -moz-border-radius: 3px;
920
+ -webkit-border-radius: 3px;
921
+ border-radius: 3px;
922
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .1), 0 1px 1px #fff inset;
923
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .1), 0 1px 1px #fff inset;
924
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .1), 0 1px 1px #fff inset;
925
+ color: #464951;
926
+ display: block;
927
+ -webkit-font-smoothing: antialiased;
928
+ font-size: 14px;
929
+ font-weight: bold;
930
+ padding: 6px 8px;
931
+ position: relative;
932
+ text-shadow: 0 1px 1px #fff;
933
+ z-index: 2;
934
+ }
935
+
936
+ #nav .category-group .category.ui-state-active {
937
+ background: url('/assets/public/aside_accordion_indicator_open.png') right center no-repeat, -moz-linear-gradient(top, #f7f7f7, #ededed);
938
+ background: url('/assets/public/aside_accordion_indicator_open.png') right center no-repeat, -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#ededed));
939
+ background: url('/assets/public/aside_accordion_indicator_open.png') right center no-repeat, linear-gradient(top, #f7f7f7, #ededed);
940
+ }
941
+
942
+ #nav .category-group .tags {
943
+ background: rgba(59, 68, 88, .1);
944
+ border: 1px solid #cacaca;
945
+ -moz-border-radius-bottomleft: 3px;
946
+ -moz-border-radius-bottomright: 3px;
947
+ -webkit-border-bottom-left-radius: 3px;
948
+ -webkit-border-bottom-right-radius: 3px;
949
+ border-bottom-left-radius: 3px;
950
+ border-bottom-right-radius: 3px;
951
+ -moz-box-shadow: 0 1px 2px rgba(255, 255, 255, .1);
952
+ -webkit-box-shadow: 0 1px 2px rgba(255, 255, 255, 1);
953
+ box-shadow: 0 1px 1px rgba(255, 255, 255, 1);
954
+ list-style: none;
955
+ margin: -3px 0 0 0;
956
+ padding: 2px 0;
957
+ }
958
+
959
+ #nav .category-group .tags li {
960
+ font-size: 13px;
961
+ line-height: 1;
962
+ margin: 0;
963
+ padding: 6px 8px;
964
+ }
965
+
966
+ #nav .category-group .tags li a:link, #nav .category-group .tags li a:visited {
967
+ color: #5a5e67;
968
+ -webkit-font-smoothing: antialiased;
969
+ font-weight: bold;
970
+ }
971
+
972
+ #nav .category-group .tags li.active a:link, #nav .category-group .tags li.active a:visited {
973
+ color: #3772ac;
974
+ }
975
+ /* ------------------------------------------- */
976
+ /* ------------------------------------------- */
977
+
978
+ /* =main
979
+ ---------------------------------------------- */
980
+ #main {
981
+ float: left;
982
+ /*margin-bottom: 180px;*/
983
+ width: 732px;
984
+ }
985
+
986
+ /* =page
987
+ ---------------------------------------------- */
988
+ #page, .page {
989
+ background: #fff;
990
+ -moz-border-radius: 5px;
991
+ -webkit-border-radius: 5px;
992
+ border-radius: 5px;
993
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 -1px 1px rgba(113, 123, 149, .2);
994
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 -1px 1px rgba(113, 123, 149, .2);
995
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 -1px 1px rgba(113, 123, 149, .2);
996
+ color: #333;
997
+ padding: 18px;
998
+ }
999
+
1000
+ #page hgroup, .page hgroup {
1001
+ margin: 0 0 24px 0;
1002
+ }
1003
+
1004
+ #page hgroup h1, .page hgroup h1 {
1005
+ color: #111;
1006
+ font-size: 24px;
1007
+ font-weight: normal;
1008
+ margin: 0 0 8px 0;
1009
+ }
1010
+
1011
+ #page hgroup h1:last-child, .page hgroup h1:last-child {
1012
+ margin: 0;
1013
+ }
1014
+ /* ------------------------------------------- */
1015
+ /* ------------------------------------------- */
1016
+ /* ------------------------------------------- */
1017
+ /* ------------------------------------------- */
1018
+
1019
+ /* =home-page
1020
+ ---------------------------------------------- */
1021
+
1022
+ #home-page #banner {
1023
+ background: #7082AD;
1024
+ background: #7082AD -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .2)));
1025
+ background: #7082AD -moz-linear-gradient(top, transparent, rgba(0, 0, 0, .2));
1026
+ background: #7082AD linear-gradient(top, transparent, rgba(0, 0, 0, .2));
1027
+ border-radius: 4px;
1028
+ color: #FFF;
1029
+ font-weight: normal;
1030
+ font-size: 2em;
1031
+ margin: 0 0 1em 0;
1032
+ padding: 1em;
1033
+ -webkit-font-smoothing: antialiased;
1034
+ }
1035
+
1036
+ /* =intro
1037
+ ---------------------------------------------- */
1038
+ #home-page #intro {
1039
+ -moz-border-radius: 5px;
1040
+ -webkit-border-radius: 5px;
1041
+ border-radius: 5px;
1042
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
1043
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
1044
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
1045
+ margin: 0 0 24px 0;
1046
+ position: relative;
1047
+ }
1048
+
1049
+ #home-page #intro > h2 {
1050
+ background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .2)));
1051
+ background: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, .2));
1052
+ background: linear-gradient(top, transparent, rgba(0, 0, 0, .2));
1053
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .15);
1054
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .15);
1055
+ box-shadow: 0 1px 1px rgba(0, 0, 0, .15);
1056
+ color: #fff;
1057
+ font-family: CorbelBold, "Helvetica Neue", Helvetica, Arial Geneva, sans-serif;
1058
+ font-size: 22px;
1059
+ line-height: 42px;
1060
+ padding: 0 0 0 14px;
1061
+ position: absolute;
1062
+ text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
1063
+ width: 946px;
1064
+ z-index: 99999;
1065
+ }
1066
+
1067
+ #home-page #intro #cycle .pane {
1068
+ -moz-border-radius: 5px;
1069
+ -webkit-border-radius: 5px;
1070
+ border-radius: 5px;
1071
+ padding: 42px 0;
1072
+ width: 960px;
1073
+ }
1074
+
1075
+ #home-page #intro #cycle .pane .content {
1076
+ background: url('/assets/public/intro_bg.png'), -moz-linear-gradient(top, rgba(0, 0, 0, .25), rgba(0, 0, 0, .20) 8%, rgba(0, 0, 0, .15) 25%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, .20) 92%, rgba(0, 0, 0, .28));
1077
+ background: url('/assets/public/intro_bg.png'), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .25)), color-stop(.08, rgba(0, 0, 0, .20)), color-stop(.25, rgba(0, 0, 0, .15)), color-stop(.65, rgba(0, 0, 0, 0)), color-stop(.92, rgba(0, 0, 0, .20)), to(rgba(0, 0, 0, .28)));
1078
+ background: url('/assets/public/intro_bg.png'), linear-gradient(top, rgba(0, 0, 0, .25), rgba(0, 0, 0, .20) 8%, rgba(0, 0, 0, .15) 25%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, .20) 92%, rgba(0, 0, 0, .28));
1079
+ display: table;
1080
+ width: 100%;
1081
+ }
1082
+
1083
+ #home-page #intro #cycle .pane .content .td {
1084
+ display: table-cell;
1085
+ padding: 18px 32px;
1086
+ vertical-align: middle;
1087
+ }
1088
+
1089
+ #home-page #intro #cycle .pane .content .description {
1090
+ color: #fff;
1091
+ -webkit-font-smoothing: antialiased;
1092
+ text-shadow: 0 1px 1px rgba(0, 0, 0, .25);
1093
+ width: 416px;
1094
+ }
1095
+
1096
+ #home-page #intro #cycle .pane .content .description h1 {
1097
+ font-size: 22px;
1098
+ font-weight: 400;
1099
+ margin: 0 0 12px 0;
1100
+ }
1101
+
1102
+ #home-page #intro #cycle .pane .content .description p {
1103
+ font-size: 14px;
1104
+ line-height: 22px;
1105
+ }
1106
+
1107
+ #home-page #intro #cycle .pane .content .image {
1108
+ text-align: right;
1109
+ width: 416px;
1110
+ }
1111
+
1112
+ #home-page #intro #controls {
1113
+ background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .2)));
1114
+ background: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, .2));
1115
+ background: linear-gradient(top, transparent, rgba(0, 0, 0, .2));
1116
+ -moz-box-shadow: 0 -1px 1px rgba(0, 0, 0, .15), 0 1px 1px rgba(255, 255, 255, .1) inset;
1117
+ -webkit-box-shadow: 0 -1px 1px rgba(0, 0, 0, .15), 0 1px 1px rgba(255, 255, 255, .1) inset;
1118
+ box-shadow: 0 -1px 1px rgba(0, 0, 0, .15), 0 1px 1px rgba(255, 255, 255, .1) inset;
1119
+ -moz-border-radius-bottomleft: 5px;
1120
+ -moz-border-radius-bottomright: 5px;
1121
+ -webkit-border-bottom-left-radius: 5px;
1122
+ -webkit-border-bottom-right-radius: 5px;
1123
+ border-bottom-left-radius: 5px;
1124
+ border-bottom-right-radius: 5px;
1125
+ margin: -42px 0 0 0;
1126
+ list-style: none;
1127
+ position: relative;
1128
+ text-align: center;
1129
+ z-index: 99999;
1130
+ }
1131
+
1132
+ #home-page #intro #controls li {
1133
+ display: inline-block;
1134
+ margin: 0;
1135
+ }
1136
+
1137
+ #home-page #intro #controls li a:link, #home-page #intro #controls li a:visited {
1138
+ color: rgba(0, 0, 0, .5);
1139
+ font-size: 28px;
1140
+ line-height: 42px;
1141
+ -webkit-font-smoothing: antialiased;
1142
+ text-shadow: 0 1px 1px rgba(255, 255, 255, .2);
1143
+ }
1144
+
1145
+ #home-page #intro #controls li.activeSlide a:link, #home-page #intro #controls li.activeSlide a:visited {
1146
+ color: rgba(255, 255, 255, .5);
1147
+ text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
1148
+ }
1149
+ /* ------------------------------------------- */
1150
+
1151
+ /* =listing
1152
+ ---------------------------------------------- */
1153
+ #home-page .listing {
1154
+ background: #fff;
1155
+ -moz-border-radius: 5px;
1156
+ -webkit-border-radius: 5px;
1157
+ border-radius: 5px;
1158
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
1159
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
1160
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
1161
+ color: #333;
1162
+ }
1163
+
1164
+ #home-page .listing {
1165
+ margin: 0 0 24px 0;
1166
+ }
1167
+
1168
+ #home-page .listing h2 {
1169
+ background: -moz-linear-gradient(top, #f2f2f2, #e2e2e2);
1170
+ background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#e2e2e2));
1171
+ background: linear-gradient(top, #f2f2f2, #e2e2e2);
1172
+ border-bottom: 1px solid rgba(172, 179, 183, .5);
1173
+ -webkit-border-top-left-radius: 5px;
1174
+ -webkit-border-top-right-radius: 5px;
1175
+ -moz-border-radius-topleft: 5px;
1176
+ -moz-border-radius-topright: 5px;
1177
+ border-top-left-radius: 5px;
1178
+ border-top-right-radius: 5px;
1179
+ -moz-box-shadow: 0 1px 1px #fff inset;
1180
+ -webkit-box-shadow: 0 1px 1px #fff inset;
1181
+ box-shadow: 0 1px 1px #fff inset;
1182
+ margin: 0;
1183
+ padding: 18px;
1184
+ font-size: 18px;
1185
+ font-weight: bold;
1186
+ -webkit-font-smoothing: antialiased;
1187
+ text-shadow: 0 1px 1px #fff;
1188
+ }
1189
+
1190
+ #home-page .subscribe {
1191
+ float: right;
1192
+ }
1193
+
1194
+ #home-page .subscribe a.twitter {
1195
+ background: url(/assets/public/feed-icon-sprite.png) -25px 0 no-repeat;
1196
+ border-right: 1px solid rgba(199, 202, 204, 1);
1197
+ -webkit-box-shadow: 1px 0 0 rgba(255, 255, 255, 1);
1198
+ -moz-box-shadow: 1px 0 0 rgba(255, 255, 255, 1);
1199
+ box-shadow: 1px 0 0 rgba(255, 255, 255, 1);
1200
+ display: inline-block;
1201
+ padding-right: 15px;
1202
+ margin-right: 8px;
1203
+ margin-bottom: -6px;
1204
+ height: 24px;
1205
+ width: 25px;
1206
+ }
1207
+
1208
+ #home-page .subscribe a.twitter:hover {
1209
+ background: url(/assets/public/feed-icon-sprite.png) -25px -25px no-repeat;
1210
+ }
1211
+
1212
+ #home-page .subscribe .feed {
1213
+ background: url(/assets/public/feed-icon-sprite.png) 0px 0;
1214
+ display: inline-block;
1215
+ margin-bottom: -6px;
1216
+ height: 24px;
1217
+ width: 21px;
1218
+ }
1219
+ #home-page .subscribe .feed:hover {
1220
+ background: url(/assets/public/feed-icon-sprite.png) 0px -25px no-repeat;
1221
+ }
1222
+
1223
+ #home-page .listing ul {
1224
+ background: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), to(#fff));
1225
+ border-top: 1px solid #fff;
1226
+ -webkit-border-bottom-left-radius: 5px;
1227
+ -webkit-border-bottom-right-radius: 5px;
1228
+ -moz-border-radius-bottomleft: 5px;
1229
+ -moz-border-radius-bottomright: 5px;
1230
+ border-bottom-left-radius: 5px;
1231
+ border-bottom-right-radius: 5px;
1232
+ list-style: none;
1233
+ padding: 18px;
1234
+ }
1235
+
1236
+ #home-page .listing ul li{
1237
+ margin: 0 0 18px 0;
1238
+ }
1239
+
1240
+ #home-page .listing ul li:last-child {
1241
+ margin: 0;
1242
+ }
1243
+
1244
+ #home-page .listing ul li a:link,
1245
+ #home-page .listing ul li a:visited {
1246
+ background: url('/assets/public/article-icon-large.png') left center no-repeat;
1247
+ display: block;
1248
+ font-size: 14px;
1249
+ line-height: 32px;
1250
+ padding: 0 0 0 40px;
1251
+ }
1252
+
1253
+ #home-page .listing ul li.show-more {
1254
+ margin-top: -10px;
1255
+ }
1256
+
1257
+ #home-page .listing ul li.show-more a:link,
1258
+ #home-page .listing ul li.show-more a:visited {
1259
+ background: none;
1260
+ color: #9a909f;
1261
+ }
1262
+ #home-page .listing ul li.show-more a:before {
1263
+ background: #e2e3e4;
1264
+ -moz-border-radius: 2px;
1265
+ -webkit-border-radius: 2px;
1266
+ border-radius: 2px;
1267
+ content: '\2026';
1268
+ font-family: 'hk';
1269
+ font-size: .7em;
1270
+ color: #9a909f;
1271
+ padding: 1px 5px;
1272
+ margin: 0 15px 0 -34px;
1273
+ }
1274
+ /* ------------------------------------------- */
1275
+ /* ------------------------------------------- */
1276
+
1277
+ /* =article
1278
+ /* ------------------------------------------- */
1279
+ /* =contribution
1280
+ ---------------------------------------------- */
1281
+ #article #contribution {
1282
+ background: rgba(128, 146, 167, .3);
1283
+ border: 1px solid #acb8c5;
1284
+ -moz-border-radius-topleft: 5px;
1285
+ -moz-border-radius-topright: 5px;
1286
+ -webkit-border-top-left-radius: 5px;
1287
+ -webkit-border-top-right-radius: 5px;
1288
+ border-top-left-radius: 5px;
1289
+ border-top-right-radius: 5px;
1290
+ color: #636a76;
1291
+ -webkit-font-smoothing: antialiased;
1292
+ margin: -1px;
1293
+ min-height: 42px;
1294
+ padding: 18px 24px 21px 24px;
1295
+ text-shadow: 0 1px 1px rgba(255, 255, 255, .25);
1296
+ }
1297
+
1298
+ #article #contribution img {
1299
+ float: left;
1300
+ max-height: 48px;
1301
+ max-width: 128px;
1302
+ margin: 0 24px 0 0;
1303
+ }
1304
+
1305
+ #article #contribution .profile .bio {
1306
+ margin: 0 24px 0 70px;
1307
+ }
1308
+
1309
+ #article #contribution .profile .bio img {
1310
+ border: none;
1311
+ background: transparent;
1312
+ margin: 0px 5px 0px 0px;
1313
+ -moz-box-shadow: none;
1314
+ -webkit-box-shadow: none;
1315
+ box-shadow: none;
1316
+ padding: 0px 4px 0px 0px;
1317
+ }
1318
+
1319
+ #article #contribution div h4 {
1320
+ font-size: 14px;
1321
+ font-weight: normal;
1322
+ margin: 0 0 4px 0;
1323
+ }
1324
+
1325
+ #article #contribution div h4 a:link, #article #contribution div h4 a:visited {
1326
+ color: #636a76;
1327
+ font-weight: bold;
1328
+ }
1329
+ /* ------------------------------------------- */
1330
+
1331
+ /* =article
1332
+ ---------------------------------------------- */
1333
+ #article article {
1334
+ background: #fff;
1335
+ -moz-border-radius: 5px;
1336
+ -webkit-border-radius: 5px ;
1337
+ border-radius: 5px;
1338
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 -1px 1px rgba(113, 123, 149, .2);
1339
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05), 0 -1px 1px rgba(113, 123, 149, .2);
1340
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 -1px 1px rgba(113, 123, 149, .2);
1341
+ color: #333;
1342
+ padding: 18px 244px 18px 18px;
1343
+ position: relative;
1344
+ }
1345
+
1346
+ #article article.contributed {
1347
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 -1px 1px rgba(113, 123, 149, .2), 0 0 0 4px rgba(165, 187, 212, .1) inset;
1348
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 -1px 1px rgba(113, 123, 149, .2), 0 0 0 4px rgba(165, 187, 212, .1) inset;
1349
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 -1px 1px rgba(113, 123, 149, .2), 0 0 0 4px rgba(165, 187, 212, .1) inset;
1350
+ margin: -3px 0 0 0;
1351
+ }
1352
+
1353
+ #article article hgroup {
1354
+ margin: 0 0 24px 0;
1355
+ }
1356
+
1357
+ #article article hgroup h1 {
1358
+ background: url('/assets/public/article-icon-large.png') left center no-repeat;
1359
+ color: #111;
1360
+ font-size: 24px;
1361
+ font-weight: normal;
1362
+ line-height: 32px;
1363
+ margin: 0 0 8px 0;
1364
+ padding: 0 0 0 40px;
1365
+ }
1366
+
1367
+ #article article hgroup h1:last-child {
1368
+ margin: 0;
1369
+ }
1370
+
1371
+ #main article a {
1372
+ text-decoration: underline;
1373
+ }
1374
+
1375
+ #article #main article h2 a,
1376
+ #article #main h3 a,
1377
+ #article #main h4 a,
1378
+ #article #main h5 a,
1379
+ #article #main h6 a{
1380
+ color: #666;
1381
+ text-decoration: none;
1382
+ }
1383
+
1384
+ #article article h2 a:hover::after,
1385
+ #article article h3 a:hover::after,
1386
+ #article article h4 a:hover::after,
1387
+ #article article h5 a:hover::after,
1388
+ #article article h6 a:hover::after{
1389
+ content: '\260D';
1390
+ font-family: 'hk';
1391
+ font-size: .65em;
1392
+ margin-left: .2em;
1393
+ }
1394
+
1395
+ #article article hgroup .meta {
1396
+ color: #999;
1397
+ font-size: 11px;
1398
+ font-style: italic;
1399
+ margin: 0 0 8px 0;
1400
+ }
1401
+
1402
+ #article #main hgroup .tags a:link, #article #main hgroup .tags a:visited {
1403
+ background: -webkit-gradient(linear, left top, left bottom, from(#f0f6fc), to(#cddff1));
1404
+ background: -moz-linear-gradient(top, #f0f6fc, #cddff1);
1405
+ border: 1px solid #a1b8d6;
1406
+ -moz-border-radius: 32px;
1407
+ -webkit-border-radius: 32px;
1408
+ border-radius: 32px;
1409
+ -moz-box-shadow: 0 1px 1px #fff;
1410
+ -webkit-box-shadow: 0 1px 1px #fff;
1411
+ box-shadow: 0 1px 1px #fff;
1412
+ color: #4d5765;
1413
+ font-size: 12px;
1414
+ font-weight: bold;
1415
+ margin: 0 2px 0 0;
1416
+ padding: 3px 8px;
1417
+ text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
1418
+ text-decoration: none;
1419
+ }
1420
+
1421
+ #article article hgroup .tags a:link:last-child, #article article hgroup .tags a:visited:last-child {
1422
+ margin: 0;
1423
+ }
1424
+
1425
+ /* section: table of contents
1426
+ ---------------------------------------------- */
1427
+ #article article #table-of-contents {
1428
+ border-bottom: 1px solid #e5e5e5;
1429
+ margin: 0 0 22px 0;
1430
+ padding: 0 0 12px 0;
1431
+ }
1432
+
1433
+ #article article #table-of-contents ul {
1434
+ list-style: none;
1435
+ padding: 0 0 0 4px;
1436
+ }
1437
+
1438
+ #article article #table-of-contents ul li {
1439
+ background: url("/assets/public/index_li_bullet.png") left center no-repeat;
1440
+ padding: 0 0 0 22px;
1441
+ }
1442
+ /* ------------------------------------------- */
1443
+
1444
+
1445
+ /* =callouts
1446
+ ---------------------------------------------- */
1447
+ #article article .callout {
1448
+ background: #e1eaf3;
1449
+ border: 1px solid #d0dbe6;
1450
+ border-right: 1px solid #c3ced9;
1451
+ color: #4f535d;
1452
+ font-size: 12px;
1453
+ padding: 12px;
1454
+ position: absolute;
1455
+ right: -11px;
1456
+ width: 205px;
1457
+ }
1458
+
1459
+ #article article .callout:after {
1460
+ bottom: -6px;
1461
+ content:url('/assets/public/callout_bg.png');
1462
+ height: 8px;
1463
+ position: absolute;
1464
+ right: 0;
1465
+ width: 9px;
1466
+ }
1467
+ /* ------------------------------------------- */
1468
+
1469
+ /* =deprecated
1470
+ ---------------------------------------------- */
1471
+ #article article .deprecated {
1472
+ background: #fff3c5;
1473
+ border: 1px solid #ffe075;
1474
+ -moz-border-radius: 3px;
1475
+ -webkit-border-radius: 3px;
1476
+ border-radius: 3px;
1477
+ color: #937f38;
1478
+ margin: 0 0 22px 0;
1479
+ padding: 12px;
1480
+ }
1481
+
1482
+ #article article .deprecated a:link, #article article .deprecated a:visited {
1483
+ color: #937f38;
1484
+ font-weight: bold;
1485
+ text-decoration: underline;
1486
+ }
1487
+ /* ------------------------------------------- */
1488
+
1489
+ /* =discussion (jive)
1490
+ ---------------------------------------------- */
1491
+ #article article #discussion-jive h1 a:link, #article article #discussion-jive h1 a:visited {
1492
+ background-image: url('/assets/public/jive_discussion_glyph.png'), url('/assets/public/jive_discussion_arrow.png'), -moz-linear-gradient(top, #fff, #efefef);
1493
+ background-image: url('/assets/public/jive_discussion_glyph.png'), url('/assets/public/jive_discussion_arrow.png'), -webkit-gradient(linear, left top, left bottom, from(#fff), to(#efefef));
1494
+ background-image: url('/assets/public/jive_discussion_glyph.png'), url('/assets/public/jive_disccusion_arrow.png'), linear-gradient(top, #fff, #efefef);
1495
+ background-position: left center, right center;
1496
+ background-repeat: no-repeat;
1497
+ border: 1px solid #c0c0c0;
1498
+ -moz-border-radius: 3px;
1499
+ -webkit-border-radius: 3px;
1500
+ border-radius: 3px;
1501
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
1502
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
1503
+ box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
1504
+ display: block;
1505
+ color: #717171;
1506
+ font-size: 18px;
1507
+ font-weight: normal;
1508
+ padding: 10px 38px 10px 55px;
1509
+ }
1510
+
1511
+ #article article #discussion-jive h1 a:hover, #article article #discussion-jive h1 a:active {
1512
+ border: 1px solid #9ac4e4;
1513
+ -moz-box-shadow: 0 0 4px rgba(154, 196, 228, .8);
1514
+ -webkit-box-shadow: 0 0 4px rgba(154, 196, 228, .8);
1515
+ box-shadow: 0 0 4px rgba(154, 196, 228, .8);
1516
+ }
1517
+ /* ------------------------------------------- */
1518
+
1519
+ /* =note
1520
+ ---------------------------------------------- */
1521
+ #article article .note {
1522
+ background: #E1EAF3;
1523
+ border: 1px solid #D0DBE6;
1524
+ -moz-border-radius: 3px;
1525
+ -webkit-border-radius: 3px;
1526
+ border-radius: 3px;
1527
+ color: #4F535D;
1528
+ margin: 0 0 22px 0;
1529
+ padding: 12px;
1530
+ }
1531
+
1532
+ #article article .note a:link, #article article .note a:visited {
1533
+ color: #4F535D;
1534
+ font-weight: bold;
1535
+ text-decoration: underline;
1536
+ }
1537
+ /* ------------------------------------------- */
1538
+
1539
+ /* =feedback
1540
+ ---------------------------------------------- */
1541
+ .feedback {
1542
+ background: #fff;
1543
+ border-top: 1px solid rgba(0, 0, 0, .15);
1544
+ padding: 18px 0 0 0;
1545
+ }
1546
+ .feedback .step1 {
1547
+ margin-bottom: 2px;
1548
+ }
1549
+ .feedback .step1 p {
1550
+ margin-bottom: 0;
1551
+ }
1552
+ .feedback .step2 {
1553
+ display: none;
1554
+ }
1555
+ .feedback .step2 .email {
1556
+ display: none;
1557
+ }
1558
+ .feedback .step3 {
1559
+ display: none;
1560
+ margin-bottom: 18px;
1561
+ }
1562
+ .feedback .step2 textarea {
1563
+ border: 1px solid #aeb3b8;
1564
+ -moz-border-radius: 3px;
1565
+ -webkit-border-radius: 3px;
1566
+ border-radius: 3px;
1567
+ -moz-box-shadow: 0 1px 1px rgba(255, 255, 255, .66), 0 1px 4px rgba(0, 0, 0, .1) inset;
1568
+ -webkit-box-shadow: 0 1px 1px rgba(255, 255, 255, .66), 0 1px 4px rgba(0, 0, 0, .1) inset;
1569
+ box-shadow: 0 1px 1px rgba(255, 255, 255, .66), 0 1px 4px rgba(0, 0, 0, .1) inset;
1570
+ display: block;
1571
+ height: 42px;
1572
+ margin: 12px 0;
1573
+ outline: none;
1574
+ overflow: hidden;
1575
+ width: 465px;
1576
+ }
1577
+ .feedback .step2 textarea:focus {
1578
+ border: 1px solid #74a9de;
1579
+ -moz-box-shadow: 0 0 4px rgba(111, 177, 243, .5), 0 1px 4px rgba(0, 0, 0, .1) inset;
1580
+ -webkit-box-shadow: 0 0 4px rgba(111, 177, 243, .5), 0 1px 4px rgba(0, 0, 0, .1) inset;
1581
+ box-shadow: 0 0 4px rgba(111, 177, 243, .5), 0 1px 4px rgba(0, 0, 0, .1) inset;
1582
+ }
1583
+ .feedback .step2 label {
1584
+ line-height: 20px;
1585
+ }
1586
+ .feedback .step2 .record-warning {
1587
+ display: inline-block;
1588
+ padding-top: 2px;
1589
+ }
1590
+ .feedback .step2 input {
1591
+ float:right;
1592
+ margin: 0;
1593
+ padding: 10px;
1594
+ }
1595
+
1596
+ /* ------------------------------------------- */
1597
+
1598
+ /* =warning
1599
+ ---------------------------------------------- */
1600
+ .warning {
1601
+ background: #fff3c5;
1602
+ border: 1px solid #ffe075;
1603
+ -moz-border-radius: 3px;
1604
+ -webkit-border-radius: 3px;
1605
+ border-radius: 3px;
1606
+ color: #937f38;
1607
+ line-height: 20px;
1608
+ margin: 0 0 22px 0;
1609
+ padding: 12px;
1610
+ }
1611
+
1612
+ #main .warning a:link, .warning a:visited {
1613
+ color: #937f38;
1614
+ font-weight: bold;
1615
+ text-decoration: underline;
1616
+ }
1617
+ /* ------------------------------------------- */
1618
+
1619
+ /* =success
1620
+ ---------------------------------------------- */
1621
+ .success {
1622
+ background: #D1FFC5;
1623
+ border: 1px solid #70FD53;
1624
+ -moz-border-radius: 3px;
1625
+ -webkit-border-radius: 3px;
1626
+ border-radius: 3px;
1627
+ color: #4E9338;
1628
+ line-height: 20px;
1629
+ margin: 0 0 22px 0;
1630
+ padding: 12px;
1631
+ }
1632
+
1633
+ .success a:link {
1634
+ color: #4E9338;
1635
+ font-weight: bold;
1636
+ text-decoration: underline;
1637
+ }
1638
+
1639
+ .success::before {
1640
+ content: '\2714';
1641
+ display: inline-block;
1642
+ font-family: 'hk';
1643
+ font-size: 1.2em;
1644
+ font-weight: bold;
1645
+ margin: 0px .4em 0 0;
1646
+ vertical-align: middle;
1647
+ }
1648
+ /* ------------------------------------------- */
1649
+
1650
+ /* ------------------------------------------- */
1651
+
1652
+ /* =pagination
1653
+ ---------------------------------------------- */
1654
+
1655
+ #main #pagination {
1656
+ margin: 18px 0 0 0;
1657
+ }
1658
+
1659
+ #main #pagination #next {
1660
+ float: right;
1661
+ }
1662
+
1663
+ /* ------------------------------------------- */
1664
+
1665
+ #article blockquote {
1666
+ font-family: georgia;
1667
+ font-size: 1.1em;
1668
+ font-style: italic;
1669
+ line-height: 1.75em;
1670
+ margin: 1em 0;
1671
+ padding: 0 1em;
1672
+ color: #888;
1673
+ border-left: 2px solid #888;
1674
+ }
1675
+ /* ------------------------------------------- */
1676
+
1677
+ /* =tag
1678
+ ---------------------------------------------- */
1679
+ #tag #page hgroup h1 {
1680
+ background: url('/assets/public/tag-icon-large.png') left center no-repeat;
1681
+ -webkit-font-smoothing: antialiased;
1682
+ font-weight: bold;
1683
+ line-height: 32px;
1684
+ padding: 0 0 0 40px;
1685
+ }
1686
+ /* ------------------------------------------- */
1687
+
1688
+ /* =category
1689
+ ---------------------------------------------- */
1690
+ #category #page {
1691
+ padding: 0;
1692
+ }
1693
+
1694
+ #category #page hgroup {
1695
+ background: -moz-linear-gradient(top, #f2f2f2, #e2e2e2);
1696
+ background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#e2e2e2));
1697
+ background: linear-gradient(top, #f2f2f2, #e2e2e2);
1698
+ border-bottom: 1px solid rgba(172, 179, 183, .5);
1699
+ -webkit-border-top-left-radius: 5px;
1700
+ -webkit-border-top-right-radius: 5px;
1701
+ -moz-border-radius-topleft: 5px;
1702
+ -moz-border-radius-topright: 5px;
1703
+ border-top-left-radius: 5px;
1704
+ border-top-right-radius: 5px;
1705
+ -moz-box-shadow: 0 1px 1px #fff inset;
1706
+ -webkit-box-shadow: 0 1px 1px #fff inset;
1707
+ box-shadow: 0 1px 1px #fff inset;
1708
+ margin: 0;
1709
+ padding: 24px 18px;
1710
+ }
1711
+
1712
+ #category #page hgroup h1 {
1713
+ color: #464951;
1714
+ font-weight: bold;
1715
+ text-shadow: 0 1px 1px #fff;
1716
+ }
1717
+
1718
+ #category #page .padder {
1719
+ padding: 18px;
1720
+ }
1721
+ /* ------------------------------------------- */
1722
+
1723
+ /* = time-based-listing
1724
+ ---------------------------------------------- */
1725
+ .time-based-listing .page {
1726
+ margin-bottom: 20px !important;
1727
+ }
1728
+
1729
+ .time-based-listing .subscribe {
1730
+ float: right;
1731
+ }
1732
+
1733
+ .time-based-listing .subscribe a.twitter {
1734
+ background: url(/assets/public/feed-icon-sprite.png) -25px -50px no-repeat;
1735
+ border-right: 1px solid rgba(229, 229, 229, 1);
1736
+ -webkit-box-shadow: 1px 0 0 rgba(255, 255, 255, 1);
1737
+ -moz-box-shadow: 1px 0 0 rgba(255, 255, 255, 1);
1738
+ box-shadow: 1px 0 0 rgba(255, 255, 255, 1);
1739
+ display: inline-block;
1740
+ padding-right: 15px;
1741
+ margin-right: 8px;
1742
+ margin-bottom: -6px;
1743
+ height: 24px;
1744
+ width: 25px;
1745
+ }
1746
+
1747
+ .time-based-listing .subscribe a.twitter:hover {
1748
+ background: url(/assets/public/feed-icon-sprite.png) -25px -75px no-repeat;
1749
+ }
1750
+
1751
+ .time-based-listing .subscribe .feed {
1752
+ background: url(/assets/public/feed-icon-sprite.png) 0px -50px;
1753
+ display: inline-block;
1754
+ margin-bottom: -6px;
1755
+ height: 24px;
1756
+ width: 21px;
1757
+ }
1758
+
1759
+ .time-based-listing .subscribe .feed:hover {
1760
+ background: url(/assets/public/feed-icon-sprite.png) 0px -75px no-repeat;
1761
+ }
1762
+
1763
+ .time-based-listing h2 {
1764
+ border-bottom: 1px solid #EFEFEF;
1765
+ color: #BBB;
1766
+ font-size: 14px;
1767
+ font-weight: normal;
1768
+ margin: 0 0 12px 0;
1769
+ padding: 0 0 4px 0;
1770
+ }
1771
+ /* ------------------------------------------- */
1772
+
1773
+
1774
+ /* = changelog-item
1775
+ ---------------------------------------------- */
1776
+ .changelog-item h1{
1777
+ font-size: 18px !important;
1778
+ line-height: 20px !important;
1779
+ padding: 0 0 0 40px;
1780
+ }
1781
+
1782
+ .changelog-item a.parent {
1783
+ display: block;
1784
+ font-size: 11px;
1785
+ line-height: 12px;
1786
+ margin: 0;
1787
+ padding: 0;
1788
+ }
1789
+
1790
+ /* ------------------------------------------- */
1791
+
1792
+ div.multiplecode hr {
1793
+ display: none;
1794
+ }
1795
+
1796
+ p.no-results { display: none; }
1797
+ #article-results ul.results, #community-results ul.results { display: none; }
1798
+ #article-results ul{ margin-bottom: 0; }
1799
+ #admin-tabs {
1800
+ height: 5px;
1801
+ right: 10px;
1802
+ top: -18px;
1803
+ width: 100%;
1804
+ position: relative;
1805
+ }
1806
+ #admin-tabs a {
1807
+ color: white;
1808
+ display: block;
1809
+ float: right;
1810
+ margin-left: 5px;
1811
+ padding: 5px 15px;
1812
+ background-color: #767493;
1813
+ -webkit-border-top-left-radius: 5px;
1814
+ -webkit-border-top-right-radius: 5px;
1815
+ -moz-border-radius-topleft: 5px;
1816
+ -moz-border-radius-topright: 5px;
1817
+ border-top-left-radius: 5px;
1818
+ border-top-right-radius: 5px;
1819
+ }
1820
+ .padder, #page{
1821
+ position: relative;
1822
+ }
1823
+ ins.differ {
1824
+ background-color: #cfc !important;
1825
+ text-decoration: none;
1826
+ }
1827
+ del.differ, del.differ * {
1828
+ background-color: #fcc !important;
1829
+ }
1830
+
1831
+ .languagebar {
1832
+ -moz-border-radius: 3px 3px 0 0;
1833
+ -webkit-border-radius: 3px 3px 0 0;
1834
+ background-color: #333;
1835
+ border-bottom: 1px solid #292929;
1836
+ text-align: right;
1837
+ }
1838
+ .languagebar a {
1839
+ color: #777;
1840
+ padding: 2px 3px 2px 5px;
1841
+ }
1842
+ .languagebar a:hover, .languagebar a.current {
1843
+ color: #ddd;
1844
+ }
1845
+ .languagebar ul {
1846
+ margin: 0;
1847
+ padding: 3px 5px 2px 0;
1848
+ list-style-type: none;
1849
+ }
1850
+ .languagebar li {
1851
+ display: inline;
1852
+ }
1853
+ /*
1854
+ title: media css
1855
+ author: maximilian schoening (@mschoening)
1856
+ */
1857
+
1858
+ /* =narrow
1859
+ ---------------------------------------------- */
1860
+
1861
+ @media only screen and (max-width: 983px) {
1862
+
1863
+ html {
1864
+ -webkit-text-size-adjust: none;
1865
+ }
1866
+
1867
+ .wrapper {
1868
+ width: 734px;
1869
+ }
1870
+
1871
+ /* =layout
1872
+ /* ------------------------------------------- */
1873
+ #main {
1874
+ width: 506px;
1875
+ }
1876
+ /* ------------------------------------------- */
1877
+
1878
+ /* =article
1879
+ /* ------------------------------------------- */
1880
+ /* =article
1881
+ ---------------------------------------------- */
1882
+ #article article {
1883
+ padding: 18px;
1884
+ }
1885
+
1886
+ /* =callouts
1887
+ ---------------------------------------------- */
1888
+ #article article .callout {
1889
+ border: 1px solid #d0dbe6;
1890
+ margin: 0 0 22px 0;
1891
+ position: static;
1892
+ width: 444px;
1893
+ }
1894
+
1895
+ #article article .callout:after {
1896
+ display: none;
1897
+ }
1898
+ /* ------------------------------------------- */
1899
+ /* ------------------------------------------- */
1900
+ /* ------------------------------------------- */
1901
+
1902
+ /* =feedback
1903
+ /* ------------------------------------------- */
1904
+ .feedback .step2 input {
1905
+ float:none;
1906
+ }
1907
+ /* ------------------------------------------- */
1908
+
1909
+ /* =home-page
1910
+ /* ------------------------------------------- */
1911
+ /* =intro
1912
+ /* ------------------------------------------- */
1913
+ #home-page #intro > h2 {
1914
+ width: 720px;
1915
+ }
1916
+
1917
+ #home-page #intro #cycle .pane {
1918
+ width: 734px;
1919
+ }
1920
+
1921
+ #home-page #intro #cycle .pane .content .description {
1922
+ width: 303px;
1923
+ }
1924
+
1925
+ #home-page #intro #cycle .pane .content .description h1 {
1926
+ font-size: 18px;
1927
+ }
1928
+
1929
+ #home-page #intro #cycle .pane .content .description p {
1930
+ font-size: 12px;
1931
+ }
1932
+
1933
+ #home-page #intro #cycle .pane .content .image {
1934
+ width: 303px;
1935
+ }
1936
+
1937
+ #home-page #intro #cycle .pane .content .image img {
1938
+ max-height: 152px;
1939
+ max-width: 303px;
1940
+ }
1941
+ /* ------------------------------------------- */
1942
+ /* ------------------------------------------- */
1943
+ }
1944
+ /* ------------------------------------------- */
1945
+
1946
+ /* =skinny
1947
+ ---------------------------------------------- */
1948
+ @media only screen and (max-width: 757px) {
1949
+ .wrapper {
1950
+ width: 506px;
1951
+ }
1952
+
1953
+ /* =layout
1954
+ ---------------------------------------------- */
1955
+ /* =sheet
1956
+ ---------------------------------------------- */
1957
+ /* =sidebar
1958
+ ---------------------------------------------- */
1959
+ #sidebar {
1960
+ float: none;
1961
+ margin: 0;
1962
+ width: 506px;
1963
+ }
1964
+
1965
+ /* =search
1966
+ ---------------------------------------------- */
1967
+ #search form p input[type='text'] {
1968
+ width: 462px;
1969
+ }
1970
+
1971
+ #search form p input[type='text']:focus:valid {
1972
+ width: 441px;
1973
+ }
1974
+ /* ------------------------------------------- */
1975
+
1976
+ /* =quicknav
1977
+ ---------------------------------------------- */
1978
+ #quicknav {
1979
+ background: transparent;
1980
+ border: 1px solid #aeb3b8;
1981
+ display: block;
1982
+ font-size: 16px;
1983
+ margin: 0 0 18px 0;
1984
+ width: 100%;
1985
+ }
1986
+ /* ------------------------------------------- */
1987
+
1988
+ /* =nav
1989
+ ---------------------------------------------- */
1990
+ #nav {
1991
+ display: none;
1992
+ }
1993
+ /* ------------------------------------------- */
1994
+ /* ------------------------------------------- */
1995
+
1996
+ /* =main
1997
+ ---------------------------------------------- */
1998
+ #main {
1999
+ float: none;
2000
+ }
2001
+ /* ------------------------------------------- */
2002
+ /* ------------------------------------------- */
2003
+ /* ------------------------------------------- */
2004
+
2005
+ /* =home-page
2006
+ ---------------------------------------------- */
2007
+ /* =intro
2008
+ ---------------------------------------------- */
2009
+ #home-page #intro > h2 {
2010
+ width: 492px;
2011
+ }
2012
+
2013
+ #home-page #intro #cycle .pane {
2014
+ width: 506px;
2015
+ }
2016
+
2017
+ #home-page #intro #cycle .pane .content .description {
2018
+ width: 506px;
2019
+ }
2020
+
2021
+ #home-page #intro #cycle .pane .content .description h1 {
2022
+ font-size: 18px;
2023
+ }
2024
+
2025
+ #home-page #intro #cycle .pane .content .description p {
2026
+ font-size: 12px;
2027
+ }
2028
+
2029
+ #home-page #intro #cycle .pane .content .image {
2030
+ display: none;
2031
+ }
2032
+
2033
+ #home-page #intro #cycle .pane .content .image img {
2034
+ max-height: 152px;
2035
+ max-width: 303px;
2036
+ }
2037
+ /* ------------------------------------------- */
2038
+ /* ------------------------------------------- */
2039
+ }
2040
+ /* ------------------------------------------- */
2041
+ /*
2042
+ title: header css
2043
+ author: maximilian schoening (@mschoening)
2044
+ */
2045
+
2046
+ /* =heroku header
2047
+ ---------------------------------------------- */
2048
+ #heroku-header {
2049
+ background: #3b4458;
2050
+ border-bottom: 4px solid #5d6c90;
2051
+ }
2052
+
2053
+ #heroku-header #heroku-header-hgroup h1 a:link, #heroku-header #heroku-header-hgroup h1 a:visited {
2054
+ background: url('/assets/public/heroku-header-logo.png') no-repeat;
2055
+ }
2056
+
2057
+ #heroku-header #heroku-header-nav ul.group {
2058
+ background: rgba(46, 54, 70, .5);
2059
+ }
2060
+
2061
+ #heroku-header #heroku-header-nav ul li {
2062
+ border-right: 2px solid rgba(46, 54, 70, .9);
2063
+ }
2064
+
2065
+ #heroku-header #heroku-header-nav ul li.last {
2066
+ border: none;
2067
+ }
2068
+
2069
+ #heroku-header #heroku-header-nav ul li a:link, #heroku-header #heroku-header-nav ul li a:visited {
2070
+ color: #9daac5;
2071
+ }
2072
+
2073
+ #heroku-header #heroku-header-nav ul li a:hover, #heroku-header #heroku-header-nav ul li a:active {
2074
+ color: #fff;
2075
+ }
2076
+
2077
+ #heroku-header #heroku-header-nav #heroku-header-aid li a:link, #heroku-header #heroku-header-nav #heroku-header-aid li a:visited {
2078
+ color: #92badb;
2079
+ }
2080
+
2081
+ #heroku-header #heroku-header-nav #heroku-header-aid li a:hover, #heroku-header #heroku-header-nav #heroku-header-aid li a:active {
2082
+ color: #74d0f4;
2083
+ }
2084
+
2085
+ #heroku-header #heroku-header-nav #heroku-header-my-heroku li a:link, #heroku-header #heroku-header-nav #heroku-header-my-heroku li a:visited {
2086
+ color: #92badb;
2087
+ }
2088
+
2089
+ #heroku-header #heroku-header-nav #heroku-header-my-heroku li a:hover, #heroku-header #heroku-header-nav #heroku-header-my-heroku li a:active {
2090
+ color: #74d0f4;
2091
+ }
2092
+
2093
+ #heroku-header #heroku-header-nav ul li.active a:link, #heroku-header #heroku-header-nav ul li.active a:visited {
2094
+ color: #bff740 !important;
2095
+ }
2096
+
2097
+ @media only screen and (max-width: 1020px) {
2098
+ #heroku-header #heroku-header-nav ul li {
2099
+ border: none;
2100
+ }
2101
+ }
2102
+
2103
+ @media only screen and (max-width: 600px) {
2104
+ #heroku-header {
2105
+ border-bottom: 3px solid #5d6c90;
2106
+ }
2107
+
2108
+ #heroku-header #heroku-header-quicknav {
2109
+ background: url('/assets/public/heroku-header-logo-mobile.png') no-repeat left center;
2110
+ }
2111
+ }
2112
+ /* ------------------------------------------- */
2113
+ /**
2114
+ * public.css
2115
+ *
2116
+
2117
+
2118
+
2119
+
2120
+
2121
+
2122
+
2123
+ */
2124
+
2125
+ @import url('https://statics.herokuapp.com/fonts/fonts.css');