appcss 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +4 -0
- data/app/assets/stylesheets/appcss/app.css +159 -83
- data/lib/appcss/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8ccfb970b353a3b121f50c121ad04486555c45b6
|
4
|
+
data.tar.gz: 79274a4d617190189b39bd40c336bcace367bc0c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed6565cf5632f9876fff4bcd42da539c19be2937b67591012fdcc1b299f8bb4a74301a0e583ce28907770ec61cd8201e64b1ebeeebf64287125bf8acf3f935fb
|
7
|
+
data.tar.gz: eb534911c664e87cca07f4816dbeca7ab07beb6b439c4c849fa6c1d345f1e64535cc1e49822b75fd9580e09d85778ea82de1834cfababebc85090024edbe054a
|
data/Gemfile
ADDED
@@ -428,7 +428,7 @@ th {
|
|
428
428
|
box-sizing: border-box; }
|
429
429
|
|
430
430
|
html {
|
431
|
-
background: #
|
431
|
+
background: #394956;
|
432
432
|
color: white; }
|
433
433
|
|
434
434
|
html, body {
|
@@ -436,21 +436,20 @@ html, body {
|
|
436
436
|
font-size: 16px; }
|
437
437
|
|
438
438
|
.grid-row {
|
439
|
+
display: -moz-box;
|
439
440
|
display: -webkit-box;
|
440
|
-
display: -o-flex;
|
441
|
-
display: -moz-flex;
|
442
441
|
display: -webkit-flex;
|
442
|
+
display: -ms-flexbox;
|
443
443
|
display: flex;
|
444
444
|
width: 100%;
|
445
|
-
-o-justify-content: space-between;
|
446
|
-
-ms-justify-content: space-between;
|
447
|
-
-moz-justify-content: space-between;
|
448
445
|
-webkit-justify-content: space-between;
|
446
|
+
-moz-justify-content: space-between;
|
449
447
|
justify-content: space-between;
|
448
|
+
-webkit-align-items: stretch;
|
449
|
+
-moz-align-items: stretch;
|
450
450
|
align-items: stretch;
|
451
|
-
-ms-flex-wrap: wrap;
|
452
|
-
-moz-flex-wrap: wrap;
|
453
451
|
-webkit-flex-wrap: wrap;
|
452
|
+
-moz-flex-wrap: wrap;
|
454
453
|
flex-wrap: wrap; }
|
455
454
|
|
456
455
|
.acss-sidebar {
|
@@ -485,6 +484,8 @@ html, body {
|
|
485
484
|
width: calc(33.33333% - 15px);
|
486
485
|
clear: none; } }
|
487
486
|
|
487
|
+
.acss-sidebar a {
|
488
|
+
color: white; }
|
488
489
|
@media screen and (min-width: 960px) {
|
489
490
|
.acss-sidebar {
|
490
491
|
width: 200px;
|
@@ -493,45 +494,17 @@ html, body {
|
|
493
494
|
left: 0;
|
494
495
|
height: calc(100vh - 50px);
|
495
496
|
overflow: auto; } }
|
496
|
-
.acss-sidebar .tools {
|
497
|
-
display: none;
|
498
|
-
position: absolute;
|
499
|
-
top: 0;
|
500
|
-
right: 0;
|
501
|
-
bottom: 0;
|
502
|
-
padding: 5px 15px; }
|
503
|
-
.acss-sidebar .tools span {
|
504
|
-
cursor: pointer;
|
505
|
-
display: inline-block;
|
506
|
-
text-align: center;
|
507
|
-
width: 15px;
|
508
|
-
border-radius: 50%;
|
509
|
-
position: relative; }
|
510
|
-
.acss-sidebar .tools span .tooltip {
|
511
|
-
display: none;
|
512
|
-
position: absolute;
|
513
|
-
top: 30px;
|
514
|
-
right: 0px;
|
515
|
-
background: rgba(255, 255, 255, 0.7);
|
516
|
-
padding: 5px;
|
517
|
-
color: #222222;
|
518
|
-
text-shadow: none;
|
519
|
-
border-radius: 3px;
|
520
|
-
z-index: 999; }
|
521
|
-
.acss-sidebar .tools span:hover {
|
522
|
-
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); }
|
523
|
-
.acss-sidebar .tools span:hover .tooltip {
|
524
|
-
display: block; }
|
525
|
-
.acss-sidebar header {
|
526
|
-
position: relative;
|
527
|
-
background-color: rgba(0, 0, 0, 0.2);
|
528
|
-
padding: 5px 15px; }
|
529
497
|
.acss-sidebar ul {
|
530
498
|
list-style: none;
|
531
499
|
padding: 0;
|
532
|
-
margin:
|
500
|
+
margin: 0; }
|
533
501
|
.acss-sidebar ul li {
|
534
502
|
position: relative; }
|
503
|
+
.acss-sidebar ul li ul {
|
504
|
+
margin-left: 15px; }
|
505
|
+
.acss-sidebar ul li ul li a, .acss-sidebar ul li ul li input {
|
506
|
+
margin-left: -15px;
|
507
|
+
padding-left: 30px; }
|
535
508
|
.acss-sidebar ul li a {
|
536
509
|
padding: 5px 15px;
|
537
510
|
display: block; }
|
@@ -551,41 +524,48 @@ html, body {
|
|
551
524
|
background: white;
|
552
525
|
color: #333333;
|
553
526
|
outline: 0px; }
|
527
|
+
.acss-sidebar ul li .tools {
|
528
|
+
display: none;
|
529
|
+
position: absolute;
|
530
|
+
top: 0;
|
531
|
+
right: 0;
|
532
|
+
bottom: 0;
|
533
|
+
padding: 5px 15px; }
|
534
|
+
.acss-sidebar ul li .tools span {
|
535
|
+
cursor: pointer;
|
536
|
+
display: inline-block;
|
537
|
+
text-align: center;
|
538
|
+
width: 15px;
|
539
|
+
border-radius: 50%;
|
540
|
+
position: relative; }
|
541
|
+
.acss-sidebar ul li .tools span .tooltip {
|
542
|
+
display: none;
|
543
|
+
position: absolute;
|
544
|
+
top: 30px;
|
545
|
+
right: 0px;
|
546
|
+
background: rgba(255, 255, 255, 0.7);
|
547
|
+
padding: 5px;
|
548
|
+
color: #333333;
|
549
|
+
text-shadow: none;
|
550
|
+
border-radius: 3px;
|
551
|
+
z-index: 999; }
|
552
|
+
.acss-sidebar ul li .tools span:hover {
|
553
|
+
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); }
|
554
|
+
.acss-sidebar ul li .tools span:hover .tooltip {
|
555
|
+
display: block; }
|
554
556
|
.acss-sidebar ul li.edit a, .acss-sidebar ul li.edit .tools {
|
555
557
|
display: none; }
|
556
558
|
.acss-sidebar ul li.edit a + input {
|
557
559
|
display: block; }
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
560
|
+
.acss-sidebar ul li:hover .tools {
|
561
|
+
display: block; }
|
562
|
+
.acss-sidebar ul li:hover.edit .tools {
|
563
|
+
display: none; }
|
562
564
|
.acss-sidebar h1 {
|
563
565
|
font-size: 0.85rem;
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
width: 100%;
|
568
|
-
display: block;
|
569
|
-
margin-left: 0; }
|
570
|
-
@media screen and (min-width: 768px) {
|
571
|
-
.acss-header {
|
572
|
-
width: calc(100% - 15px);
|
573
|
-
clear: none; } }
|
574
|
-
@media screen and (min-width: 768px) {
|
575
|
-
.acss-header {
|
576
|
-
width: 100%;
|
577
|
-
display: block;
|
578
|
-
margin-left: 0; } }
|
579
|
-
@media screen and (min-width: 768px) and (min-width: 768px) {
|
580
|
-
.acss-header {
|
581
|
-
width: calc(100% - 15px);
|
582
|
-
clear: none; } }
|
583
|
-
|
584
|
-
.acss-header ul {
|
585
|
-
list-style: none;
|
586
|
-
padding: 0 15px; }
|
587
|
-
.acss-header ul li {
|
588
|
-
display: inline-block; }
|
566
|
+
background-color: rgba(0, 0, 0, 0.2);
|
567
|
+
margin: 0;
|
568
|
+
padding: 5px 15px; }
|
589
569
|
|
590
570
|
.acss-mainpane {
|
591
571
|
width: 100%;
|
@@ -593,7 +573,7 @@ html, body {
|
|
593
573
|
margin-left: 0;
|
594
574
|
padding: 15px;
|
595
575
|
background: white;
|
596
|
-
color: #
|
576
|
+
color: #333333; }
|
597
577
|
@media screen and (min-width: 768px) {
|
598
578
|
.acss-mainpane {
|
599
579
|
width: calc(100% - 15px);
|
@@ -628,29 +608,125 @@ html, body {
|
|
628
608
|
height: calc(100vh - 50px);
|
629
609
|
right: 0;
|
630
610
|
overflow: auto; } }
|
611
|
+
.acss-mainpane section:target {
|
612
|
+
padding-top: 20px; }
|
613
|
+
|
614
|
+
.acss-navbar {
|
615
|
+
display: -moz-box;
|
616
|
+
display: -webkit-box;
|
617
|
+
display: -webkit-flex;
|
618
|
+
display: -ms-flexbox;
|
619
|
+
display: inline-flex;
|
620
|
+
-webkit-align-items: flex-start;
|
621
|
+
-moz-align-items: flex-start;
|
622
|
+
align-items: flex-start;
|
623
|
+
-webkit-flex-wrap: wrap;
|
624
|
+
-moz-flex-wrap: wrap;
|
625
|
+
flex-wrap: wrap;
|
626
|
+
-webkit-justify-content: space-between;
|
627
|
+
-moz-justify-content: space-between;
|
628
|
+
justify-content: space-between;
|
629
|
+
-webkit-align-content: space-between;
|
630
|
+
-moz-align-content: space-between;
|
631
|
+
align-content: space-between;
|
632
|
+
width: 100%;
|
633
|
+
padding: 0 10px; }
|
634
|
+
.acss-navbar a {
|
635
|
+
color: white; }
|
636
|
+
.acss-navbar p {
|
637
|
+
margin: 0; }
|
638
|
+
.acss-navbar ul {
|
639
|
+
margin: 15px 0;
|
640
|
+
padding: 0;
|
641
|
+
display: -moz-box;
|
642
|
+
display: -webkit-box;
|
643
|
+
display: -webkit-flex;
|
644
|
+
display: -ms-flexbox;
|
645
|
+
display: inline-flex;
|
646
|
+
-webkit-justify-content: space-between;
|
647
|
+
-moz-justify-content: space-between;
|
648
|
+
justify-content: space-between;
|
649
|
+
-webkit-align-content: space-between;
|
650
|
+
-moz-align-content: space-between;
|
651
|
+
align-content: space-between;
|
652
|
+
-webkit-align-items: center;
|
653
|
+
-moz-align-items: center;
|
654
|
+
align-items: center;
|
655
|
+
-webkit-flex-wrap: wrap;
|
656
|
+
-moz-flex-wrap: wrap;
|
657
|
+
flex-wrap: wrap; }
|
658
|
+
.acss-navbar ul li {
|
659
|
+
list-style: none;
|
660
|
+
margin: 0px 5px; }
|
661
|
+
|
662
|
+
.acss-btn {
|
663
|
+
padding: 4px 10px;
|
664
|
+
background-color: rgba(0, 0, 0, 0.3);
|
665
|
+
color: white;
|
666
|
+
text-decoration: none;
|
667
|
+
border: 0px;
|
668
|
+
outline: none;
|
669
|
+
cursor: pointer;
|
670
|
+
display: inline-block;
|
671
|
+
-moz-border-radius: 3px;
|
672
|
+
-webkit-border-radius: 3px;
|
673
|
+
border-radius: 3px;
|
674
|
+
margin-bottom: 15px;
|
675
|
+
font-size: 0.75rem; }
|
676
|
+
.acss-btn:hover {
|
677
|
+
text-decoration: none;
|
678
|
+
box-shadow: inset 0px 0px 0px 100px rgba(0, 0, 0, 0.05); }
|
679
|
+
.acss-btn:active {
|
680
|
+
text-decoration: none;
|
681
|
+
box-shadow: inset 0px 0px 0px 100px rgba(0, 0, 0, 0.1); }
|
682
|
+
|
683
|
+
input[type="text"], input[type="email"], input[type="search"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="number"], input[type="password"], input[type="tel"], input[type="time"], input[type="url"], input[type="week"] {
|
684
|
+
border: 1px solid #a1a1a1;
|
685
|
+
background-color: transparent;
|
686
|
+
font-size: 0.85rem;
|
687
|
+
padding: 5px;
|
688
|
+
width: 100%; }
|
689
|
+
input[type="text"]:hover, input[type="email"]:hover, input[type="search"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="tel"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover {
|
690
|
+
background-color: white; }
|
691
|
+
input[type="text"]:active, input[type="text"]:focus, input[type="email"]:active, input[type="email"]:focus, input[type="search"]:active, input[type="search"]:focus, input[type="date"]:active, input[type="date"]:focus, input[type="datetime"]:active, input[type="datetime"]:focus, input[type="datetime-local"]:active, input[type="datetime-local"]:focus, input[type="month"]:active, input[type="month"]:focus, input[type="number"]:active, input[type="number"]:focus, input[type="password"]:active, input[type="password"]:focus, input[type="tel"]:active, input[type="tel"]:focus, input[type="time"]:active, input[type="time"]:focus, input[type="url"]:active, input[type="url"]:focus, input[type="week"]:active, input[type="week"]:focus {
|
692
|
+
outline: none;
|
693
|
+
background-color: white;
|
694
|
+
border-color: #7f7f7f; }
|
695
|
+
|
696
|
+
progress {
|
697
|
+
width: 100%;
|
698
|
+
height: 15px; }
|
699
|
+
progress::-webkit-progress-bar {
|
700
|
+
min-height: 15px;
|
701
|
+
-webkit-appearance: none;
|
702
|
+
appearance: none;
|
703
|
+
-moz-appearance: none; }
|
704
|
+
progress::-webkit-progress-value {
|
705
|
+
display: block; }
|
631
706
|
|
632
707
|
body {
|
708
|
+
display: -moz-box;
|
633
709
|
display: -webkit-box;
|
634
|
-
display: -o-flex;
|
635
|
-
display: -moz-flex;
|
636
710
|
display: -webkit-flex;
|
711
|
+
display: -ms-flexbox;
|
637
712
|
display: flex;
|
638
713
|
width: 100%;
|
639
|
-
-o-justify-content: space-between;
|
640
|
-
-ms-justify-content: space-between;
|
641
|
-
-moz-justify-content: space-between;
|
642
714
|
-webkit-justify-content: space-between;
|
715
|
+
-moz-justify-content: space-between;
|
643
716
|
justify-content: space-between;
|
717
|
+
-webkit-align-items: stretch;
|
718
|
+
-moz-align-items: stretch;
|
644
719
|
align-items: stretch;
|
645
|
-
-ms-flex-wrap: wrap;
|
646
|
-
-moz-flex-wrap: wrap;
|
647
720
|
-webkit-flex-wrap: wrap;
|
721
|
+
-moz-flex-wrap: wrap;
|
648
722
|
flex-wrap: wrap; }
|
649
723
|
|
650
|
-
a
|
651
|
-
text-decoration: none;
|
652
|
-
|
653
|
-
|
724
|
+
a {
|
725
|
+
text-decoration: none; }
|
726
|
+
|
727
|
+
a:link {
|
728
|
+
text-decoration: none; }
|
729
|
+
a:link:hover {
|
654
730
|
text-decoration: underline; }
|
655
731
|
|
656
732
|
h1, h2, h3, h4, h5, p {
|
data/lib/appcss/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Kochanowicz
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-08-
|
11
|
+
date: 2014-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -46,6 +46,7 @@ extensions: []
|
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
48
|
- ".gitignore"
|
49
|
+
- Gemfile
|
49
50
|
- LICENSE.txt
|
50
51
|
- README.md
|
51
52
|
- Rakefile
|
@@ -77,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
77
78
|
version: '0'
|
78
79
|
requirements: []
|
79
80
|
rubyforge_project:
|
80
|
-
rubygems_version: 2.2.
|
81
|
+
rubygems_version: 2.2.2
|
81
82
|
signing_key:
|
82
83
|
specification_version: 4
|
83
84
|
summary: Like bootstrap for robust backend applications.
|