bookends 3.1.4 → 3.1.5.beta1
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 +4 -4
- data/app/assets/stylesheets/bookends/_header.scss +122 -0
- data/lib/bookends/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ca919d49413bcce4a4b3d421a465c5ac92bfc283
|
|
4
|
+
data.tar.gz: c9808384f3e74d6c46a985dfb95a58156e125cc6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5728250acf9a936ab9affbb7229210d7190c9ea159f92e4dcd465cdb96a48529950d6dbed98dbdc65c36826fb85b0845a1ada490b0a30f85279e56819b41c8ef
|
|
7
|
+
data.tar.gz: fbbd6530a65ba7da105c977fae7722c43d41cb4e983025463d0cb0419ad34bd6f1e9bf8d9d7bbcc9eb0488ebcbfaf9cb86a4bb223f947a359bb90342a89f128e
|
|
@@ -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 {
|
|
@@ -172,6 +173,10 @@
|
|
|
172
173
|
box-shadow: 0 2px 7px fade-out($black, .825);
|
|
173
174
|
}
|
|
174
175
|
|
|
176
|
+
@media screen and (min-width: $bp-sm) {
|
|
177
|
+
background: none;
|
|
178
|
+
}
|
|
179
|
+
|
|
175
180
|
&[class*="glostick"] {
|
|
176
181
|
padding: 0;
|
|
177
182
|
|
|
@@ -308,6 +313,17 @@
|
|
|
308
313
|
.more-blog {
|
|
309
314
|
width: 50%;
|
|
310
315
|
|
|
316
|
+
.btn-xs {
|
|
317
|
+
border-radius: $border-radius;
|
|
318
|
+
padding: .7em 1.5em;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
img {
|
|
322
|
+
max-width: 90%;
|
|
323
|
+
display: block;
|
|
324
|
+
margin-bottom: 10px;
|
|
325
|
+
}
|
|
326
|
+
|
|
311
327
|
@include media($tablet) {
|
|
312
328
|
width: 100%;
|
|
313
329
|
}
|
|
@@ -330,6 +346,7 @@
|
|
|
330
346
|
line-height: 1.4;
|
|
331
347
|
color: #333;
|
|
332
348
|
font-weight: 500;
|
|
349
|
+
margin: .7em 0;
|
|
333
350
|
|
|
334
351
|
a {
|
|
335
352
|
color: #333;
|
|
@@ -411,6 +428,23 @@
|
|
|
411
428
|
margin-right: 12px;
|
|
412
429
|
}
|
|
413
430
|
}
|
|
431
|
+
|
|
432
|
+
.button_to {
|
|
433
|
+
display: inline-block;
|
|
434
|
+
|
|
435
|
+
input {
|
|
436
|
+
padding: 7px 0;
|
|
437
|
+
display: inline-block;
|
|
438
|
+
background-color: transparent;
|
|
439
|
+
border: none;
|
|
440
|
+
color: rgb(199, 192, 222);
|
|
441
|
+
outline: none;
|
|
442
|
+
|
|
443
|
+
&:hover {
|
|
444
|
+
color: #FFF;
|
|
445
|
+
}
|
|
446
|
+
}
|
|
447
|
+
}
|
|
414
448
|
}
|
|
415
449
|
|
|
416
450
|
|
|
@@ -637,9 +671,15 @@
|
|
|
637
671
|
color: $white;
|
|
638
672
|
color: fade-out($white, .5);
|
|
639
673
|
font-size: 13px !important;
|
|
674
|
+
line-height: 1.35;
|
|
675
|
+
font-weight: 300;
|
|
640
676
|
@include transition(.15s ease-in-out);
|
|
641
677
|
-webkit-font-smoothing: subpixel-antialiased;
|
|
642
678
|
|
|
679
|
+
@include placeholder {
|
|
680
|
+
color: fade-out(#fff, .5);
|
|
681
|
+
}
|
|
682
|
+
|
|
643
683
|
@include media($bp-sm) {
|
|
644
684
|
width: 100% !important;
|
|
645
685
|
}
|
|
@@ -651,6 +691,79 @@
|
|
|
651
691
|
&:focus {
|
|
652
692
|
background: fade-out($white, .1) !important;
|
|
653
693
|
color: #222;
|
|
694
|
+
|
|
695
|
+
@include placeholder {
|
|
696
|
+
color: #aaa;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
@media screen and (min-width: 1110px) {
|
|
700
|
+
width: 200px !important;
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
.mobile-nav {
|
|
708
|
+
@include hide-text();
|
|
709
|
+
width: 30px;
|
|
710
|
+
height: 20px;
|
|
711
|
+
position: relative;
|
|
712
|
+
@include transform(rotate(0deg));
|
|
713
|
+
@include transition(.3s ease-in-out);
|
|
714
|
+
cursor: pointer;
|
|
715
|
+
|
|
716
|
+
span {
|
|
717
|
+
display: block;
|
|
718
|
+
position: absolute;
|
|
719
|
+
height: 2px;
|
|
720
|
+
width: 100%;
|
|
721
|
+
background: #C7BFDF;
|
|
722
|
+
border-radius: 9px;
|
|
723
|
+
opacity: 1;
|
|
724
|
+
left: 0;
|
|
725
|
+
@include transform(rotate(0deg));
|
|
726
|
+
@include transition(.15s ease-in-out);
|
|
727
|
+
|
|
728
|
+
&:nth-child(1) {
|
|
729
|
+
top: 0px;
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
&:nth-child(2),
|
|
733
|
+
&:nth-child(3) {
|
|
734
|
+
top: 8px;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
&:nth-child(4) {
|
|
738
|
+
top: 16px;
|
|
739
|
+
}
|
|
740
|
+
}
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.active {
|
|
744
|
+
.mobile-nav {
|
|
745
|
+
display: block;
|
|
746
|
+
|
|
747
|
+
span {
|
|
748
|
+
&:nth-child(1) {
|
|
749
|
+
top: 6px;
|
|
750
|
+
width: 0%;
|
|
751
|
+
left: 50%;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
&:nth-child(2) {
|
|
755
|
+
@include transform(rotate(45deg));
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
&:nth-child(3) {
|
|
759
|
+
@include transform(rotate(-45deg));
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
&:nth-child(4) {
|
|
763
|
+
top: 6px;
|
|
764
|
+
width: 0%;
|
|
765
|
+
left: 50%;
|
|
766
|
+
background: blue;
|
|
654
767
|
}
|
|
655
768
|
}
|
|
656
769
|
}
|
|
@@ -704,6 +817,10 @@
|
|
|
704
817
|
margin: 0;
|
|
705
818
|
}
|
|
706
819
|
|
|
820
|
+
h1, h2 {
|
|
821
|
+
-webkit-font-smoothing: antialiased;
|
|
822
|
+
}
|
|
823
|
+
|
|
707
824
|
h1 {
|
|
708
825
|
color: $white;
|
|
709
826
|
}
|
|
@@ -719,6 +836,11 @@
|
|
|
719
836
|
h4, h5 {
|
|
720
837
|
font-weight: $font-normal;
|
|
721
838
|
}
|
|
839
|
+
|
|
840
|
+
small {
|
|
841
|
+
display: block;
|
|
842
|
+
margin-top: 0.4em;
|
|
843
|
+
}
|
|
722
844
|
}
|
|
723
845
|
|
|
724
846
|
body.purple {
|
data/lib/bookends/version.rb
CHANGED
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.
|
|
4
|
+
version: 3.1.5.beta1
|
|
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-
|
|
11
|
+
date: 2016-10-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -294,9 +294,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
294
294
|
version: '0'
|
|
295
295
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
296
296
|
requirements:
|
|
297
|
-
- - "
|
|
297
|
+
- - ">"
|
|
298
298
|
- !ruby/object:Gem::Version
|
|
299
|
-
version:
|
|
299
|
+
version: 1.3.1
|
|
300
300
|
requirements: []
|
|
301
301
|
rubyforge_project:
|
|
302
302
|
rubygems_version: 2.4.8
|