rdoc-generator-sixfish 0.5.0.pre20180710102525
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +1 -0
- data.tar.gz.sig +3 -0
- data/.editorconfig +16 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/ChangeLog +675 -0
- data/History.md +39 -0
- data/Manifest.txt +29 -0
- data/README.md +78 -0
- data/data/rdoc-generator-sixfish/css/sixfish.css +1184 -0
- data/data/rdoc-generator-sixfish/css/sixfish.css.map +7 -0
- data/data/rdoc-generator-sixfish/fa/light.js +0 -0
- data/data/rdoc-generator-sixfish/fa/light.svg +0 -0
- data/data/rdoc-generator-sixfish/fa/loader.js +1 -0
- data/data/rdoc-generator-sixfish/fa/regular.js +1 -0
- data/data/rdoc-generator-sixfish/fa/regular.svg +662 -0
- data/data/rdoc-generator-sixfish/fa/solid.js +1 -0
- data/data/rdoc-generator-sixfish/fa/solid.svg +662 -0
- data/data/rdoc-generator-sixfish/images/glyphicons-28-search.png +0 -0
- data/data/rdoc-generator-sixfish/js/jquery-3.1.1.js +10220 -0
- data/data/rdoc-generator-sixfish/js/sixfish.min.js +99 -0
- data/data/rdoc-generator-sixfish/templates/class.tmpl +212 -0
- data/data/rdoc-generator-sixfish/templates/file.tmpl +20 -0
- data/data/rdoc-generator-sixfish/templates/index.tmpl +54 -0
- data/data/rdoc-generator-sixfish/templates/layout.tmpl +77 -0
- data/lib/rdoc/discover.rb +7 -0
- data/lib/rdoc/generator/sixfish.rb +401 -0
- data/lib/sixfish.rb +30 -0
- data/spec/helpers.rb +45 -0
- data/spec/rdoc/generator/sixfish_spec.rb +250 -0
- data/spec/sixfish_spec.rb +23 -0
- metadata +265 -0
- metadata.gz.sig +0 -0
data/History.md
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
== v0.4.0 [2018-03-13] Michael Granger <ged@FaerieMUD.org>
|
2
|
+
|
3
|
+
Enhancements:
|
4
|
+
|
5
|
+
- Bump RDoc dependency to 6.0.
|
6
|
+
- Use TTF fonts instead of converting them to WOFF.
|
7
|
+
|
8
|
+
|
9
|
+
== v0.3.0 [2017-01-22] Michael Granger <ged@FaerieMUD.org>
|
10
|
+
|
11
|
+
- Bump dependency on RDoc to 5.0.
|
12
|
+
|
13
|
+
|
14
|
+
== v0.2.1 [2017-01-17] Michael Granger <ged@FaerieMUD.org>
|
15
|
+
|
16
|
+
- Oops, didn't mean to depend on RDoc 5 quite yet.
|
17
|
+
|
18
|
+
|
19
|
+
== v0.2.0 [2017-01-17] Michael Granger <ged@FaerieMUD.org>
|
20
|
+
|
21
|
+
- Bump Inversion and Loggabilty dep
|
22
|
+
- Update for Ruby >2.2, newer RSpec.
|
23
|
+
|
24
|
+
|
25
|
+
== v0.1.0 [2013-02-27] Michael Granger <ged@FaerieMUD.org>
|
26
|
+
|
27
|
+
- Add some CSS and module-index visual tweaks
|
28
|
+
- Make the synopsis-extraction more intelligent
|
29
|
+
- Add support for module extension
|
30
|
+
- Add Ruby 2.0 support
|
31
|
+
- Add an --additional-stylesheet option
|
32
|
+
- Make the anchor and top links in titles less obnoxious
|
33
|
+
- Update for RDoc 4
|
34
|
+
|
35
|
+
|
36
|
+
== v0.0.1 [2012-09-12] Michael Granger <ged@FaerieMUD.org>
|
37
|
+
|
38
|
+
Initial release.
|
39
|
+
|
data/Manifest.txt
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
.editorconfig
|
2
|
+
.ruby-gemset
|
3
|
+
.ruby-version
|
4
|
+
ChangeLog
|
5
|
+
History.md
|
6
|
+
Manifest.txt
|
7
|
+
README.md
|
8
|
+
data/rdoc-generator-sixfish/css/sixfish.css
|
9
|
+
data/rdoc-generator-sixfish/css/sixfish.css.map
|
10
|
+
data/rdoc-generator-sixfish/fa/light.js
|
11
|
+
data/rdoc-generator-sixfish/fa/light.svg
|
12
|
+
data/rdoc-generator-sixfish/fa/loader.js
|
13
|
+
data/rdoc-generator-sixfish/fa/regular.js
|
14
|
+
data/rdoc-generator-sixfish/fa/regular.svg
|
15
|
+
data/rdoc-generator-sixfish/fa/solid.js
|
16
|
+
data/rdoc-generator-sixfish/fa/solid.svg
|
17
|
+
data/rdoc-generator-sixfish/images/glyphicons-28-search.png
|
18
|
+
data/rdoc-generator-sixfish/js/jquery-3.1.1.js
|
19
|
+
data/rdoc-generator-sixfish/js/sixfish.min.js
|
20
|
+
data/rdoc-generator-sixfish/templates/class.tmpl
|
21
|
+
data/rdoc-generator-sixfish/templates/file.tmpl
|
22
|
+
data/rdoc-generator-sixfish/templates/index.tmpl
|
23
|
+
data/rdoc-generator-sixfish/templates/layout.tmpl
|
24
|
+
lib/rdoc/discover.rb
|
25
|
+
lib/rdoc/generator/sixfish.rb
|
26
|
+
lib/sixfish.rb
|
27
|
+
spec/helpers.rb
|
28
|
+
spec/rdoc/generator/sixfish_spec.rb
|
29
|
+
spec/sixfish_spec.rb
|
data/README.md
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
# Sixfish RDoc
|
2
|
+
|
3
|
+
* http://deveiate.org/sixfish.html
|
4
|
+
|
5
|
+
|
6
|
+
## Description
|
7
|
+
|
8
|
+
A(nother) HTML(5) generator for RDoc.
|
9
|
+
|
10
|
+
It uses the {Skeleton Responsive CSS Boilerplate}[http://getskeleton.com/] for
|
11
|
+
the layout stuff, doesn't take up valuable horizontal real estate space with
|
12
|
+
indexes and stuff, and has a QuickSilver-like incremental searching.
|
13
|
+
|
14
|
+
|
15
|
+
## Installation
|
16
|
+
|
17
|
+
gem install rdoc-generator-sixfish
|
18
|
+
|
19
|
+
|
20
|
+
## Usage
|
21
|
+
|
22
|
+
rdoc --format=sixfish
|
23
|
+
|
24
|
+
|
25
|
+
## Contributing
|
26
|
+
|
27
|
+
You can check out the current development source {with
|
28
|
+
Mercurial}[http://bitbucket.org/ged/sixfish], or if you prefer Git, via the
|
29
|
+
project's {Github mirror}[https://github.com/ged/Sixfish-RDoc].
|
30
|
+
|
31
|
+
After checking out the source, run:
|
32
|
+
|
33
|
+
$ rake newb
|
34
|
+
|
35
|
+
This task will install any missing dependencies, run the tests/specs,
|
36
|
+
and generate the API documentation.
|
37
|
+
|
38
|
+
|
39
|
+
## License
|
40
|
+
|
41
|
+
Copyright © 2015-2016, Michael Granger
|
42
|
+
All rights reserved.
|
43
|
+
|
44
|
+
Redistribution and use in source and binary forms, with or without
|
45
|
+
modification, are permitted provided that the following conditions are met:
|
46
|
+
|
47
|
+
* Redistributions of source code must retain the above copyright notice,
|
48
|
+
this list of conditions and the following disclaimer.
|
49
|
+
|
50
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
51
|
+
this list of conditions and the following disclaimer in the documentation
|
52
|
+
and/or other materials provided with the distribution.
|
53
|
+
|
54
|
+
* Neither the name of the author/s, nor the names of the project's
|
55
|
+
contributors may be used to endorse or promote products derived from this
|
56
|
+
software without specific prior written permission.
|
57
|
+
|
58
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
59
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
60
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
61
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
62
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
63
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
64
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
65
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
66
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
67
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
68
|
+
|
69
|
+
Sixfish uses the Skeleton Responsive CSS Boilerplate, which is used under the
|
70
|
+
following license terms:
|
71
|
+
|
72
|
+
Skeleton V2.0.4
|
73
|
+
Copyright 2014, Dave Gamache
|
74
|
+
www.getskeleton.com
|
75
|
+
Free to use under the MIT license.
|
76
|
+
http://www.opensource.org/licenses/mit-license.php
|
77
|
+
12/29/2014
|
78
|
+
|
@@ -0,0 +1,1184 @@
|
|
1
|
+
/**
|
2
|
+
* Sixfish CSS
|
3
|
+
* $Id$
|
4
|
+
*
|
5
|
+
* Copyright (c) 2015 by the authors
|
6
|
+
*
|
7
|
+
* Authors:
|
8
|
+
* - Michael Granger <ged@FaerieMUD.org>
|
9
|
+
*/
|
10
|
+
/* Colors */
|
11
|
+
/* Typography */
|
12
|
+
/* Grid Variables */
|
13
|
+
/* Misc */
|
14
|
+
/*
|
15
|
+
* qTip2 - Pretty powerful tooltips - v2.2.1
|
16
|
+
* http://qtip2.com
|
17
|
+
*
|
18
|
+
* Copyright (c) 2014
|
19
|
+
* Released under the MIT licenses
|
20
|
+
* http://jquery.org/license
|
21
|
+
*
|
22
|
+
* Date: Sat Sep 6 2014 09:55 EDT-0400
|
23
|
+
* Plugins: tips viewport
|
24
|
+
* Styles: core basic css3
|
25
|
+
*/
|
26
|
+
.qtip {
|
27
|
+
position: absolute;
|
28
|
+
left: -28000px;
|
29
|
+
top: -28000px;
|
30
|
+
display: none;
|
31
|
+
max-width: 280px;
|
32
|
+
min-width: 50px;
|
33
|
+
font-size: 10.5px;
|
34
|
+
line-height: 12px;
|
35
|
+
direction: ltr;
|
36
|
+
box-shadow: none;
|
37
|
+
padding: 0; }
|
38
|
+
|
39
|
+
.qtip-content {
|
40
|
+
position: relative;
|
41
|
+
padding: 5px 9px;
|
42
|
+
overflow: hidden;
|
43
|
+
text-align: left;
|
44
|
+
word-wrap: break-word; }
|
45
|
+
|
46
|
+
.qtip-titlebar {
|
47
|
+
position: relative;
|
48
|
+
padding: 5px 35px 5px 10px;
|
49
|
+
overflow: hidden;
|
50
|
+
border-width: 0 0 1px;
|
51
|
+
font-weight: bold; }
|
52
|
+
|
53
|
+
.qtip-titlebar + .qtip-content {
|
54
|
+
border-top-width: 0 !important; }
|
55
|
+
|
56
|
+
/* Default close button class */
|
57
|
+
.qtip-close {
|
58
|
+
position: absolute;
|
59
|
+
right: -9px;
|
60
|
+
top: -9px;
|
61
|
+
z-index: 11;
|
62
|
+
/* Overlap .qtip-tip */
|
63
|
+
cursor: pointer;
|
64
|
+
outline: medium none;
|
65
|
+
border: 1px solid transparent; }
|
66
|
+
|
67
|
+
.qtip-titlebar .qtip-close {
|
68
|
+
right: 4px;
|
69
|
+
top: 50%;
|
70
|
+
margin-top: -9px; }
|
71
|
+
|
72
|
+
* html .qtip-titlebar .qtip-close {
|
73
|
+
top: 16px; }
|
74
|
+
|
75
|
+
/* IE fix */
|
76
|
+
.qtip-titlebar .ui-icon, .qtip-icon .ui-icon {
|
77
|
+
display: block;
|
78
|
+
text-indent: -1000em;
|
79
|
+
direction: ltr; }
|
80
|
+
|
81
|
+
.qtip-icon, .qtip-icon .ui-icon {
|
82
|
+
-moz-border-radius: 3px;
|
83
|
+
-webkit-border-radius: 3px;
|
84
|
+
border-radius: 3px;
|
85
|
+
text-decoration: none; }
|
86
|
+
|
87
|
+
.qtip-icon .ui-icon {
|
88
|
+
width: 18px;
|
89
|
+
height: 14px;
|
90
|
+
line-height: 14px;
|
91
|
+
text-align: center;
|
92
|
+
text-indent: 0;
|
93
|
+
font: normal bold 10px/13px Tahoma,sans-serif;
|
94
|
+
color: inherit;
|
95
|
+
background: transparent none no-repeat -100em -100em; }
|
96
|
+
|
97
|
+
/* Applied to 'focused' tooltips e.g. most recently displayed/interacted with */
|
98
|
+
/* Applied on hover of tooltips i.e. added/removed on mouseenter/mouseleave respectively */
|
99
|
+
/* Default tooltip style */
|
100
|
+
.qtip-default {
|
101
|
+
border: 1px solid #F1D031;
|
102
|
+
background-color: #FFFFA3;
|
103
|
+
color: #555; }
|
104
|
+
|
105
|
+
.qtip-default .qtip-titlebar {
|
106
|
+
background-color: #FFEF93; }
|
107
|
+
|
108
|
+
.qtip-default .qtip-icon {
|
109
|
+
border-color: #CCC;
|
110
|
+
background: #F1F1F1;
|
111
|
+
color: #777; }
|
112
|
+
|
113
|
+
.qtip-default .qtip-titlebar .qtip-close {
|
114
|
+
border-color: #AAA;
|
115
|
+
color: #111; }
|
116
|
+
|
117
|
+
/*! Light tooltip style */
|
118
|
+
.qtip-light {
|
119
|
+
background-color: white;
|
120
|
+
border-color: #E2E2E2;
|
121
|
+
color: #454545; }
|
122
|
+
|
123
|
+
.qtip-light .qtip-titlebar {
|
124
|
+
background-color: #f1f1f1; }
|
125
|
+
|
126
|
+
/*! Dark tooltip style */
|
127
|
+
.qtip-dark {
|
128
|
+
background-color: #505050;
|
129
|
+
border-color: #303030;
|
130
|
+
color: #f3f3f3; }
|
131
|
+
|
132
|
+
.qtip-dark .qtip-titlebar {
|
133
|
+
background-color: #404040; }
|
134
|
+
|
135
|
+
.qtip-dark .qtip-icon {
|
136
|
+
border-color: #444; }
|
137
|
+
|
138
|
+
.qtip-dark .qtip-titlebar .ui-state-hover {
|
139
|
+
border-color: #303030; }
|
140
|
+
|
141
|
+
/*! Cream tooltip style */
|
142
|
+
.qtip-cream {
|
143
|
+
background-color: #FBF7AA;
|
144
|
+
border-color: #F9E98E;
|
145
|
+
color: #A27D35; }
|
146
|
+
|
147
|
+
.qtip-cream .qtip-titlebar {
|
148
|
+
background-color: #F0DE7D; }
|
149
|
+
|
150
|
+
.qtip-cream .qtip-close .qtip-icon {
|
151
|
+
background-position: -82px 0; }
|
152
|
+
|
153
|
+
/*! Red tooltip style */
|
154
|
+
.qtip-red {
|
155
|
+
background-color: #F78B83;
|
156
|
+
border-color: #D95252;
|
157
|
+
color: #912323; }
|
158
|
+
|
159
|
+
.qtip-red .qtip-titlebar {
|
160
|
+
background-color: #F06D65; }
|
161
|
+
|
162
|
+
.qtip-red .qtip-close .qtip-icon {
|
163
|
+
background-position: -102px 0; }
|
164
|
+
|
165
|
+
.qtip-red .qtip-icon {
|
166
|
+
border-color: #D95252; }
|
167
|
+
|
168
|
+
.qtip-red .qtip-titlebar .ui-state-hover {
|
169
|
+
border-color: #D95252; }
|
170
|
+
|
171
|
+
/*! Green tooltip style */
|
172
|
+
.qtip-green {
|
173
|
+
background-color: #CAED9E;
|
174
|
+
border-color: #90D93F;
|
175
|
+
color: #3F6219; }
|
176
|
+
|
177
|
+
.qtip-green .qtip-titlebar {
|
178
|
+
background-color: #B0DE78; }
|
179
|
+
|
180
|
+
.qtip-green .qtip-close .qtip-icon {
|
181
|
+
background-position: -42px 0; }
|
182
|
+
|
183
|
+
/*! Blue tooltip style */
|
184
|
+
.qtip-blue {
|
185
|
+
background-color: #E5F6FE;
|
186
|
+
border-color: #ADD9ED;
|
187
|
+
color: #5E99BD; }
|
188
|
+
|
189
|
+
.qtip-blue .qtip-titlebar {
|
190
|
+
background-color: #D0E9F5; }
|
191
|
+
|
192
|
+
.qtip-blue .qtip-close .qtip-icon {
|
193
|
+
background-position: -2px 0; }
|
194
|
+
|
195
|
+
.qtip-shadow {
|
196
|
+
-webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
|
197
|
+
-moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
|
198
|
+
box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15); }
|
199
|
+
|
200
|
+
/* Add rounded corners to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
|
201
|
+
.qtip-rounded, .qtip-tipsy, .qtip-bootstrap {
|
202
|
+
-moz-border-radius: 5px;
|
203
|
+
-webkit-border-radius: 5px;
|
204
|
+
border-radius: 5px; }
|
205
|
+
|
206
|
+
.qtip-rounded .qtip-titlebar {
|
207
|
+
-moz-border-radius: 4px 4px 0 0;
|
208
|
+
-webkit-border-radius: 4px 4px 0 0;
|
209
|
+
border-radius: 4px 4px 0 0; }
|
210
|
+
|
211
|
+
/* Youtube tooltip style */
|
212
|
+
.qtip-youtube {
|
213
|
+
-moz-border-radius: 2px;
|
214
|
+
-webkit-border-radius: 2px;
|
215
|
+
border-radius: 2px;
|
216
|
+
-webkit-box-shadow: 0 0 3px #333;
|
217
|
+
-moz-box-shadow: 0 0 3px #333;
|
218
|
+
box-shadow: 0 0 3px #333;
|
219
|
+
color: white;
|
220
|
+
border: 0 solid transparent;
|
221
|
+
background: #4A4A4A;
|
222
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #4A4A4A), color-stop(100%, black));
|
223
|
+
background-image: -webkit-linear-gradient(top, #4A4A4A 0, black 100%);
|
224
|
+
background-image: -moz-linear-gradient(top, #4A4A4A 0, black 100%);
|
225
|
+
background-image: -ms-linear-gradient(top, #4A4A4A 0, black 100%);
|
226
|
+
background-image: -o-linear-gradient(top, #4A4A4A 0, black 100%); }
|
227
|
+
|
228
|
+
.qtip-youtube .qtip-titlebar {
|
229
|
+
background-color: #4A4A4A;
|
230
|
+
background-color: transparent; }
|
231
|
+
|
232
|
+
.qtip-youtube .qtip-content {
|
233
|
+
padding: .75em;
|
234
|
+
font: 12px arial,sans-serif;
|
235
|
+
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);
|
236
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);"; }
|
237
|
+
|
238
|
+
.qtip-youtube .qtip-icon {
|
239
|
+
border-color: #222; }
|
240
|
+
|
241
|
+
.qtip-youtube .qtip-titlebar .ui-state-hover {
|
242
|
+
border-color: #303030; }
|
243
|
+
|
244
|
+
/* jQuery TOOLS Tooltip style */
|
245
|
+
.qtip-jtools {
|
246
|
+
background: #232323;
|
247
|
+
background: rgba(0, 0, 0, 0.7);
|
248
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#717171), to(#232323));
|
249
|
+
background-image: -moz-linear-gradient(top, #717171, #232323);
|
250
|
+
background-image: -webkit-linear-gradient(top, #717171, #232323);
|
251
|
+
background-image: -ms-linear-gradient(top, #717171, #232323);
|
252
|
+
background-image: -o-linear-gradient(top, #717171, #232323);
|
253
|
+
border: 2px solid #ddd;
|
254
|
+
border: 2px solid #f1f1f1;
|
255
|
+
-moz-border-radius: 2px;
|
256
|
+
-webkit-border-radius: 2px;
|
257
|
+
border-radius: 2px;
|
258
|
+
-webkit-box-shadow: 0 0 12px #333;
|
259
|
+
-moz-box-shadow: 0 0 12px #333;
|
260
|
+
box-shadow: 0 0 12px #333; }
|
261
|
+
|
262
|
+
/* IE Specific */
|
263
|
+
.qtip-jtools .qtip-titlebar {
|
264
|
+
background-color: transparent;
|
265
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A);
|
266
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A)"; }
|
267
|
+
|
268
|
+
.qtip-jtools .qtip-content {
|
269
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323);
|
270
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323)"; }
|
271
|
+
|
272
|
+
.qtip-jtools .qtip-titlebar, .qtip-jtools .qtip-content {
|
273
|
+
background: transparent;
|
274
|
+
color: white;
|
275
|
+
border: 0 dashed transparent; }
|
276
|
+
|
277
|
+
.qtip-jtools .qtip-icon {
|
278
|
+
border-color: #555; }
|
279
|
+
|
280
|
+
.qtip-jtools .qtip-titlebar .ui-state-hover {
|
281
|
+
border-color: #333; }
|
282
|
+
|
283
|
+
/* Cluetip style */
|
284
|
+
.qtip-cluetip {
|
285
|
+
-webkit-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
|
286
|
+
-moz-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
|
287
|
+
box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
|
288
|
+
background-color: #D9D9C2;
|
289
|
+
color: #111;
|
290
|
+
border: 0 dashed transparent; }
|
291
|
+
|
292
|
+
.qtip-cluetip .qtip-titlebar {
|
293
|
+
background-color: #87876A;
|
294
|
+
color: white;
|
295
|
+
border: 0 dashed transparent; }
|
296
|
+
|
297
|
+
.qtip-cluetip .qtip-icon {
|
298
|
+
border-color: #808064; }
|
299
|
+
|
300
|
+
.qtip-cluetip .qtip-titlebar .ui-state-hover {
|
301
|
+
border-color: #696952;
|
302
|
+
color: #696952; }
|
303
|
+
|
304
|
+
/* Tipsy style */
|
305
|
+
.qtip-tipsy {
|
306
|
+
background: black;
|
307
|
+
background: rgba(0, 0, 0, 0.87);
|
308
|
+
color: white;
|
309
|
+
border: 0 solid transparent;
|
310
|
+
font-size: 11px;
|
311
|
+
font-family: 'Lucida Grande', sans-serif;
|
312
|
+
font-weight: bold;
|
313
|
+
line-height: 16px;
|
314
|
+
text-shadow: 0 1px black; }
|
315
|
+
|
316
|
+
.qtip-tipsy .qtip-titlebar {
|
317
|
+
padding: 6px 35px 0 10px;
|
318
|
+
background-color: transparent; }
|
319
|
+
|
320
|
+
.qtip-tipsy .qtip-content {
|
321
|
+
padding: 6px 10px; }
|
322
|
+
|
323
|
+
.qtip-tipsy .qtip-icon {
|
324
|
+
border-color: #222;
|
325
|
+
text-shadow: none; }
|
326
|
+
|
327
|
+
.qtip-tipsy .qtip-titlebar .ui-state-hover {
|
328
|
+
border-color: #303030; }
|
329
|
+
|
330
|
+
/* Tipped style */
|
331
|
+
.qtip-tipped {
|
332
|
+
border: 3px solid #959FA9;
|
333
|
+
-moz-border-radius: 3px;
|
334
|
+
-webkit-border-radius: 3px;
|
335
|
+
border-radius: 3px;
|
336
|
+
background-color: #F9F9F9;
|
337
|
+
color: #454545;
|
338
|
+
font-weight: normal;
|
339
|
+
font-family: serif; }
|
340
|
+
|
341
|
+
.qtip-tipped .qtip-titlebar {
|
342
|
+
border-bottom-width: 0;
|
343
|
+
color: white;
|
344
|
+
background: #3A79B8;
|
345
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#3A79B8), to(#2E629D));
|
346
|
+
background-image: -webkit-linear-gradient(top, #3A79B8, #2E629D);
|
347
|
+
background-image: -moz-linear-gradient(top, #3A79B8, #2E629D);
|
348
|
+
background-image: -ms-linear-gradient(top, #3A79B8, #2E629D);
|
349
|
+
background-image: -o-linear-gradient(top, #3A79B8, #2E629D);
|
350
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D);
|
351
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D)"; }
|
352
|
+
|
353
|
+
.qtip-tipped .qtip-icon {
|
354
|
+
border: 2px solid #285589;
|
355
|
+
background: #285589; }
|
356
|
+
|
357
|
+
.qtip-tipped .qtip-icon .ui-icon {
|
358
|
+
background-color: #FBFBFB;
|
359
|
+
color: #555; }
|
360
|
+
|
361
|
+
/**
|
362
|
+
* Twitter Bootstrap style.
|
363
|
+
*
|
364
|
+
* Tested with IE 8, IE 9, Chrome 18, Firefox 9, Opera 11.
|
365
|
+
* Does not work with IE 7.
|
366
|
+
*/
|
367
|
+
.qtip-bootstrap {
|
368
|
+
/** Taken from Bootstrap body */
|
369
|
+
font-size: 14px;
|
370
|
+
line-height: 20px;
|
371
|
+
color: #333333;
|
372
|
+
/** Taken from Bootstrap .popover */
|
373
|
+
padding: 1px;
|
374
|
+
background-color: #ffffff;
|
375
|
+
border: 1px solid #ccc;
|
376
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
377
|
+
-webkit-border-radius: 6px;
|
378
|
+
-moz-border-radius: 6px;
|
379
|
+
border-radius: 6px;
|
380
|
+
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
381
|
+
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
382
|
+
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
383
|
+
-webkit-background-clip: padding-box;
|
384
|
+
-moz-background-clip: padding;
|
385
|
+
background-clip: padding-box; }
|
386
|
+
|
387
|
+
.qtip-bootstrap .qtip-titlebar {
|
388
|
+
/** Taken from Bootstrap .popover-title */
|
389
|
+
padding: 8px 14px;
|
390
|
+
margin: 0;
|
391
|
+
font-size: 14px;
|
392
|
+
font-weight: normal;
|
393
|
+
line-height: 18px;
|
394
|
+
background-color: #f7f7f7;
|
395
|
+
border-bottom: 1px solid #ebebeb;
|
396
|
+
-webkit-border-radius: 5px 5px 0 0;
|
397
|
+
-moz-border-radius: 5px 5px 0 0;
|
398
|
+
border-radius: 5px 5px 0 0; }
|
399
|
+
|
400
|
+
.qtip-bootstrap .qtip-titlebar .qtip-close {
|
401
|
+
/**
|
402
|
+
* Overrides qTip2:
|
403
|
+
* .qtip-titlebar .qtip-close{
|
404
|
+
* [...]
|
405
|
+
* right: 4px;
|
406
|
+
* top: 50%;
|
407
|
+
* [...]
|
408
|
+
* border-style: solid;
|
409
|
+
* }
|
410
|
+
*/
|
411
|
+
right: 11px;
|
412
|
+
top: 45%;
|
413
|
+
border-style: none; }
|
414
|
+
|
415
|
+
.qtip-bootstrap .qtip-content {
|
416
|
+
/** Taken from Bootstrap .popover-content */
|
417
|
+
padding: 9px 14px; }
|
418
|
+
|
419
|
+
.qtip-bootstrap .qtip-icon {
|
420
|
+
/**
|
421
|
+
* Overrides qTip2:
|
422
|
+
* .qtip-default .qtip-icon {
|
423
|
+
* border-color: #CCC;
|
424
|
+
* background: #F1F1F1;
|
425
|
+
* color: #777;
|
426
|
+
* }
|
427
|
+
*/
|
428
|
+
background: transparent; }
|
429
|
+
|
430
|
+
.qtip-bootstrap .qtip-icon .ui-icon {
|
431
|
+
/**
|
432
|
+
* Overrides qTip2:
|
433
|
+
* .qtip-icon .ui-icon{
|
434
|
+
* width: 18px;
|
435
|
+
* height: 14px;
|
436
|
+
* }
|
437
|
+
*/
|
438
|
+
width: auto;
|
439
|
+
height: auto;
|
440
|
+
/* Taken from Bootstrap .close */
|
441
|
+
float: right;
|
442
|
+
font-size: 20px;
|
443
|
+
font-weight: bold;
|
444
|
+
line-height: 18px;
|
445
|
+
color: #000000;
|
446
|
+
text-shadow: 0 1px 0 #ffffff;
|
447
|
+
opacity: 0.2;
|
448
|
+
filter: alpha(opacity=20); }
|
449
|
+
|
450
|
+
.qtip-bootstrap .qtip-icon .ui-icon:hover {
|
451
|
+
/* Taken from Bootstrap .close:hover */
|
452
|
+
color: #000000;
|
453
|
+
text-decoration: none;
|
454
|
+
cursor: pointer;
|
455
|
+
opacity: 0.4;
|
456
|
+
filter: alpha(opacity=40); }
|
457
|
+
|
458
|
+
/* IE9 fix - removes all filters */
|
459
|
+
.qtip:not(.ie9haxors) div.qtip-content, .qtip:not(.ie9haxors) div.qtip-titlebar {
|
460
|
+
filter: none;
|
461
|
+
-ms-filter: none; }
|
462
|
+
|
463
|
+
.qtip .qtip-tip {
|
464
|
+
margin: 0 auto;
|
465
|
+
overflow: hidden;
|
466
|
+
z-index: 10; }
|
467
|
+
|
468
|
+
/* Opera bug #357 - Incorrect tip position
|
469
|
+
https://github.com/Craga89/qTip2/issues/367 */
|
470
|
+
x:-o-prefocus, .qtip .qtip-tip {
|
471
|
+
visibility: hidden; }
|
472
|
+
|
473
|
+
.qtip .qtip-tip, .qtip .qtip-tip .qtip-vml, .qtip .qtip-tip canvas {
|
474
|
+
position: absolute;
|
475
|
+
color: #123456;
|
476
|
+
background: transparent;
|
477
|
+
border: 0 dashed transparent; }
|
478
|
+
|
479
|
+
.qtip .qtip-tip canvas {
|
480
|
+
top: 0;
|
481
|
+
left: 0; }
|
482
|
+
|
483
|
+
.qtip .qtip-tip .qtip-vml {
|
484
|
+
behavior: url(#default#VML);
|
485
|
+
display: inline-block;
|
486
|
+
visibility: visible; }
|
487
|
+
|
488
|
+
/*
|
489
|
+
* Skeleton V2.0.4
|
490
|
+
* Copyright 2014, Dave Gamache
|
491
|
+
* www.getskeleton.com
|
492
|
+
* Free to use under the MIT license.
|
493
|
+
* http://www.opensource.org/licenses/mit-license.php
|
494
|
+
* 12/9/2014
|
495
|
+
* Sass Version by Seth Coelen https://github.com/whatsnewsaes
|
496
|
+
*/
|
497
|
+
/* Base files. */
|
498
|
+
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
499
|
+
html {
|
500
|
+
font-family: sans-serif;
|
501
|
+
-ms-text-size-adjust: 100%;
|
502
|
+
-webkit-text-size-adjust: 100%; }
|
503
|
+
|
504
|
+
body {
|
505
|
+
margin: 0; }
|
506
|
+
|
507
|
+
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
|
508
|
+
display: block; }
|
509
|
+
|
510
|
+
audio, canvas, progress, video {
|
511
|
+
display: inline-block;
|
512
|
+
vertical-align: baseline; }
|
513
|
+
|
514
|
+
audio:not([controls]) {
|
515
|
+
display: none;
|
516
|
+
height: 0; }
|
517
|
+
|
518
|
+
[hidden], template {
|
519
|
+
display: none; }
|
520
|
+
|
521
|
+
a {
|
522
|
+
background-color: transparent; }
|
523
|
+
|
524
|
+
a:active {
|
525
|
+
outline: 0; }
|
526
|
+
a:hover {
|
527
|
+
outline: 0; }
|
528
|
+
|
529
|
+
abbr[title] {
|
530
|
+
border-bottom: 1px dotted; }
|
531
|
+
|
532
|
+
b, strong {
|
533
|
+
font-weight: bold; }
|
534
|
+
|
535
|
+
dfn {
|
536
|
+
font-style: italic; }
|
537
|
+
|
538
|
+
h1 {
|
539
|
+
font-size: 2em;
|
540
|
+
margin: 0.67em 0; }
|
541
|
+
|
542
|
+
mark {
|
543
|
+
background: #ff0;
|
544
|
+
color: #000; }
|
545
|
+
|
546
|
+
small {
|
547
|
+
font-size: 80%; }
|
548
|
+
|
549
|
+
sub, sup {
|
550
|
+
font-size: 75%;
|
551
|
+
line-height: 0;
|
552
|
+
position: relative;
|
553
|
+
vertical-align: baseline; }
|
554
|
+
|
555
|
+
sup {
|
556
|
+
top: -0.5em; }
|
557
|
+
|
558
|
+
sub {
|
559
|
+
bottom: -0.25em; }
|
560
|
+
|
561
|
+
img {
|
562
|
+
border: 0; }
|
563
|
+
|
564
|
+
svg:not(:root) {
|
565
|
+
overflow: hidden; }
|
566
|
+
|
567
|
+
figure {
|
568
|
+
margin: 1em 40px; }
|
569
|
+
|
570
|
+
hr {
|
571
|
+
box-sizing: content-box;
|
572
|
+
height: 0; }
|
573
|
+
|
574
|
+
pre {
|
575
|
+
overflow: auto; }
|
576
|
+
|
577
|
+
code, kbd, pre, samp {
|
578
|
+
font-family: monospace, monospace;
|
579
|
+
font-size: 1em; }
|
580
|
+
|
581
|
+
button, input, optgroup, select, textarea {
|
582
|
+
color: inherit;
|
583
|
+
font: inherit;
|
584
|
+
margin: 0; }
|
585
|
+
|
586
|
+
button {
|
587
|
+
overflow: visible; }
|
588
|
+
|
589
|
+
button, select {
|
590
|
+
text-transform: none; }
|
591
|
+
|
592
|
+
button, html input[type="button"], input[type="reset"], input[type="submit"] {
|
593
|
+
-webkit-appearance: button;
|
594
|
+
cursor: pointer; }
|
595
|
+
|
596
|
+
button[disabled], html input[disabled] {
|
597
|
+
cursor: default; }
|
598
|
+
|
599
|
+
button::-moz-focus-inner, input::-moz-focus-inner {
|
600
|
+
border: 0;
|
601
|
+
padding: 0; }
|
602
|
+
|
603
|
+
input {
|
604
|
+
line-height: normal; }
|
605
|
+
|
606
|
+
input[type="checkbox"], input[type="radio"] {
|
607
|
+
box-sizing: border-box;
|
608
|
+
padding: 0; }
|
609
|
+
|
610
|
+
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
|
611
|
+
height: auto; }
|
612
|
+
|
613
|
+
input[type="search"] {
|
614
|
+
-webkit-appearance: textfield;
|
615
|
+
box-sizing: content-box; }
|
616
|
+
|
617
|
+
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
|
618
|
+
-webkit-appearance: none; }
|
619
|
+
|
620
|
+
fieldset {
|
621
|
+
border: 1px solid #c0c0c0;
|
622
|
+
margin: 0 2px;
|
623
|
+
padding: 0.35em 0.625em 0.75em; }
|
624
|
+
|
625
|
+
legend {
|
626
|
+
border: 0;
|
627
|
+
padding: 0; }
|
628
|
+
|
629
|
+
textarea {
|
630
|
+
overflow: auto; }
|
631
|
+
|
632
|
+
optgroup {
|
633
|
+
font-weight: bold; }
|
634
|
+
|
635
|
+
table {
|
636
|
+
border-collapse: collapse;
|
637
|
+
border-spacing: 0; }
|
638
|
+
|
639
|
+
td, th {
|
640
|
+
padding: 0; }
|
641
|
+
|
642
|
+
/*
|
643
|
+
* Skeleton V2.0.4
|
644
|
+
* Copyright 2014, Dave Gamache
|
645
|
+
* www.getskeleton.com
|
646
|
+
* Free to use under the MIT license.
|
647
|
+
* http://www.opensource.org/licenses/mit-license.php
|
648
|
+
* 12/9/2014
|
649
|
+
* Sass Version by Seth Coelen https://github.com/whatsnewsaes
|
650
|
+
*/
|
651
|
+
html {
|
652
|
+
font-size: 62.5%; }
|
653
|
+
|
654
|
+
body {
|
655
|
+
font-size: 1.5em;
|
656
|
+
line-height: 1.6;
|
657
|
+
font-weight: 400;
|
658
|
+
font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
659
|
+
color: #222; }
|
660
|
+
|
661
|
+
a {
|
662
|
+
color: #1eaedb; }
|
663
|
+
a:hover {
|
664
|
+
color: #1b9cc5; }
|
665
|
+
|
666
|
+
hr {
|
667
|
+
margin-top: 3rem;
|
668
|
+
margin-bottom: 3.5rem;
|
669
|
+
border-width: 0;
|
670
|
+
border-top: 1px solid #e1e1e1; }
|
671
|
+
|
672
|
+
.u-full-width {
|
673
|
+
width: 100%;
|
674
|
+
box-sizing: border-box; }
|
675
|
+
|
676
|
+
.u-max-full-width {
|
677
|
+
max-width: 100%;
|
678
|
+
box-sizing: border-box; }
|
679
|
+
|
680
|
+
.u-pull-right {
|
681
|
+
float: right; }
|
682
|
+
|
683
|
+
.u-pull-left {
|
684
|
+
float: left; }
|
685
|
+
|
686
|
+
h1, h2, h3, h4, h5, h6 {
|
687
|
+
margin-top: 0;
|
688
|
+
margin-bottom: 2rem;
|
689
|
+
font-weight: 300; }
|
690
|
+
|
691
|
+
h1 {
|
692
|
+
font-size: 4.0rem;
|
693
|
+
line-height: 1.2;
|
694
|
+
letter-spacing: -.1rem; }
|
695
|
+
|
696
|
+
h2 {
|
697
|
+
font-size: 3.6rem;
|
698
|
+
line-height: 1.25;
|
699
|
+
letter-spacing: -.1rem; }
|
700
|
+
|
701
|
+
h3 {
|
702
|
+
font-size: 3.0rem;
|
703
|
+
line-height: 1.3;
|
704
|
+
letter-spacing: -.1rem; }
|
705
|
+
|
706
|
+
h4 {
|
707
|
+
font-size: 2.4rem;
|
708
|
+
line-height: 1.35;
|
709
|
+
letter-spacing: -.08rem; }
|
710
|
+
|
711
|
+
h5 {
|
712
|
+
font-size: 1.8rem;
|
713
|
+
line-height: 1.5;
|
714
|
+
letter-spacing: -.05rem; }
|
715
|
+
|
716
|
+
h6 {
|
717
|
+
font-size: 1.5rem;
|
718
|
+
line-height: 1.6;
|
719
|
+
letter-spacing: 0; }
|
720
|
+
|
721
|
+
@media (min-width: 550px) {
|
722
|
+
h1 {
|
723
|
+
font-size: 5.0rem; }
|
724
|
+
|
725
|
+
h2 {
|
726
|
+
font-size: 4.2rem; }
|
727
|
+
|
728
|
+
h3 {
|
729
|
+
font-size: 3.6rem; }
|
730
|
+
|
731
|
+
h4 {
|
732
|
+
font-size: 3.0rem; }
|
733
|
+
|
734
|
+
h5 {
|
735
|
+
font-size: 2.4rem; }
|
736
|
+
|
737
|
+
h6 {
|
738
|
+
font-size: 1.5rem; } }
|
739
|
+
p {
|
740
|
+
margin-top: 0; }
|
741
|
+
|
742
|
+
/* Modules */
|
743
|
+
/*
|
744
|
+
* Skeleton V2.0.4
|
745
|
+
* Copyright 2014, Dave Gamache
|
746
|
+
* www.getskeleton.com
|
747
|
+
* Free to use under the MIT license.
|
748
|
+
* http://www.opensource.org/licenses/mit-license.php
|
749
|
+
* 12/9/2014
|
750
|
+
* Sass Version by Seth Coelen https://github.com/whatsnewsaes
|
751
|
+
*/
|
752
|
+
.container {
|
753
|
+
position: relative;
|
754
|
+
width: 100%;
|
755
|
+
max-width: 960px;
|
756
|
+
margin: 0 auto;
|
757
|
+
padding: 0 20px;
|
758
|
+
box-sizing: border-box; }
|
759
|
+
|
760
|
+
.column, .columns {
|
761
|
+
width: 100%;
|
762
|
+
float: left;
|
763
|
+
box-sizing: border-box; }
|
764
|
+
|
765
|
+
@media (min-width: 400px) {
|
766
|
+
.container {
|
767
|
+
width: 85%;
|
768
|
+
padding: 0; } }
|
769
|
+
@media (min-width: 550px) {
|
770
|
+
.container {
|
771
|
+
width: 80%; }
|
772
|
+
|
773
|
+
.column, .columns {
|
774
|
+
margin-left: 4%; }
|
775
|
+
|
776
|
+
.column:first-child, .columns:first-child {
|
777
|
+
margin-left: 0; }
|
778
|
+
|
779
|
+
.one.column, .one.columns {
|
780
|
+
width: 4.66667%; }
|
781
|
+
|
782
|
+
.two.columns {
|
783
|
+
width: 13.33333%; }
|
784
|
+
|
785
|
+
.three.columns {
|
786
|
+
width: 22%; }
|
787
|
+
|
788
|
+
.four.columns {
|
789
|
+
width: 30.66667%; }
|
790
|
+
|
791
|
+
.five.columns {
|
792
|
+
width: 39.33333%; }
|
793
|
+
|
794
|
+
.six.columns {
|
795
|
+
width: 48%; }
|
796
|
+
|
797
|
+
.seven.columns {
|
798
|
+
width: 56.66667%; }
|
799
|
+
|
800
|
+
.eight.columns {
|
801
|
+
width: 65.33333%; }
|
802
|
+
|
803
|
+
.nine.columns {
|
804
|
+
width: 74%; }
|
805
|
+
|
806
|
+
.ten.columns {
|
807
|
+
width: 82.66667%; }
|
808
|
+
|
809
|
+
.eleven.columns {
|
810
|
+
width: 91.33333%; }
|
811
|
+
|
812
|
+
.twelve.columns {
|
813
|
+
width: 100%;
|
814
|
+
margin-left: 0; }
|
815
|
+
|
816
|
+
.one-third.column {
|
817
|
+
width: 30.66667%; }
|
818
|
+
|
819
|
+
.two-thirds.column {
|
820
|
+
width: 65.33333%; }
|
821
|
+
|
822
|
+
.one-half.column {
|
823
|
+
width: 48%; }
|
824
|
+
|
825
|
+
.offset-by-one.column, .offset-by-one.columns {
|
826
|
+
margin-left: 8.66667%; }
|
827
|
+
|
828
|
+
.offset-by-two.column, .offset-by-two.columns {
|
829
|
+
margin-left: 17.33333%; }
|
830
|
+
|
831
|
+
.offset-by-three.column, .offset-by-three.columns {
|
832
|
+
margin-left: 26%; }
|
833
|
+
|
834
|
+
.offset-by-four.column, .offset-by-four.columns {
|
835
|
+
margin-left: 34.66667%; }
|
836
|
+
|
837
|
+
.offset-by-five.column, .offset-by-five.columns {
|
838
|
+
margin-left: 43.33333%; }
|
839
|
+
|
840
|
+
.offset-by-six.column, .offset-by-six.columns {
|
841
|
+
margin-left: 52%; }
|
842
|
+
|
843
|
+
.offset-by-seven.column, .offset-by-seven.columns {
|
844
|
+
margin-left: 60.66667%; }
|
845
|
+
|
846
|
+
.offset-by-eight.column, .offset-by-eight.columns {
|
847
|
+
margin-left: 69.33333%; }
|
848
|
+
|
849
|
+
.offset-by-nine.column, .offset-by-nine.columns {
|
850
|
+
margin-left: 78%; }
|
851
|
+
|
852
|
+
.offset-by-ten.column, .offset-by-ten.columns {
|
853
|
+
margin-left: 86.66667%; }
|
854
|
+
|
855
|
+
.offset-by-eleven.column, .offset-by-eleven.columns {
|
856
|
+
margin-left: 95.33333%; }
|
857
|
+
|
858
|
+
.offset-by-one-third.column, .offset-by-one-third.columns {
|
859
|
+
margin-left: 34.66667%; }
|
860
|
+
|
861
|
+
.offset-by-two-thirds.column, .offset-by-two-thirds.columns {
|
862
|
+
margin-left: 69.33333%; }
|
863
|
+
|
864
|
+
.offset-by-one-half.column, .offset-by-one-half.column {
|
865
|
+
margin-left: 52%; } }
|
866
|
+
.container:after, .row:after, .u-cf {
|
867
|
+
content: "";
|
868
|
+
display: table;
|
869
|
+
clear: both; }
|
870
|
+
|
871
|
+
.button, button {
|
872
|
+
display: inline-block;
|
873
|
+
height: 38px;
|
874
|
+
padding: 0 30px;
|
875
|
+
color: #555555;
|
876
|
+
text-align: center;
|
877
|
+
font-size: 11px;
|
878
|
+
font-weight: 600;
|
879
|
+
line-height: 38px;
|
880
|
+
letter-spacing: .1rem;
|
881
|
+
text-transform: uppercase;
|
882
|
+
text-decoration: none;
|
883
|
+
white-space: nowrap;
|
884
|
+
background-color: transparent;
|
885
|
+
border-radius: 4px;
|
886
|
+
border: 1px solid #bbb;
|
887
|
+
cursor: pointer;
|
888
|
+
box-sizing: border-box; }
|
889
|
+
|
890
|
+
input[type="submit"], input[type="reset"], input[type="button"] {
|
891
|
+
display: inline-block;
|
892
|
+
height: 38px;
|
893
|
+
padding: 0 30px;
|
894
|
+
color: #555555;
|
895
|
+
text-align: center;
|
896
|
+
font-size: 11px;
|
897
|
+
font-weight: 600;
|
898
|
+
line-height: 38px;
|
899
|
+
letter-spacing: .1rem;
|
900
|
+
text-transform: uppercase;
|
901
|
+
text-decoration: none;
|
902
|
+
white-space: nowrap;
|
903
|
+
background-color: transparent;
|
904
|
+
border-radius: 4px;
|
905
|
+
border: 1px solid #bbb;
|
906
|
+
cursor: pointer;
|
907
|
+
box-sizing: border-box; }
|
908
|
+
|
909
|
+
.button:hover, button:hover {
|
910
|
+
color: #333;
|
911
|
+
border-color: #888888;
|
912
|
+
outline: 0; }
|
913
|
+
|
914
|
+
input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
|
915
|
+
color: #333;
|
916
|
+
border-color: #888888;
|
917
|
+
outline: 0; }
|
918
|
+
|
919
|
+
.button:focus, button:focus {
|
920
|
+
color: #333;
|
921
|
+
border-color: #888888;
|
922
|
+
outline: 0; }
|
923
|
+
|
924
|
+
input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
|
925
|
+
color: #333;
|
926
|
+
border-color: #888888;
|
927
|
+
outline: 0; }
|
928
|
+
|
929
|
+
.button.button-primary, button.button-primary {
|
930
|
+
color: #fff;
|
931
|
+
background-color: #33c3f0;
|
932
|
+
border-color: #33c3f0; }
|
933
|
+
|
934
|
+
input[type="submit"].button-primary, input[type="reset"].button-primary, input[type="button"].button-primary {
|
935
|
+
color: #fff;
|
936
|
+
background-color: #33c3f0;
|
937
|
+
border-color: #33c3f0; }
|
938
|
+
|
939
|
+
.button.button-primary:hover, button.button-primary:hover {
|
940
|
+
color: #fff;
|
941
|
+
background-color: #1eaedb;
|
942
|
+
border-color: #1eaedb; }
|
943
|
+
|
944
|
+
input[type="submit"].button-primary:hover, input[type="reset"].button-primary:hover, input[type="button"].button-primary:hover {
|
945
|
+
color: #fff;
|
946
|
+
background-color: #1eaedb;
|
947
|
+
border-color: #1eaedb; }
|
948
|
+
|
949
|
+
.button.button-primary:focus, button.button-primary:focus {
|
950
|
+
color: #fff;
|
951
|
+
background-color: #1eaedb;
|
952
|
+
border-color: #1eaedb; }
|
953
|
+
|
954
|
+
input[type="submit"].button-primary:focus, input[type="reset"].button-primary:focus, input[type="button"].button-primary:focus {
|
955
|
+
color: #fff;
|
956
|
+
background-color: #1eaedb;
|
957
|
+
border-color: #1eaedb; }
|
958
|
+
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"] {
|
959
|
+
height: 38px;
|
960
|
+
padding: 6px 10px;
|
961
|
+
background-color: #fff;
|
962
|
+
border: 1px solid #d1d1d1;
|
963
|
+
border-radius: 4px;
|
964
|
+
box-shadow: none;
|
965
|
+
box-sizing: border-box; }
|
966
|
+
|
967
|
+
textarea, select {
|
968
|
+
height: 38px;
|
969
|
+
padding: 6px 10px;
|
970
|
+
background-color: #fff;
|
971
|
+
border: 1px solid #d1d1d1;
|
972
|
+
border-radius: 4px;
|
973
|
+
box-shadow: none;
|
974
|
+
box-sizing: border-box; }
|
975
|
+
|
976
|
+
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"] {
|
977
|
+
-webkit-appearance: none;
|
978
|
+
-moz-appearance: none;
|
979
|
+
appearance: none; }
|
980
|
+
|
981
|
+
textarea {
|
982
|
+
-webkit-appearance: none;
|
983
|
+
-moz-appearance: none;
|
984
|
+
appearance: none;
|
985
|
+
min-height: 65px;
|
986
|
+
padding-top: 6px;
|
987
|
+
padding-bottom: 6px; }
|
988
|
+
|
989
|
+
input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus {
|
990
|
+
border: 1px solid #33c3f0;
|
991
|
+
outline: 0; }
|
992
|
+
|
993
|
+
textarea:focus, select:focus {
|
994
|
+
border: 1px solid #33c3f0;
|
995
|
+
outline: 0; }
|
996
|
+
|
997
|
+
label, legend {
|
998
|
+
display: block;
|
999
|
+
margin-bottom: .5rem;
|
1000
|
+
font-weight: 600; }
|
1001
|
+
|
1002
|
+
fieldset {
|
1003
|
+
padding: 0;
|
1004
|
+
border-width: 0; }
|
1005
|
+
|
1006
|
+
input[type="checkbox"], input[type="radio"] {
|
1007
|
+
display: inline; }
|
1008
|
+
|
1009
|
+
label > .label-body {
|
1010
|
+
display: inline-block;
|
1011
|
+
margin-left: .5rem;
|
1012
|
+
font-weight: normal; }
|
1013
|
+
|
1014
|
+
ul {
|
1015
|
+
list-style: circle inside; }
|
1016
|
+
|
1017
|
+
ol {
|
1018
|
+
list-style: decimal inside;
|
1019
|
+
padding-left: 0;
|
1020
|
+
margin-top: 0; }
|
1021
|
+
|
1022
|
+
ul {
|
1023
|
+
padding-left: 0;
|
1024
|
+
margin-top: 0; }
|
1025
|
+
ul ul, ul ol {
|
1026
|
+
margin: 1.5rem 0 1.5rem 3rem;
|
1027
|
+
font-size: 90%; }
|
1028
|
+
|
1029
|
+
ol ol, ol ul {
|
1030
|
+
margin: 1.5rem 0 1.5rem 3rem;
|
1031
|
+
font-size: 90%; }
|
1032
|
+
|
1033
|
+
li {
|
1034
|
+
margin-bottom: 1rem; }
|
1035
|
+
|
1036
|
+
code {
|
1037
|
+
padding: .2rem .5rem;
|
1038
|
+
margin: 0 .2rem;
|
1039
|
+
font-size: 90%;
|
1040
|
+
white-space: nowrap;
|
1041
|
+
background: #f1f1f1;
|
1042
|
+
border: 1px solid #e1e1e1;
|
1043
|
+
border-radius: 4px; }
|
1044
|
+
|
1045
|
+
pre > code {
|
1046
|
+
display: block;
|
1047
|
+
padding: 1rem 1.5rem;
|
1048
|
+
white-space: pre; }
|
1049
|
+
|
1050
|
+
th, td {
|
1051
|
+
padding: 12px 15px;
|
1052
|
+
text-align: left;
|
1053
|
+
border-bottom: 1px solid #e1e1e1; }
|
1054
|
+
|
1055
|
+
th:first-child, td:first-child {
|
1056
|
+
padding-left: 0; }
|
1057
|
+
|
1058
|
+
th:last-child, td:last-child {
|
1059
|
+
padding-right: 0; }
|
1060
|
+
|
1061
|
+
button, .button {
|
1062
|
+
margin-bottom: 1rem; }
|
1063
|
+
|
1064
|
+
input, textarea, select, fieldset {
|
1065
|
+
margin-bottom: 1.5rem; }
|
1066
|
+
|
1067
|
+
pre, blockquote, dl, figure, table, p, ul, ol, form {
|
1068
|
+
margin-bottom: 2.5rem; }
|
1069
|
+
|
1070
|
+
/*
|
1071
|
+
* Sixfish overrides
|
1072
|
+
*/
|
1073
|
+
a {
|
1074
|
+
text-decoration: none;
|
1075
|
+
border-bottom: 1px dotted #ccc; }
|
1076
|
+
|
1077
|
+
nav#topbar {
|
1078
|
+
color: white;
|
1079
|
+
background-color: #1eaedb;
|
1080
|
+
padding: 2rem 2rem 0;
|
1081
|
+
margin-bottom: 2rem; }
|
1082
|
+
nav#topbar .masthead {
|
1083
|
+
font-size: 3.6rem; }
|
1084
|
+
nav#topbar a {
|
1085
|
+
color: white;
|
1086
|
+
border: none; }
|
1087
|
+
|
1088
|
+
div.contents-column {
|
1089
|
+
position: relative; }
|
1090
|
+
|
1091
|
+
h2.namespace {
|
1092
|
+
font-size: 2rem; }
|
1093
|
+
|
1094
|
+
header.hero-unit {
|
1095
|
+
margin-bottom: 2rem; }
|
1096
|
+
|
1097
|
+
header.hero-unit h1, header.hero-unit h2 {
|
1098
|
+
margin: 0; }
|
1099
|
+
|
1100
|
+
header.hero-unit span.label {
|
1101
|
+
background-color: #555;
|
1102
|
+
color: #ccc;
|
1103
|
+
padding: 2px 4px;
|
1104
|
+
font-weight: bold; }
|
1105
|
+
|
1106
|
+
h1 span a, .description h2 span a {
|
1107
|
+
font-size: 1.5rem;
|
1108
|
+
vertical-align: top;
|
1109
|
+
color: #ccc;
|
1110
|
+
text-decoration: none; }
|
1111
|
+
|
1112
|
+
h1:hover span a, .description h2:hover span a {
|
1113
|
+
visibility: visible; }
|
1114
|
+
|
1115
|
+
section.module-relations {
|
1116
|
+
background-color: white;
|
1117
|
+
padding: 0 2rem;
|
1118
|
+
border: 1px solid silver; }
|
1119
|
+
|
1120
|
+
section.module-relations dt {
|
1121
|
+
font-weight: bold; }
|
1122
|
+
|
1123
|
+
section.module-relations dd {
|
1124
|
+
margin: 0;
|
1125
|
+
padding: 0;
|
1126
|
+
display: inline-block; }
|
1127
|
+
|
1128
|
+
section.module-relations dd + dd::before {
|
1129
|
+
content: ',';
|
1130
|
+
padding-right: 1rem; }
|
1131
|
+
|
1132
|
+
section.description {
|
1133
|
+
clear: both;
|
1134
|
+
font-size: 2rem; }
|
1135
|
+
|
1136
|
+
.methods > header {
|
1137
|
+
margin-top: 4rem; }
|
1138
|
+
|
1139
|
+
.constants-list header h3, .attributes-list header h3, .methods > header h3 {
|
1140
|
+
font-size: 2rem;
|
1141
|
+
margin-top: 2rem;
|
1142
|
+
border-left: 2rem solid #1eaedb;
|
1143
|
+
padding-left: 0.5rem; }
|
1144
|
+
|
1145
|
+
.constants-list dt:before {
|
1146
|
+
content: '::'; }
|
1147
|
+
|
1148
|
+
.attributes-list dt::before {
|
1149
|
+
content: ':'; }
|
1150
|
+
|
1151
|
+
.attribute-access-type {
|
1152
|
+
margin: 0 0.5rem;
|
1153
|
+
border: 1px solid #333;
|
1154
|
+
border-radius: 2px;
|
1155
|
+
background: #666;
|
1156
|
+
color: #ffffff; }
|
1157
|
+
|
1158
|
+
.attribute-access-type.r {
|
1159
|
+
background-color: #ac2626;
|
1160
|
+
border-color: #7e0000; }
|
1161
|
+
|
1162
|
+
.method-name, .method-args, .method-callseq, .attributes-list dt, .constants-list dt {
|
1163
|
+
font-family: monospace, "Source Code Pro";
|
1164
|
+
color: #33c3f0;
|
1165
|
+
text-shadow: 0 0 1px rgba(25, 25, 25, 0.5); }
|
1166
|
+
|
1167
|
+
.class-methods .method-name:before, .class-methods .method-callseq:before {
|
1168
|
+
font-family: monospace, "Source Code Pro";
|
1169
|
+
content: '::'; }
|
1170
|
+
|
1171
|
+
.instance-methods .method-name:before, .instance-methods .method-callseq:before {
|
1172
|
+
font-family: monospace, "Source Code Pro";
|
1173
|
+
content: '#'; }
|
1174
|
+
|
1175
|
+
.methods a[name] {
|
1176
|
+
visibility: hidden; }
|
1177
|
+
|
1178
|
+
.method-description {
|
1179
|
+
color: #555555; }
|
1180
|
+
.method-description p {
|
1181
|
+
margin-bottom: 1rem; }
|
1182
|
+
|
1183
|
+
.method-source-code {
|
1184
|
+
display: none; }
|