bookends 3.1.5 → 3.1.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 63259af6d98abffab65a2b1c2cf30e22ab1ede34
4
- data.tar.gz: f2517783b578592ad164ae3444d43e73b5baf426
3
+ metadata.gz: b3fa87c8014e344819b4bc1de6d0be0c9e92d918
4
+ data.tar.gz: 8d95e9003c79838500a2b7c2750d14acda55ce97
5
5
  SHA512:
6
- metadata.gz: c04441d16e4c5c646b280a9a69e5124effc9ee97910667d3fc50ffbb6687cf1cbb44e6ae3d4f0fc326336cd0f673b5c723d53baff9b341b6dfff7d53bf823267
7
- data.tar.gz: 94bb7333a63a6f2c38d221a14da27aa0d05805d57f3336fa82e0969d1cc72c829ea264f411c83689972d4c6a43e3298401417035d66c6ba8ee7b8cf0dedb7cfe
6
+ metadata.gz: 287b1b16d755740e9c0b2760364a69098534e051f9bed68311d8c8f668f2c318c1d982a20c9ddd4dd663c03c207c162d74b01d5fd52a18711a43da86bcd53fad
7
+ data.tar.gz: 31db76081cd414f6bc291bdcaa185218651766dc5af92235165aa7b178d103a610d6ba1d846309dca85b551b1ae064025a2def3420e71992e402f715d46eb000
@@ -38,6 +38,7 @@
38
38
  background-size: 100% 1000px;
39
39
  color: lighten($purple, 30%);
40
40
  margin: 0;
41
+ position: relative;
41
42
  }
42
43
 
43
44
  #navigation {
@@ -308,6 +309,17 @@
308
309
  .more-blog {
309
310
  width: 50%;
310
311
 
312
+ .btn-xs {
313
+ border-radius: $border-radius;
314
+ padding: .7em 1.5em;
315
+ }
316
+
317
+ img {
318
+ max-width: 90%;
319
+ display: block;
320
+ margin-bottom: 10px;
321
+ }
322
+
311
323
  @include media($tablet) {
312
324
  width: 100%;
313
325
  }
@@ -330,6 +342,7 @@
330
342
  line-height: 1.4;
331
343
  color: #333;
332
344
  font-weight: 500;
345
+ margin: .7em 0;
333
346
 
334
347
  a {
335
348
  color: #333;
@@ -411,6 +424,23 @@
411
424
  margin-right: 12px;
412
425
  }
413
426
  }
427
+
428
+ .button_to {
429
+ display: inline-block;
430
+
431
+ input {
432
+ padding: 7px 0;
433
+ display: inline-block;
434
+ background-color: transparent;
435
+ border: none;
436
+ color: rgb(199, 192, 222);
437
+ outline: none;
438
+
439
+ &:hover {
440
+ color: #FFF;
441
+ }
442
+ }
443
+ }
414
444
  }
415
445
 
416
446
 
@@ -637,9 +667,15 @@
637
667
  color: $white;
638
668
  color: fade-out($white, .5);
639
669
  font-size: 13px !important;
670
+ line-height: 1.35;
671
+ font-weight: 300;
640
672
  @include transition(.15s ease-in-out);
641
673
  -webkit-font-smoothing: subpixel-antialiased;
642
674
 
675
+ @include placeholder {
676
+ color: fade-out(#fff, .5);
677
+ }
678
+
643
679
  @include media($bp-sm) {
644
680
  width: 100% !important;
645
681
  }
@@ -651,6 +687,79 @@
651
687
  &:focus {
652
688
  background: fade-out($white, .1) !important;
653
689
  color: #222;
690
+
691
+ @include placeholder {
692
+ color: #aaa;
693
+ }
694
+
695
+ @media screen and (min-width: 1110px) {
696
+ width: 200px !important;
697
+ }
698
+ }
699
+ }
700
+ }
701
+ }
702
+
703
+ .mobile-nav {
704
+ @include hide-text();
705
+ width: 30px;
706
+ height: 20px;
707
+ position: relative;
708
+ @include transform(rotate(0deg));
709
+ @include transition(.3s ease-in-out);
710
+ cursor: pointer;
711
+
712
+ span {
713
+ display: block;
714
+ position: absolute;
715
+ height: 2px;
716
+ width: 100%;
717
+ background: #C7BFDF;
718
+ border-radius: 9px;
719
+ opacity: 1;
720
+ left: 0;
721
+ @include transform(rotate(0deg));
722
+ @include transition(.15s ease-in-out);
723
+
724
+ &:nth-child(1) {
725
+ top: 0px;
726
+ }
727
+
728
+ &:nth-child(2),
729
+ &:nth-child(3) {
730
+ top: 8px;
731
+ }
732
+
733
+ &:nth-child(4) {
734
+ top: 16px;
735
+ }
736
+ }
737
+ }
738
+
739
+ .active {
740
+ .mobile-nav {
741
+ display: block;
742
+
743
+ span {
744
+ &:nth-child(1) {
745
+ top: 6px;
746
+ width: 0%;
747
+ left: 50%;
748
+ }
749
+
750
+ &:nth-child(2) {
751
+ @include transform(rotate(45deg));
752
+ }
753
+
754
+ &:nth-child(3) {
755
+ @include transform(rotate(-45deg));
756
+ }
757
+
758
+ &:nth-child(4) {
759
+ top: 6px;
760
+ width: 0%;
761
+ left: 50%;
762
+ background: blue;
654
763
  }
655
764
  }
656
765
  }
@@ -704,6 +813,10 @@
704
813
  margin: 0;
705
814
  }
706
815
 
816
+ h1, h2 {
817
+ -webkit-font-smoothing: antialiased;
818
+ }
819
+
707
820
  h1 {
708
821
  color: $white;
709
822
  }
@@ -719,6 +832,11 @@
719
832
  h4, h5 {
720
833
  font-weight: $font-normal;
721
834
  }
835
+
836
+ small {
837
+ display: block;
838
+ margin-top: 0.4em;
839
+ }
722
840
  }
723
841
 
724
842
  body.purple {
@@ -1,3 +1,3 @@
1
1
  module Bookends
2
- VERSION = '3.1.5'.freeze
2
+ VERSION = "3.1.6".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bookends
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.5
4
+ version: 3.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marketing Web Ops at heroku
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-19 00:00:00.000000000 Z
11
+ date: 2016-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails