reportir 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +81 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/reportir/static_site_template/.editorconfig +13 -0
- data/lib/reportir/static_site_template/.gitattributes +1 -0
- data/lib/reportir/static_site_template/.gitignore +2 -0
- data/lib/reportir/static_site_template/.htaccess +984 -0
- data/lib/reportir/static_site_template/404.html +60 -0
- data/lib/reportir/static_site_template/LICENSE.txt +19 -0
- data/lib/reportir/static_site_template/apple-touch-icon.png +0 -0
- data/lib/reportir/static_site_template/browserconfig.xml +12 -0
- data/lib/reportir/static_site_template/crossdomain.xml +15 -0
- data/lib/reportir/static_site_template/css/font/FontAwesome.otf +0 -0
- data/lib/reportir/static_site_template/css/font/fontawesome-webfont.eot +0 -0
- data/lib/reportir/static_site_template/css/font/fontawesome-webfont.svg +284 -0
- data/lib/reportir/static_site_template/css/font/fontawesome-webfont.ttf +0 -0
- data/lib/reportir/static_site_template/css/font/fontawesome-webfont.woff +0 -0
- data/lib/reportir/static_site_template/css/main.css +348 -0
- data/lib/reportir/static_site_template/css/normalize.css +424 -0
- data/lib/reportir/static_site_template/css/vendor/bootstrap.min.css +5 -0
- data/lib/reportir/static_site_template/css/vendor/font-awesome.min.css +33 -0
- data/lib/reportir/static_site_template/doc/TOC.md +29 -0
- data/lib/reportir/static_site_template/doc/css.md +162 -0
- data/lib/reportir/static_site_template/doc/extend.md +663 -0
- data/lib/reportir/static_site_template/doc/faq.md +62 -0
- data/lib/reportir/static_site_template/doc/html.md +223 -0
- data/lib/reportir/static_site_template/doc/js.md +37 -0
- data/lib/reportir/static_site_template/doc/misc.md +175 -0
- data/lib/reportir/static_site_template/doc/usage.md +130 -0
- data/lib/reportir/static_site_template/favicon.ico +0 -0
- data/lib/reportir/static_site_template/humans.txt +15 -0
- data/lib/reportir/static_site_template/img/.gitignore +0 -0
- data/lib/reportir/static_site_template/img/pagination.png +0 -0
- data/lib/reportir/static_site_template/index.html +78 -0
- data/lib/reportir/static_site_template/js/main.js +0 -0
- data/lib/reportir/static_site_template/js/plugins.js +24 -0
- data/lib/reportir/static_site_template/js/vendor/bootstrap.min.js +7 -0
- data/lib/reportir/static_site_template/js/vendor/jquery-1.11.3.min.js +6 -0
- data/lib/reportir/static_site_template/js/vendor/jquery.slides.min.js +7 -0
- data/lib/reportir/static_site_template/js/vendor/modernizr-2.8.3.min.js +4 -0
- data/lib/reportir/static_site_template/robots.txt +5 -0
- data/lib/reportir/static_site_template/tile-wide.png +0 -0
- data/lib/reportir/static_site_template/tile.png +0 -0
- data/lib/reportir/version.rb +3 -0
- data/lib/reportir.rb +109 -0
- data/reportir.gemspec +29 -0
- metadata +196 -0
@@ -0,0 +1,348 @@
|
|
1
|
+
/*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */
|
2
|
+
|
3
|
+
/*
|
4
|
+
* What follows is the result of much research on cross-browser styling.
|
5
|
+
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
|
6
|
+
* Kroc Camen, and the H5BP dev community and team.
|
7
|
+
*/
|
8
|
+
|
9
|
+
/* ==========================================================================
|
10
|
+
Base styles: opinionated defaults
|
11
|
+
========================================================================== */
|
12
|
+
|
13
|
+
html {
|
14
|
+
color: #222;
|
15
|
+
font-size: 1em;
|
16
|
+
line-height: 1.4;
|
17
|
+
}
|
18
|
+
|
19
|
+
/*
|
20
|
+
* Remove text-shadow in selection highlight:
|
21
|
+
* https://twitter.com/miketaylr/status/12228805301
|
22
|
+
*
|
23
|
+
* These selection rule sets have to be separate.
|
24
|
+
* Customize the background color to match your design.
|
25
|
+
*/
|
26
|
+
|
27
|
+
::-moz-selection {
|
28
|
+
background: #b3d4fc;
|
29
|
+
text-shadow: none;
|
30
|
+
}
|
31
|
+
|
32
|
+
::selection {
|
33
|
+
background: #b3d4fc;
|
34
|
+
text-shadow: none;
|
35
|
+
}
|
36
|
+
|
37
|
+
/*
|
38
|
+
* A better looking default horizontal rule
|
39
|
+
*/
|
40
|
+
|
41
|
+
hr {
|
42
|
+
display: block;
|
43
|
+
height: 1px;
|
44
|
+
border: 0;
|
45
|
+
border-top: 1px solid #ccc;
|
46
|
+
margin: 1em 0;
|
47
|
+
padding: 0;
|
48
|
+
}
|
49
|
+
|
50
|
+
/*
|
51
|
+
* Remove the gap between audio, canvas, iframes,
|
52
|
+
* images, videos and the bottom of their containers:
|
53
|
+
* https://github.com/h5bp/html5-boilerplate/issues/440
|
54
|
+
*/
|
55
|
+
|
56
|
+
audio,
|
57
|
+
canvas,
|
58
|
+
iframe,
|
59
|
+
img,
|
60
|
+
svg,
|
61
|
+
video {
|
62
|
+
vertical-align: middle;
|
63
|
+
}
|
64
|
+
|
65
|
+
/*
|
66
|
+
* Remove default fieldset styles.
|
67
|
+
*/
|
68
|
+
|
69
|
+
fieldset {
|
70
|
+
border: 0;
|
71
|
+
margin: 0;
|
72
|
+
padding: 0;
|
73
|
+
}
|
74
|
+
|
75
|
+
/*
|
76
|
+
* Allow only vertical resizing of textareas.
|
77
|
+
*/
|
78
|
+
|
79
|
+
textarea {
|
80
|
+
resize: vertical;
|
81
|
+
}
|
82
|
+
|
83
|
+
/* ==========================================================================
|
84
|
+
Browser Upgrade Prompt
|
85
|
+
========================================================================== */
|
86
|
+
|
87
|
+
.browserupgrade {
|
88
|
+
margin: 0.2em 0;
|
89
|
+
background: #ccc;
|
90
|
+
color: #000;
|
91
|
+
padding: 0.2em 0;
|
92
|
+
}
|
93
|
+
|
94
|
+
/* ==========================================================================
|
95
|
+
Author's custom styles
|
96
|
+
========================================================================== */
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
|
114
|
+
/* ==========================================================================
|
115
|
+
Helper classes
|
116
|
+
========================================================================== */
|
117
|
+
|
118
|
+
/*
|
119
|
+
* Hide visually and from screen readers:
|
120
|
+
*/
|
121
|
+
|
122
|
+
.hidden {
|
123
|
+
display: none !important;
|
124
|
+
}
|
125
|
+
|
126
|
+
/*
|
127
|
+
* Hide only visually, but have it available for screen readers:
|
128
|
+
* http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
|
129
|
+
*/
|
130
|
+
|
131
|
+
.visuallyhidden {
|
132
|
+
border: 0;
|
133
|
+
clip: rect(0 0 0 0);
|
134
|
+
height: 1px;
|
135
|
+
margin: -1px;
|
136
|
+
overflow: hidden;
|
137
|
+
padding: 0;
|
138
|
+
position: absolute;
|
139
|
+
width: 1px;
|
140
|
+
}
|
141
|
+
|
142
|
+
/*
|
143
|
+
* Extends the .visuallyhidden class to allow the element
|
144
|
+
* to be focusable when navigated to via the keyboard:
|
145
|
+
* https://www.drupal.org/node/897638
|
146
|
+
*/
|
147
|
+
|
148
|
+
.visuallyhidden.focusable:active,
|
149
|
+
.visuallyhidden.focusable:focus {
|
150
|
+
clip: auto;
|
151
|
+
height: auto;
|
152
|
+
margin: 0;
|
153
|
+
overflow: visible;
|
154
|
+
position: static;
|
155
|
+
width: auto;
|
156
|
+
}
|
157
|
+
|
158
|
+
/*
|
159
|
+
* Hide visually and from screen readers, but maintain layout
|
160
|
+
*/
|
161
|
+
|
162
|
+
.invisible {
|
163
|
+
visibility: hidden;
|
164
|
+
}
|
165
|
+
|
166
|
+
/*
|
167
|
+
* Clearfix: contain floats
|
168
|
+
*
|
169
|
+
* For modern browsers
|
170
|
+
* 1. The space content is one way to avoid an Opera bug when the
|
171
|
+
* `contenteditable` attribute is included anywhere else in the document.
|
172
|
+
* Otherwise it causes space to appear at the top and bottom of elements
|
173
|
+
* that receive the `clearfix` class.
|
174
|
+
* 2. The use of `table` rather than `block` is only necessary if using
|
175
|
+
* `:before` to contain the top-margins of child elements.
|
176
|
+
*/
|
177
|
+
|
178
|
+
.clearfix:before,
|
179
|
+
.clearfix:after {
|
180
|
+
content: " "; /* 1 */
|
181
|
+
display: table; /* 2 */
|
182
|
+
}
|
183
|
+
|
184
|
+
.clearfix:after {
|
185
|
+
clear: both;
|
186
|
+
}
|
187
|
+
|
188
|
+
/* ==========================================================================
|
189
|
+
EXAMPLE Media Queries for Responsive Design.
|
190
|
+
These examples override the primary ('mobile first') styles.
|
191
|
+
Modify as content requires.
|
192
|
+
========================================================================== */
|
193
|
+
|
194
|
+
@media only screen and (min-width: 35em) {
|
195
|
+
/* Style adjustments for viewports that meet the condition */
|
196
|
+
}
|
197
|
+
|
198
|
+
@media print,
|
199
|
+
(-webkit-min-device-pixel-ratio: 1.25),
|
200
|
+
(min-resolution: 1.25dppx),
|
201
|
+
(min-resolution: 120dpi) {
|
202
|
+
/* Style adjustments for high resolution devices */
|
203
|
+
}
|
204
|
+
|
205
|
+
/* ==========================================================================
|
206
|
+
Print styles.
|
207
|
+
Inlined to avoid the additional HTTP request:
|
208
|
+
http://www.phpied.com/delay-loading-your-print-css/
|
209
|
+
========================================================================== */
|
210
|
+
|
211
|
+
@media print {
|
212
|
+
*,
|
213
|
+
*:before,
|
214
|
+
*:after {
|
215
|
+
background: transparent !important;
|
216
|
+
color: #000 !important; /* Black prints faster:
|
217
|
+
http://www.sanbeiji.com/archives/953 */
|
218
|
+
box-shadow: none !important;
|
219
|
+
text-shadow: none !important;
|
220
|
+
}
|
221
|
+
|
222
|
+
a,
|
223
|
+
a:visited {
|
224
|
+
text-decoration: underline;
|
225
|
+
}
|
226
|
+
|
227
|
+
a[href]:after {
|
228
|
+
content: " (" attr(href) ")";
|
229
|
+
}
|
230
|
+
|
231
|
+
abbr[title]:after {
|
232
|
+
content: " (" attr(title) ")";
|
233
|
+
}
|
234
|
+
|
235
|
+
/*
|
236
|
+
* Don't show links that are fragment identifiers,
|
237
|
+
* or use the `javascript:` pseudo protocol
|
238
|
+
*/
|
239
|
+
|
240
|
+
a[href^="#"]:after,
|
241
|
+
a[href^="javascript:"]:after {
|
242
|
+
content: "";
|
243
|
+
}
|
244
|
+
|
245
|
+
pre,
|
246
|
+
blockquote {
|
247
|
+
border: 1px solid #999;
|
248
|
+
page-break-inside: avoid;
|
249
|
+
}
|
250
|
+
|
251
|
+
/*
|
252
|
+
* Printing Tables:
|
253
|
+
* http://css-discuss.incutio.com/wiki/Printing_Tables
|
254
|
+
*/
|
255
|
+
|
256
|
+
thead {
|
257
|
+
display: table-header-group;
|
258
|
+
}
|
259
|
+
|
260
|
+
tr,
|
261
|
+
img {
|
262
|
+
page-break-inside: avoid;
|
263
|
+
}
|
264
|
+
|
265
|
+
img {
|
266
|
+
max-width: 100% !important;
|
267
|
+
}
|
268
|
+
|
269
|
+
p,
|
270
|
+
h2,
|
271
|
+
h3 {
|
272
|
+
orphans: 3;
|
273
|
+
widows: 3;
|
274
|
+
}
|
275
|
+
|
276
|
+
h2,
|
277
|
+
h3 {
|
278
|
+
page-break-after: avoid;
|
279
|
+
}
|
280
|
+
}
|
281
|
+
|
282
|
+
|
283
|
+
#screenshots_container {
|
284
|
+
display: none;
|
285
|
+
width: 50%;
|
286
|
+
margin: 0 auto;
|
287
|
+
border: 1px solid black;
|
288
|
+
padding: 20px;
|
289
|
+
}
|
290
|
+
|
291
|
+
#screenshots_container .slidesjs-navigation {
|
292
|
+
margin-top:3px;
|
293
|
+
}
|
294
|
+
|
295
|
+
#screenshots_container .slidesjs-previous {
|
296
|
+
margin-right: 5px;
|
297
|
+
float: left;
|
298
|
+
}
|
299
|
+
|
300
|
+
#screenshots_container .slidesjs-next {
|
301
|
+
margin-right: 5px;
|
302
|
+
float: left;
|
303
|
+
}
|
304
|
+
|
305
|
+
.slidesjs-pagination {
|
306
|
+
margin: 6px 0 0;
|
307
|
+
float: right;
|
308
|
+
list-style: none;
|
309
|
+
}
|
310
|
+
|
311
|
+
.slidesjs-pagination li {
|
312
|
+
float: left;
|
313
|
+
margin: 0 1px;
|
314
|
+
}
|
315
|
+
|
316
|
+
.slidesjs-pagination li a {
|
317
|
+
display: block;
|
318
|
+
width: 13px;
|
319
|
+
height: 0;
|
320
|
+
padding-top: 13px;
|
321
|
+
background-image: url(../img/pagination.png);
|
322
|
+
background-position: 0 0;
|
323
|
+
float: left;
|
324
|
+
overflow: hidden;
|
325
|
+
}
|
326
|
+
|
327
|
+
.slidesjs-pagination li a.active,
|
328
|
+
.slidesjs-pagination li a:hover.active {
|
329
|
+
background-position: 0 -13px
|
330
|
+
}
|
331
|
+
|
332
|
+
.slidesjs-pagination li a:hover {
|
333
|
+
background-position: 0 -26px
|
334
|
+
}
|
335
|
+
|
336
|
+
#screenshots_container a:link,
|
337
|
+
#screenshots_container a:visited {
|
338
|
+
color: #333
|
339
|
+
}
|
340
|
+
|
341
|
+
#screenshots_container a:hover,
|
342
|
+
#screenshots_container a:active {
|
343
|
+
color: #9e2020
|
344
|
+
}
|
345
|
+
|
346
|
+
.navbar {
|
347
|
+
overflow: hidden
|
348
|
+
}
|