appcss 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/appcss/app.css +645 -0
- data/app/assets/stylesheets/appcss/index.css +3 -0
- data/appcss-0.0.1.gem +0 -0
- data/lib/appcss/version.rb +1 -1
- metadata +4 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea9f601cd47778d224d47252439ef9371665aa72
|
4
|
+
data.tar.gz: 5ec56c85cfbc573b127981fb0c256f2ce7b71aeb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d0f76f718eae5a03c2ec6f7d38d9ccd25b0bb77a53dbcbd7cd1ecb3c814dc4af6336e79b9b6975b62c72007f7a1a8a4ccb780bf637228ca94dc8da3d2a8b154
|
7
|
+
data.tar.gz: 17fd330a7880715d7c5a3143a76bb22c03b55ff6510b94490e6b02972de97b022a7eaa244ab0f877155dfd8b6a8473cec1c9be7c3e5ef69198ef15fb23ac65d8
|
@@ -0,0 +1,645 @@
|
|
1
|
+
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
|
2
|
+
|
3
|
+
/**
|
4
|
+
* 1. Set default font family to sans-serif.
|
5
|
+
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
6
|
+
* user zoom.
|
7
|
+
*/
|
8
|
+
|
9
|
+
html {
|
10
|
+
font-family: sans-serif; /* 1 */
|
11
|
+
-ms-text-size-adjust: 100%; /* 2 */
|
12
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
13
|
+
}
|
14
|
+
|
15
|
+
/**
|
16
|
+
* Remove default margin.
|
17
|
+
*/
|
18
|
+
|
19
|
+
body {
|
20
|
+
margin: 0;
|
21
|
+
}
|
22
|
+
|
23
|
+
/* HTML5 display definitions
|
24
|
+
========================================================================== */
|
25
|
+
|
26
|
+
/**
|
27
|
+
* Correct `block` display not defined for any HTML5 element in IE 8/9.
|
28
|
+
* Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
|
29
|
+
* Correct `block` display not defined for `main` in IE 11.
|
30
|
+
*/
|
31
|
+
|
32
|
+
article,
|
33
|
+
aside,
|
34
|
+
details,
|
35
|
+
figcaption,
|
36
|
+
figure,
|
37
|
+
footer,
|
38
|
+
header,
|
39
|
+
hgroup,
|
40
|
+
main,
|
41
|
+
nav,
|
42
|
+
section,
|
43
|
+
summary {
|
44
|
+
display: block;
|
45
|
+
}
|
46
|
+
|
47
|
+
/**
|
48
|
+
* 1. Correct `inline-block` display not defined in IE 8/9.
|
49
|
+
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
|
50
|
+
*/
|
51
|
+
|
52
|
+
audio,
|
53
|
+
canvas,
|
54
|
+
progress,
|
55
|
+
video {
|
56
|
+
display: inline-block; /* 1 */
|
57
|
+
vertical-align: baseline; /* 2 */
|
58
|
+
}
|
59
|
+
|
60
|
+
/**
|
61
|
+
* Prevent modern browsers from displaying `audio` without controls.
|
62
|
+
* Remove excess height in iOS 5 devices.
|
63
|
+
*/
|
64
|
+
|
65
|
+
audio:not([controls]) {
|
66
|
+
display: none;
|
67
|
+
height: 0;
|
68
|
+
}
|
69
|
+
|
70
|
+
/**
|
71
|
+
* Address `[hidden]` styling not present in IE 8/9/10.
|
72
|
+
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
|
73
|
+
*/
|
74
|
+
|
75
|
+
[hidden],
|
76
|
+
template {
|
77
|
+
display: none;
|
78
|
+
}
|
79
|
+
|
80
|
+
/* Links
|
81
|
+
========================================================================== */
|
82
|
+
|
83
|
+
/**
|
84
|
+
* Remove the gray background color from active links in IE 10.
|
85
|
+
*/
|
86
|
+
|
87
|
+
a {
|
88
|
+
background: transparent;
|
89
|
+
}
|
90
|
+
|
91
|
+
/**
|
92
|
+
* Improve readability when focused and also mouse hovered in all browsers.
|
93
|
+
*/
|
94
|
+
|
95
|
+
a:active,
|
96
|
+
a:hover {
|
97
|
+
outline: 0;
|
98
|
+
}
|
99
|
+
|
100
|
+
/* Text-level semantics
|
101
|
+
========================================================================== */
|
102
|
+
|
103
|
+
/**
|
104
|
+
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
|
105
|
+
*/
|
106
|
+
|
107
|
+
abbr[title] {
|
108
|
+
border-bottom: 1px dotted;
|
109
|
+
}
|
110
|
+
|
111
|
+
/**
|
112
|
+
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
|
113
|
+
*/
|
114
|
+
|
115
|
+
b,
|
116
|
+
strong {
|
117
|
+
font-weight: bold;
|
118
|
+
}
|
119
|
+
|
120
|
+
/**
|
121
|
+
* Address styling not present in Safari and Chrome.
|
122
|
+
*/
|
123
|
+
|
124
|
+
dfn {
|
125
|
+
font-style: italic;
|
126
|
+
}
|
127
|
+
|
128
|
+
/**
|
129
|
+
* Address variable `h1` font-size and margin within `section` and `article`
|
130
|
+
* contexts in Firefox 4+, Safari, and Chrome.
|
131
|
+
*/
|
132
|
+
|
133
|
+
h1 {
|
134
|
+
font-size: 2em;
|
135
|
+
margin: 0.67em 0;
|
136
|
+
}
|
137
|
+
|
138
|
+
/**
|
139
|
+
* Address styling not present in IE 8/9.
|
140
|
+
*/
|
141
|
+
|
142
|
+
mark {
|
143
|
+
background: #ff0;
|
144
|
+
color: #000;
|
145
|
+
}
|
146
|
+
|
147
|
+
/**
|
148
|
+
* Address inconsistent and variable font size in all browsers.
|
149
|
+
*/
|
150
|
+
|
151
|
+
small {
|
152
|
+
font-size: 80%;
|
153
|
+
}
|
154
|
+
|
155
|
+
/**
|
156
|
+
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
157
|
+
*/
|
158
|
+
|
159
|
+
sub,
|
160
|
+
sup {
|
161
|
+
font-size: 75%;
|
162
|
+
line-height: 0;
|
163
|
+
position: relative;
|
164
|
+
vertical-align: baseline;
|
165
|
+
}
|
166
|
+
|
167
|
+
sup {
|
168
|
+
top: -0.5em;
|
169
|
+
}
|
170
|
+
|
171
|
+
sub {
|
172
|
+
bottom: -0.25em;
|
173
|
+
}
|
174
|
+
|
175
|
+
/* Embedded content
|
176
|
+
========================================================================== */
|
177
|
+
|
178
|
+
/**
|
179
|
+
* Remove border when inside `a` element in IE 8/9/10.
|
180
|
+
*/
|
181
|
+
|
182
|
+
img {
|
183
|
+
border: 0;
|
184
|
+
}
|
185
|
+
|
186
|
+
/**
|
187
|
+
* Correct overflow not hidden in IE 9/10/11.
|
188
|
+
*/
|
189
|
+
|
190
|
+
svg:not(:root) {
|
191
|
+
overflow: hidden;
|
192
|
+
}
|
193
|
+
|
194
|
+
/* Grouping content
|
195
|
+
========================================================================== */
|
196
|
+
|
197
|
+
/**
|
198
|
+
* Address margin not present in IE 8/9 and Safari.
|
199
|
+
*/
|
200
|
+
|
201
|
+
figure {
|
202
|
+
margin: 1em 40px;
|
203
|
+
}
|
204
|
+
|
205
|
+
/**
|
206
|
+
* Address differences between Firefox and other browsers.
|
207
|
+
*/
|
208
|
+
|
209
|
+
hr {
|
210
|
+
-moz-box-sizing: content-box;
|
211
|
+
box-sizing: content-box;
|
212
|
+
height: 0;
|
213
|
+
}
|
214
|
+
|
215
|
+
/**
|
216
|
+
* Contain overflow in all browsers.
|
217
|
+
*/
|
218
|
+
|
219
|
+
pre {
|
220
|
+
overflow: auto;
|
221
|
+
}
|
222
|
+
|
223
|
+
/**
|
224
|
+
* Address odd `em`-unit font size rendering in all browsers.
|
225
|
+
*/
|
226
|
+
|
227
|
+
code,
|
228
|
+
kbd,
|
229
|
+
pre,
|
230
|
+
samp {
|
231
|
+
font-family: monospace, monospace;
|
232
|
+
font-size: 1em;
|
233
|
+
}
|
234
|
+
|
235
|
+
/* Forms
|
236
|
+
========================================================================== */
|
237
|
+
|
238
|
+
/**
|
239
|
+
* Known limitation: by default, Chrome and Safari on OS X allow very limited
|
240
|
+
* styling of `select`, unless a `border` property is set.
|
241
|
+
*/
|
242
|
+
|
243
|
+
/**
|
244
|
+
* 1. Correct color not being inherited.
|
245
|
+
* Known issue: affects color of disabled elements.
|
246
|
+
* 2. Correct font properties not being inherited.
|
247
|
+
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
|
248
|
+
*/
|
249
|
+
|
250
|
+
button,
|
251
|
+
input,
|
252
|
+
optgroup,
|
253
|
+
select,
|
254
|
+
textarea {
|
255
|
+
color: inherit; /* 1 */
|
256
|
+
font: inherit; /* 2 */
|
257
|
+
margin: 0; /* 3 */
|
258
|
+
}
|
259
|
+
|
260
|
+
/**
|
261
|
+
* Address `overflow` set to `hidden` in IE 8/9/10/11.
|
262
|
+
*/
|
263
|
+
|
264
|
+
button {
|
265
|
+
overflow: visible;
|
266
|
+
}
|
267
|
+
|
268
|
+
/**
|
269
|
+
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
270
|
+
* All other form control elements do not inherit `text-transform` values.
|
271
|
+
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
|
272
|
+
* Correct `select` style inheritance in Firefox.
|
273
|
+
*/
|
274
|
+
|
275
|
+
button,
|
276
|
+
select {
|
277
|
+
text-transform: none;
|
278
|
+
}
|
279
|
+
|
280
|
+
/**
|
281
|
+
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
282
|
+
* and `video` controls.
|
283
|
+
* 2. Correct inability to style clickable `input` types in iOS.
|
284
|
+
* 3. Improve usability and consistency of cursor style between image-type
|
285
|
+
* `input` and others.
|
286
|
+
*/
|
287
|
+
|
288
|
+
button,
|
289
|
+
html input[type="button"], /* 1 */
|
290
|
+
input[type="reset"],
|
291
|
+
input[type="submit"] {
|
292
|
+
-webkit-appearance: button; /* 2 */
|
293
|
+
cursor: pointer; /* 3 */
|
294
|
+
}
|
295
|
+
|
296
|
+
/**
|
297
|
+
* Re-set default cursor for disabled elements.
|
298
|
+
*/
|
299
|
+
|
300
|
+
button[disabled],
|
301
|
+
html input[disabled] {
|
302
|
+
cursor: default;
|
303
|
+
}
|
304
|
+
|
305
|
+
/**
|
306
|
+
* Remove inner padding and border in Firefox 4+.
|
307
|
+
*/
|
308
|
+
|
309
|
+
button::-moz-focus-inner,
|
310
|
+
input::-moz-focus-inner {
|
311
|
+
border: 0;
|
312
|
+
padding: 0;
|
313
|
+
}
|
314
|
+
|
315
|
+
/**
|
316
|
+
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
317
|
+
* the UA stylesheet.
|
318
|
+
*/
|
319
|
+
|
320
|
+
input {
|
321
|
+
line-height: normal;
|
322
|
+
}
|
323
|
+
|
324
|
+
/**
|
325
|
+
* It's recommended that you don't attempt to style these elements.
|
326
|
+
* Firefox's implementation doesn't respect box-sizing, padding, or width.
|
327
|
+
*
|
328
|
+
* 1. Address box sizing set to `content-box` in IE 8/9/10.
|
329
|
+
* 2. Remove excess padding in IE 8/9/10.
|
330
|
+
*/
|
331
|
+
|
332
|
+
input[type="checkbox"],
|
333
|
+
input[type="radio"] {
|
334
|
+
box-sizing: border-box; /* 1 */
|
335
|
+
padding: 0; /* 2 */
|
336
|
+
}
|
337
|
+
|
338
|
+
/**
|
339
|
+
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
|
340
|
+
* `font-size` values of the `input`, it causes the cursor style of the
|
341
|
+
* decrement button to change from `default` to `text`.
|
342
|
+
*/
|
343
|
+
|
344
|
+
input[type="number"]::-webkit-inner-spin-button,
|
345
|
+
input[type="number"]::-webkit-outer-spin-button {
|
346
|
+
height: auto;
|
347
|
+
}
|
348
|
+
|
349
|
+
/**
|
350
|
+
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
|
351
|
+
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
|
352
|
+
* (include `-moz` to future-proof).
|
353
|
+
*/
|
354
|
+
|
355
|
+
input[type="search"] {
|
356
|
+
-webkit-appearance: textfield; /* 1 */
|
357
|
+
-moz-box-sizing: content-box;
|
358
|
+
-webkit-box-sizing: content-box; /* 2 */
|
359
|
+
box-sizing: content-box;
|
360
|
+
}
|
361
|
+
|
362
|
+
/**
|
363
|
+
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
|
364
|
+
* Safari (but not Chrome) clips the cancel button when the search input has
|
365
|
+
* padding (and `textfield` appearance).
|
366
|
+
*/
|
367
|
+
|
368
|
+
input[type="search"]::-webkit-search-cancel-button,
|
369
|
+
input[type="search"]::-webkit-search-decoration {
|
370
|
+
-webkit-appearance: none;
|
371
|
+
}
|
372
|
+
|
373
|
+
/**
|
374
|
+
* Define consistent border, margin, and padding.
|
375
|
+
*/
|
376
|
+
|
377
|
+
fieldset {
|
378
|
+
border: 1px solid #c0c0c0;
|
379
|
+
margin: 0 2px;
|
380
|
+
padding: 0.35em 0.625em 0.75em;
|
381
|
+
}
|
382
|
+
|
383
|
+
/**
|
384
|
+
* 1. Correct `color` not being inherited in IE 8/9/10/11.
|
385
|
+
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
386
|
+
*/
|
387
|
+
|
388
|
+
legend {
|
389
|
+
border: 0; /* 1 */
|
390
|
+
padding: 0; /* 2 */
|
391
|
+
}
|
392
|
+
|
393
|
+
/**
|
394
|
+
* Remove default vertical scrollbar in IE 8/9/10/11.
|
395
|
+
*/
|
396
|
+
|
397
|
+
textarea {
|
398
|
+
overflow: auto;
|
399
|
+
}
|
400
|
+
|
401
|
+
/**
|
402
|
+
* Don't inherit the `font-weight` (applied by a rule above).
|
403
|
+
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
|
404
|
+
*/
|
405
|
+
|
406
|
+
optgroup {
|
407
|
+
font-weight: bold;
|
408
|
+
}
|
409
|
+
|
410
|
+
/* Tables
|
411
|
+
========================================================================== */
|
412
|
+
|
413
|
+
/**
|
414
|
+
* Remove most spacing between table cells.
|
415
|
+
*/
|
416
|
+
|
417
|
+
table {
|
418
|
+
border-collapse: collapse;
|
419
|
+
border-spacing: 0;
|
420
|
+
}
|
421
|
+
|
422
|
+
td,
|
423
|
+
th {
|
424
|
+
padding: 0;
|
425
|
+
}
|
426
|
+
|
427
|
+
* {
|
428
|
+
box-sizing: border-box; }
|
429
|
+
|
430
|
+
html {
|
431
|
+
background: #222222;
|
432
|
+
color: white; }
|
433
|
+
|
434
|
+
html, body {
|
435
|
+
height: 100%;
|
436
|
+
font-size: 16px; }
|
437
|
+
|
438
|
+
.grid-row {
|
439
|
+
display: -webkit-box;
|
440
|
+
display: -o-flex;
|
441
|
+
display: -moz-flex;
|
442
|
+
display: -webkit-flex;
|
443
|
+
display: flex;
|
444
|
+
width: 100%;
|
445
|
+
-o-justify-content: space-between;
|
446
|
+
-ms-justify-content: space-between;
|
447
|
+
-moz-justify-content: space-between;
|
448
|
+
-webkit-justify-content: space-between;
|
449
|
+
justify-content: space-between;
|
450
|
+
align-items: stretch;
|
451
|
+
-ms-flex-wrap: wrap;
|
452
|
+
-moz-flex-wrap: wrap;
|
453
|
+
-webkit-flex-wrap: wrap;
|
454
|
+
flex-wrap: wrap; }
|
455
|
+
|
456
|
+
.acss-sidebar {
|
457
|
+
height: 100%;
|
458
|
+
background-color: rgba(255, 255, 255, 0.1);
|
459
|
+
width: 100%;
|
460
|
+
display: block;
|
461
|
+
margin-left: 0;
|
462
|
+
font-size: 0.85rem; }
|
463
|
+
@media screen and (min-width: 768px) {
|
464
|
+
.acss-sidebar {
|
465
|
+
width: calc(100% - 15px);
|
466
|
+
clear: none; } }
|
467
|
+
@media screen and (min-width: 480px) {
|
468
|
+
.acss-sidebar {
|
469
|
+
width: 100%;
|
470
|
+
display: block;
|
471
|
+
margin-left: 0; } }
|
472
|
+
@media screen and (min-width: 480px) and (min-width: 768px) {
|
473
|
+
.acss-sidebar {
|
474
|
+
width: calc(50% - 15px);
|
475
|
+
clear: none; } }
|
476
|
+
|
477
|
+
@media screen and (min-width: 768px) {
|
478
|
+
.acss-sidebar {
|
479
|
+
width: 100%;
|
480
|
+
display: block;
|
481
|
+
margin-left: 0; } }
|
482
|
+
@media screen and (min-width: 768px) and (min-width: 768px) {
|
483
|
+
.acss-sidebar {
|
484
|
+
width: calc(33.33333% - 15px);
|
485
|
+
clear: none; } }
|
486
|
+
|
487
|
+
@media screen and (min-width: 960px) {
|
488
|
+
.acss-sidebar {
|
489
|
+
width: 200px; } }
|
490
|
+
.acss-sidebar ul {
|
491
|
+
list-style: none;
|
492
|
+
padding: 0;
|
493
|
+
margin: 10px 0; }
|
494
|
+
.acss-sidebar ul li {
|
495
|
+
position: relative; }
|
496
|
+
.acss-sidebar ul li a {
|
497
|
+
padding: 5px 15px;
|
498
|
+
display: block; }
|
499
|
+
.acss-sidebar ul li a + input {
|
500
|
+
display: none; }
|
501
|
+
.acss-sidebar ul li a:hover {
|
502
|
+
background-color: rgba(255, 255, 255, 0.2);
|
503
|
+
text-decoration: none; }
|
504
|
+
.acss-sidebar ul li input[type="text"] {
|
505
|
+
border: 0px;
|
506
|
+
background: transparent;
|
507
|
+
padding: 5px 15px;
|
508
|
+
width: 100%; }
|
509
|
+
.acss-sidebar ul li input[type="text"]:hover {
|
510
|
+
background: rgba(255, 255, 255, 0.1); }
|
511
|
+
.acss-sidebar ul li input[type="text"]:focus {
|
512
|
+
background: white;
|
513
|
+
color: #333333;
|
514
|
+
outline: 0px; }
|
515
|
+
.acss-sidebar ul li .tools {
|
516
|
+
display: none;
|
517
|
+
position: absolute;
|
518
|
+
top: 0;
|
519
|
+
right: 0;
|
520
|
+
bottom: 0;
|
521
|
+
padding: 5px 15px; }
|
522
|
+
.acss-sidebar ul li .tools span {
|
523
|
+
cursor: pointer;
|
524
|
+
display: inline-block;
|
525
|
+
text-align: center;
|
526
|
+
padding: 2px;
|
527
|
+
width: 15px;
|
528
|
+
border-radius: 50%;
|
529
|
+
position: relative; }
|
530
|
+
.acss-sidebar ul li .tools span .tooltip {
|
531
|
+
display: none;
|
532
|
+
position: absolute;
|
533
|
+
top: 30px;
|
534
|
+
left: 10px;
|
535
|
+
background: rgba(0, 0, 0, 0.7);
|
536
|
+
padding: 5px;
|
537
|
+
color: white;
|
538
|
+
text-shadow: none;
|
539
|
+
border-radius: 3px; }
|
540
|
+
.acss-sidebar ul li .tools span:hover {
|
541
|
+
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3), -1px 1px 1px rgba(0, 0, 0, 0.3), 1px -1px 1px rgba(0, 0, 0, 0.3), -1px -1px 1px rgba(0, 0, 0, 0.3); }
|
542
|
+
.acss-sidebar ul li .tools span:hover .tooltip {
|
543
|
+
display: block; }
|
544
|
+
.acss-sidebar ul li.edit a, .acss-sidebar ul li.edit .tools {
|
545
|
+
display: none; }
|
546
|
+
.acss-sidebar ul li.edit a + input {
|
547
|
+
display: block; }
|
548
|
+
.acss-sidebar ul li:hover .tools {
|
549
|
+
display: block; }
|
550
|
+
.acss-sidebar ul li:hover.edit .tools {
|
551
|
+
display: none; }
|
552
|
+
.acss-sidebar h1 {
|
553
|
+
font-size: 0.85rem;
|
554
|
+
background-color: rgba(0, 0, 0, 0.2);
|
555
|
+
margin: 0;
|
556
|
+
padding: 5px 15px; }
|
557
|
+
|
558
|
+
.acss-header {
|
559
|
+
width: 100%;
|
560
|
+
display: block;
|
561
|
+
margin-left: 0; }
|
562
|
+
@media screen and (min-width: 768px) {
|
563
|
+
.acss-header {
|
564
|
+
width: calc(100% - 15px);
|
565
|
+
clear: none; } }
|
566
|
+
@media screen and (min-width: 768px) {
|
567
|
+
.acss-header {
|
568
|
+
width: 100%;
|
569
|
+
display: block;
|
570
|
+
margin-left: 0; } }
|
571
|
+
@media screen and (min-width: 768px) and (min-width: 768px) {
|
572
|
+
.acss-header {
|
573
|
+
width: calc(100% - 15px);
|
574
|
+
clear: none; } }
|
575
|
+
|
576
|
+
.acss-header ul {
|
577
|
+
list-style: none;
|
578
|
+
padding: 0 15px; }
|
579
|
+
.acss-header ul li {
|
580
|
+
display: inline-block; }
|
581
|
+
|
582
|
+
.acss-mainpane {
|
583
|
+
width: 100%;
|
584
|
+
display: block;
|
585
|
+
margin-left: 0;
|
586
|
+
padding: 15px;
|
587
|
+
background: white;
|
588
|
+
color: #222222; }
|
589
|
+
@media screen and (min-width: 768px) {
|
590
|
+
.acss-mainpane {
|
591
|
+
width: calc(100% - 15px);
|
592
|
+
clear: none; } }
|
593
|
+
@media screen and (min-width: 480px) {
|
594
|
+
.acss-mainpane {
|
595
|
+
width: 100%;
|
596
|
+
display: block;
|
597
|
+
margin-left: 0; } }
|
598
|
+
@media screen and (min-width: 480px) and (min-width: 768px) {
|
599
|
+
.acss-mainpane {
|
600
|
+
width: calc(50% - 15px);
|
601
|
+
clear: none; } }
|
602
|
+
|
603
|
+
@media screen and (min-width: 768px) {
|
604
|
+
.acss-mainpane {
|
605
|
+
width: 100%;
|
606
|
+
display: block;
|
607
|
+
margin-left: 0; } }
|
608
|
+
@media screen and (min-width: 768px) and (min-width: 768px) {
|
609
|
+
.acss-mainpane {
|
610
|
+
width: calc(66.66667% - 15px);
|
611
|
+
clear: none; } }
|
612
|
+
|
613
|
+
@media screen and (min-width: 960px) {
|
614
|
+
.acss-mainpane {
|
615
|
+
width: calc(100% - 200px); } }
|
616
|
+
|
617
|
+
body {
|
618
|
+
display: -webkit-box;
|
619
|
+
display: -o-flex;
|
620
|
+
display: -moz-flex;
|
621
|
+
display: -webkit-flex;
|
622
|
+
display: flex;
|
623
|
+
width: 100%;
|
624
|
+
-o-justify-content: space-between;
|
625
|
+
-ms-justify-content: space-between;
|
626
|
+
-moz-justify-content: space-between;
|
627
|
+
-webkit-justify-content: space-between;
|
628
|
+
justify-content: space-between;
|
629
|
+
align-items: stretch;
|
630
|
+
-ms-flex-wrap: wrap;
|
631
|
+
-moz-flex-wrap: wrap;
|
632
|
+
-webkit-flex-wrap: wrap;
|
633
|
+
flex-wrap: wrap; }
|
634
|
+
|
635
|
+
a, a[href] {
|
636
|
+
text-decoration: none;
|
637
|
+
color: white; }
|
638
|
+
a:hover, a[href]:hover {
|
639
|
+
text-decoration: underline; }
|
640
|
+
|
641
|
+
h1, h2, h3, h4, h5, p {
|
642
|
+
margin-top: 0; }
|
643
|
+
|
644
|
+
.test {
|
645
|
+
display: bloct; }
|
data/appcss-0.0.1.gem
ADDED
Binary file
|
data/lib/appcss/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appcss
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Kochanowicz
|
@@ -50,6 +50,9 @@ files:
|
|
50
50
|
- LICENSE.txt
|
51
51
|
- README.md
|
52
52
|
- Rakefile
|
53
|
+
- app/assets/stylesheets/appcss/app.css
|
54
|
+
- app/assets/stylesheets/appcss/index.css
|
55
|
+
- appcss-0.0.1.gem
|
53
56
|
- appcss.gemspec
|
54
57
|
- lib/appcss.rb
|
55
58
|
- lib/appcss/version.rb
|