madness 0.6.7 → 0.6.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/public/css/main.css +352 -0
- data/app/public/css/main.css.map +7 -0
- data/lib/madness/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 06dc30e7312e8840c89699f52df2ff0f60d32f7d7b8be583fcf3374a98cee8ce
|
4
|
+
data.tar.gz: c380344e86b8dc4c8c704df8729ccf151b54b2bd29a2e5d7b0a71ed3857e1afe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b72c950828b105dd51c9aa9d2ede967ce6bd7aa91a2d7c3a76b1fae9d8f20dd02946d2d187e08f523424c517922d6dd477f7bf27e10da8c5e4ffeb55a9c4cd07
|
7
|
+
data.tar.gz: 2e3a83f30157f1a2345192cfb15d546e7dc909650f9c8d0f97a005af3cfc2579e9b0ec57332931028987c02deca82e7fdc11d1fe53011a9f7bccba49798720e0
|
@@ -0,0 +1,352 @@
|
|
1
|
+
body {
|
2
|
+
-ms-text-size-adjust: 100%;
|
3
|
+
-webkit-text-size-adjust: 100%;
|
4
|
+
color: #333;
|
5
|
+
font-family: "Segoe UI", "Helvetica Neue", Helvetica,Arial, freesans, sans-serif;
|
6
|
+
font-size: 16px;
|
7
|
+
line-height: 1.6;
|
8
|
+
word-wrap: break-word; }
|
9
|
+
|
10
|
+
strong, .strong {
|
11
|
+
font-weight: bolder; }
|
12
|
+
|
13
|
+
h1, h2, h3, h4, h5, h6 {
|
14
|
+
margin-top: 1em;
|
15
|
+
margin-bottom: 16px;
|
16
|
+
font-weight: bold;
|
17
|
+
line-height: 1.4; }
|
18
|
+
|
19
|
+
h1 {
|
20
|
+
margin: 0.67em 0;
|
21
|
+
padding-bottom: 0.3em;
|
22
|
+
font-size: 2.25em;
|
23
|
+
line-height: 1.2;
|
24
|
+
border-bottom: 1px solid #eee; }
|
25
|
+
|
26
|
+
h2 {
|
27
|
+
padding-bottom: 0.3em;
|
28
|
+
font-size: 1.75em;
|
29
|
+
line-height: 1.225;
|
30
|
+
border-bottom: 1px solid #eee; }
|
31
|
+
|
32
|
+
h3 {
|
33
|
+
font-size: 1.5em;
|
34
|
+
line-height: 1.43; }
|
35
|
+
|
36
|
+
h4 {
|
37
|
+
font-size: 1.25em; }
|
38
|
+
|
39
|
+
h5 {
|
40
|
+
font-size: 1em; }
|
41
|
+
|
42
|
+
h6 {
|
43
|
+
font-size: 1em;
|
44
|
+
color: #777; }
|
45
|
+
|
46
|
+
code, pre, kbd {
|
47
|
+
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
48
|
+
font-size: 1em; }
|
49
|
+
|
50
|
+
table {
|
51
|
+
border-spacing: 0;
|
52
|
+
border-collapse: collapse;
|
53
|
+
display: block;
|
54
|
+
width: 100%;
|
55
|
+
overflow: auto;
|
56
|
+
word-break: normal;
|
57
|
+
word-break: keep-all; }
|
58
|
+
table th {
|
59
|
+
font-weight: bold; }
|
60
|
+
table th, table td {
|
61
|
+
padding: 6px 13px;
|
62
|
+
border: 1px solid #ddd; }
|
63
|
+
table tr {
|
64
|
+
background-color: #fff;
|
65
|
+
border-top: 1px solid #ccc; }
|
66
|
+
table tr:nth-child(2n) {
|
67
|
+
background-color: #f8f8f8; }
|
68
|
+
|
69
|
+
a {
|
70
|
+
-webkit-text-decoration-skip: objects;
|
71
|
+
color: #4078c0;
|
72
|
+
text-decoration: none; }
|
73
|
+
a:active, a:hover {
|
74
|
+
outline-width: 0;
|
75
|
+
text-decoration: underline; }
|
76
|
+
a:not([href]) {
|
77
|
+
color: inherit;
|
78
|
+
text-decoration: none; }
|
79
|
+
|
80
|
+
ul, ol {
|
81
|
+
margin-top: 0;
|
82
|
+
margin-bottom: 0;
|
83
|
+
padding-left: 2em; }
|
84
|
+
|
85
|
+
ol ol, ul ol {
|
86
|
+
list-style-type: lower-roman; }
|
87
|
+
|
88
|
+
ul ul ol, ul ol ol, ol ul ol, ol ol ol {
|
89
|
+
list-style-type: lower-alpha; }
|
90
|
+
|
91
|
+
ul ul, ul ol, ol ol, ol ul {
|
92
|
+
margin-top: 0;
|
93
|
+
margin-bottom: 0; }
|
94
|
+
|
95
|
+
dd {
|
96
|
+
margin-left: 0; }
|
97
|
+
|
98
|
+
dl {
|
99
|
+
padding: 0; }
|
100
|
+
dl dt {
|
101
|
+
padding: 0;
|
102
|
+
margin-top: 16px;
|
103
|
+
font-size: 1em;
|
104
|
+
font-style: italic;
|
105
|
+
font-weight: bold; }
|
106
|
+
dl dd {
|
107
|
+
padding: 0 16px;
|
108
|
+
margin-bottom: 16px; }
|
109
|
+
|
110
|
+
li > p {
|
111
|
+
margin-top: 16px; }
|
112
|
+
|
113
|
+
code {
|
114
|
+
padding: 0;
|
115
|
+
padding-top: 0.2em;
|
116
|
+
padding-bottom: 0.2em;
|
117
|
+
margin: 0;
|
118
|
+
background-color: #eee;
|
119
|
+
border-radius: 3px; }
|
120
|
+
code:before, code:after {
|
121
|
+
letter-spacing: -0.2em;
|
122
|
+
content: "\00a0"; }
|
123
|
+
|
124
|
+
pre {
|
125
|
+
margin-left: 20px;
|
126
|
+
overflow: auto;
|
127
|
+
line-height: 1.45;
|
128
|
+
word-wrap: normal; }
|
129
|
+
pre > code {
|
130
|
+
padding: 0;
|
131
|
+
margin: 0;
|
132
|
+
font-size: 100%;
|
133
|
+
word-break: normal;
|
134
|
+
white-space: pre;
|
135
|
+
background: transparent;
|
136
|
+
border: 0; }
|
137
|
+
pre code {
|
138
|
+
display: inline-block;
|
139
|
+
max-width: initial;
|
140
|
+
overflow: initial;
|
141
|
+
line-height: inherit;
|
142
|
+
word-wrap: normal;
|
143
|
+
border: 0; }
|
144
|
+
pre code:before,
|
145
|
+
pre code:after {
|
146
|
+
content: normal; }
|
147
|
+
|
148
|
+
table.CodeRay {
|
149
|
+
margin-bottom: 0; }
|
150
|
+
table.CodeRay pre {
|
151
|
+
margin-bottom: 0; }
|
152
|
+
table.CodeRay tr, table.CodeRay td {
|
153
|
+
border: 0; }
|
154
|
+
table.CodeRay tr pre, table.CodeRay td pre {
|
155
|
+
margin-left: 0; }
|
156
|
+
table.CodeRay td.line-numbers {
|
157
|
+
background: #eee;
|
158
|
+
padding: 4px; }
|
159
|
+
|
160
|
+
img {
|
161
|
+
border-style: none;
|
162
|
+
max-width: 100%;
|
163
|
+
box-sizing: content-box;
|
164
|
+
background-color: #fff; }
|
165
|
+
|
166
|
+
hr {
|
167
|
+
box-sizing: content-box;
|
168
|
+
overflow: visible;
|
169
|
+
height: 0;
|
170
|
+
overflow: hidden;
|
171
|
+
border: 0;
|
172
|
+
border-bottom: 1px solid #ddd;
|
173
|
+
height: 4px;
|
174
|
+
padding: 0;
|
175
|
+
margin: 16px 0;
|
176
|
+
background-color: #e7e7e7;
|
177
|
+
border-bottom-color: #eee; }
|
178
|
+
hr::before {
|
179
|
+
display: table;
|
180
|
+
content: ""; }
|
181
|
+
hr::after {
|
182
|
+
display: table;
|
183
|
+
clear: both;
|
184
|
+
content: ""; }
|
185
|
+
|
186
|
+
kbd {
|
187
|
+
display: inline-block;
|
188
|
+
padding: 3px 5px;
|
189
|
+
font-size: 11px;
|
190
|
+
line-height: 10px;
|
191
|
+
color: #555;
|
192
|
+
vertical-align: middle;
|
193
|
+
background-color: #fcfcfc;
|
194
|
+
border: solid 1px #ccc;
|
195
|
+
border-bottom-color: #bbb;
|
196
|
+
border-radius: 3px;
|
197
|
+
box-shadow: inset 0 -1px 0 #bbb; }
|
198
|
+
|
199
|
+
.search-form {
|
200
|
+
margin-bottom: 20px;
|
201
|
+
margin-top: 20px; }
|
202
|
+
|
203
|
+
.search-field {
|
204
|
+
outline: none;
|
205
|
+
padding: 8px 12px;
|
206
|
+
font-size: 1.5em;
|
207
|
+
width: 50%;
|
208
|
+
min-width: 200px;
|
209
|
+
width: 100%;
|
210
|
+
border: #ccc 1px solid;
|
211
|
+
border-radius: 3px; }
|
212
|
+
.search-field:focus {
|
213
|
+
border-color: #4078c0; }
|
214
|
+
|
215
|
+
.breadcrumbs {
|
216
|
+
margin-top: 6px;
|
217
|
+
border-bottom: 1px solid #ccc; }
|
218
|
+
.breadcrumbs a {
|
219
|
+
display: inline-block;
|
220
|
+
padding: 7px 0; }
|
221
|
+
|
222
|
+
nav {
|
223
|
+
height: 100vh;
|
224
|
+
width: 250px;
|
225
|
+
overflow-y: auto;
|
226
|
+
position: fixed; }
|
227
|
+
@media print {
|
228
|
+
nav {
|
229
|
+
display: none; } }
|
230
|
+
@media only screen and (max-width: 767px) {
|
231
|
+
nav {
|
232
|
+
display: none; } }
|
233
|
+
nav .icon-bar {
|
234
|
+
border-bottom: 1px dotted #ddd; }
|
235
|
+
nav a.document, nav span.document, nav .caption {
|
236
|
+
display: block;
|
237
|
+
padding: 3px 20px 3px 30px; }
|
238
|
+
nav a.icon {
|
239
|
+
display: inline-block;
|
240
|
+
font-size: 1.5em;
|
241
|
+
width: 50%;
|
242
|
+
padding: 3px 20px 3px 30px; }
|
243
|
+
nav a.icon.wide {
|
244
|
+
width: 100%; }
|
245
|
+
nav:after {
|
246
|
+
content: "";
|
247
|
+
height: 90px;
|
248
|
+
display: block; }
|
249
|
+
|
250
|
+
::-webkit-scrollbar {
|
251
|
+
width: 6px; }
|
252
|
+
|
253
|
+
::-webkit-scrollbar-thumb {
|
254
|
+
background: #ddd;
|
255
|
+
-webkit-border-radius: 3px; }
|
256
|
+
|
257
|
+
@font-face {
|
258
|
+
font-family: 'fontello';
|
259
|
+
src: url("../fonts/fontello.eot?14105917");
|
260
|
+
src: url("../fonts/fontello.eot?14105917#iefix") format("embedded-opentype"), url("../fonts/fontello.woff2?14105917") format("woff2"), url("../fonts/fontello.woff?14105917") format("woff"), url("../fonts/fontello.ttf?14105917") format("truetype"), url("../fonts/fontello.svg?14105917#fontello") format("svg");
|
261
|
+
font-weight: normal;
|
262
|
+
font-style: normal; }
|
263
|
+
[class^="icon-"]:before, [class*=" icon-"]:before {
|
264
|
+
font-family: "fontello";
|
265
|
+
font-style: normal;
|
266
|
+
font-weight: normal;
|
267
|
+
speak: none;
|
268
|
+
display: inline-block;
|
269
|
+
text-decoration: inherit;
|
270
|
+
width: 1em;
|
271
|
+
margin-right: .2em;
|
272
|
+
text-align: center;
|
273
|
+
font-variant: normal;
|
274
|
+
text-transform: none; }
|
275
|
+
|
276
|
+
.icon-search:before {
|
277
|
+
content: '\e800'; }
|
278
|
+
|
279
|
+
.icon-home:before {
|
280
|
+
content: '\e801'; }
|
281
|
+
|
282
|
+
.autocomplete-suggestions {
|
283
|
+
border: 1px solid #ccc;
|
284
|
+
background: #fff;
|
285
|
+
cursor: default;
|
286
|
+
overflow: auto; }
|
287
|
+
|
288
|
+
.autocomplete-suggestion {
|
289
|
+
padding: 5px 10px;
|
290
|
+
white-space: nowrap;
|
291
|
+
overflow: hidden; }
|
292
|
+
|
293
|
+
.autocomplete-no-suggestion {
|
294
|
+
padding: 2px 5px; }
|
295
|
+
|
296
|
+
.autocomplete-selected {
|
297
|
+
background: #ddd; }
|
298
|
+
|
299
|
+
.autocomplete-suggestions strong {
|
300
|
+
font-weight: bold; }
|
301
|
+
|
302
|
+
.autocomplete-group {
|
303
|
+
padding: 2px 5px; }
|
304
|
+
|
305
|
+
.autocomplete-group strong {
|
306
|
+
font-weight: bold;
|
307
|
+
color: #000;
|
308
|
+
display: block;
|
309
|
+
border-bottom: 1px solid #000; }
|
310
|
+
|
311
|
+
* {
|
312
|
+
box-sizing: border-box; }
|
313
|
+
|
314
|
+
p {
|
315
|
+
margin-top: 0;
|
316
|
+
margin-bottom: 10px; }
|
317
|
+
|
318
|
+
blockquote {
|
319
|
+
margin: 0;
|
320
|
+
padding: 0 15px;
|
321
|
+
color: #777;
|
322
|
+
border-left: 4px solid #ddd; }
|
323
|
+
blockquote > :first-child {
|
324
|
+
margin-top: 0; }
|
325
|
+
blockquote > :last-child {
|
326
|
+
margin-bottom: 0; }
|
327
|
+
|
328
|
+
p, blockquote, ul, ol, dl, table, pre {
|
329
|
+
margin-top: 0;
|
330
|
+
margin-bottom: 16px; }
|
331
|
+
|
332
|
+
.quiet {
|
333
|
+
color: #777; }
|
334
|
+
|
335
|
+
body {
|
336
|
+
max-width: 1300px;
|
337
|
+
margin: 0 auto; }
|
338
|
+
|
339
|
+
.main {
|
340
|
+
padding: 0 20px 100px 20px; }
|
341
|
+
.main:before, .main:after {
|
342
|
+
display: table;
|
343
|
+
content: ""; }
|
344
|
+
@media only screen and (min-width: 768px) {
|
345
|
+
.main.with-sidebar {
|
346
|
+
min-height: 100vh;
|
347
|
+
margin-left: 250px; } }
|
348
|
+
.main.without-sidebar {
|
349
|
+
max-width: 980px;
|
350
|
+
margin: 0 auto; }
|
351
|
+
|
352
|
+
/*# sourceMappingURL=main.css.map */
|
@@ -0,0 +1,7 @@
|
|
1
|
+
{
|
2
|
+
"version": 3,
|
3
|
+
"mappings": "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",
|
4
|
+
"sources": ["../../styles/_typography.scss","../../styles/_table.scss","../../styles/_anchor.scss","../../styles/_list.scss","../../styles/_code.scss","../../styles/_coderay.scss","../../styles/_image.scss","../../styles/_line.scss","../../styles/_keyboard.scss","../../styles/_search.scss","../../styles/_breadcrumbs.scss","../../styles/_nav.scss","../../styles/_mixins.scss","../../styles/_icons.scss","../../styles/_autocomplete.scss","../../styles/_general.scss","../../styles/main.scss"],
|
5
|
+
"names": [],
|
6
|
+
"file": "main.css"
|
7
|
+
}
|
data/lib/madness/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: madness
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Danny Ben Shitrit
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sinatra
|
@@ -368,6 +368,8 @@ extensions: []
|
|
368
368
|
extra_rdoc_files: []
|
369
369
|
files:
|
370
370
|
- README.md
|
371
|
+
- app/public/css/main.css
|
372
|
+
- app/public/css/main.css.map
|
371
373
|
- app/public/favicon.ico
|
372
374
|
- app/public/fonts/fontello.eot
|
373
375
|
- app/public/fonts/fontello.svg
|