bookends 4.2.9 → 5.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6fb71d309584fe23020676884b0ef4a7a10bbb4b6dc730764e0d056d9a5f64b6
4
- data.tar.gz: 17ed1c50a76d043ba0124c528ec912bf1ca9669cd5ed28b0fa46d4a4aa455e62
3
+ metadata.gz: b0defd3889881696388e3da2be894c1b111b5a8248c379dd1ceffc088b1eafb8
4
+ data.tar.gz: d9f1e51cdee2cf32c9ce27a1e8ee778e37ad72e14be1dd9b2e2d8fdf6f325c75
5
5
  SHA512:
6
- metadata.gz: 518e9d4aa74f321f206774ace4f5dd8b80935a0436356886b19c3f934f4921e526014d76c0f5fefb1d1804ba4ec340eea39a53c7f3718cc82e22f9d356de4ee5
7
- data.tar.gz: 9995f081270b107ebd6ba1d7eb6ae6123b4c2cac9a77c92130bed092cbab262395f1bd4194df34163f8b29a4fb2e584fa4c17366ecf91ca9a34fe23cc15f86f7
6
+ metadata.gz: 8b3a22451da1c98ad4875b953873c3d6e14beaa06c35dd710756c094a318b0caca4a71859eaefbee56ef7e8517efc03c1ab7afe649e924b7cfd9c3af7e1ff0aa
7
+ data.tar.gz: 49e88928732716373597870a7b4d59d355080a8f7f01690868a8bd8a5b8fd9dddd415d3763e8d1532241ca8181bf81d6574871b86f207e0e21fe4d7896043d1c
@@ -3,10 +3,10 @@
3
3
  // ==========================================================================
4
4
 
5
5
  //- Primary font
6
- @include font-face(BentonSans, 'bentonsans-book', 200, $asset-pipeline: true, $file-formats: eot woff ttf svg);
7
- @include font-face(BentonSans, 'bentonsans-regular', normal, $asset-pipeline: true, $file-formats: eot woff ttf svg);
8
- @include font-face(BentonSans, 'bentonsans-medium', bold, $asset-pipeline: true, $file-formats: eot woff ttf svg);
6
+ @include font-face(BentonSans, 'bentonsans-book', $font-light, $asset-pipeline: true, $file-formats: eot woff ttf svg);
7
+ @include font-face(BentonSans, 'bentonsans-regular', $font-normal, $asset-pipeline: true, $file-formats: eot woff ttf svg);
8
+ @include font-face(BentonSans, 'bentonsans-medium', $font-bold, $asset-pipeline: true, $file-formats: eot woff ttf svg);
9
9
 
10
10
  //- Monospace font
11
- @include font-face(Inconsolata, 'inconsolata-bold', bold, $asset-pipeline: true, $file-formats: eot woff ttf svg);
12
- @include font-face(Inconsolata, 'inconsolata-regular', normal, $asset-pipeline: true, $file-formats: eot woff ttf svg);
11
+ @include font-face(Inconsolata, 'inconsolata-regular', $font-normal, $asset-pipeline: true, $file-formats: eot woff ttf svg);
12
+ @include font-face(Inconsolata, 'inconsolata-bold', $font-bold, $asset-pipeline: true, $file-formats: eot woff ttf svg);
@@ -93,7 +93,7 @@
93
93
  ul {
94
94
  list-style: none;
95
95
  padding-left: 0;
96
- font-weight: 200;
96
+ font-weight: $font-light;
97
97
  }
98
98
 
99
99
  h1,
@@ -108,14 +108,14 @@
108
108
  h3 {
109
109
  color: $color-purple;
110
110
  font-size: 14px;
111
- font-weight: 500;
111
+ font-weight: $font-normal;
112
112
  }
113
113
 
114
114
  h4 {
115
115
  margin: 1.33em 0;
116
116
  font-size: 12px;
117
117
  text-align: left;
118
- font-weight: bold;
118
+ font-weight: $font-bold;
119
119
  text-transform: uppercase;
120
120
  letter-spacing: .1em;
121
121
  color: $color-header;
@@ -240,7 +240,7 @@
240
240
  text-transform: uppercase;
241
241
  letter-spacing: .05em;
242
242
  padding: 0;
243
- font-weight: bold;
243
+ font-weight: $font-bold;
244
244
  text-align: center;
245
245
  color: #fff;
246
246
 
@@ -342,7 +342,7 @@
342
342
  text-transform: uppercase;
343
343
  letter-spacing: .05em;
344
344
  font-size: 10px;
345
- font-weight: bold;
345
+ font-weight: $font-bold;
346
346
 
347
347
  @include screen() {
348
348
  display: inline-block;
@@ -441,7 +441,7 @@
441
441
  margin-top: 0;
442
442
  min-width: 200px;
443
443
  font-size: 14px;
444
- font-weight: normal;
444
+ font-weight: $font-normal;
445
445
  display: none;
446
446
 
447
447
  @include screen(min-width, $threshold-tablet) {
@@ -477,7 +477,7 @@
477
477
 
478
478
  a {
479
479
  color: #444;
480
- font-weight: 400;
480
+ font-weight: $font-normal;
481
481
 
482
482
  &:hover {
483
483
  color: $color-purple;
@@ -54,7 +54,7 @@ $gs-asset-path: 'bookends/glostick_icons';
54
54
  transition: .4s cubic-bezier(.3, 0, 0, 1.3);
55
55
  background-clip: content-box;
56
56
  z-index: 9991;
57
- font-weight: normal;
57
+ font-weight: $font-normal;
58
58
  z-index: 2;
59
59
 
60
60
  @media (min-width: 1024px) {
@@ -79,10 +79,10 @@ input.gsc-input,
79
79
  .gssb_a td {
80
80
  line-height: normal !important;
81
81
  padding: 2px 5px !important;
82
- font-weight: bold;
82
+ font-weight: $font-bold;
83
83
 
84
84
  b {
85
- font-weight: 200;
85
+ font-weight: $font-light;
86
86
  color: fade-out(#222, .2);
87
87
  }
88
88
 
@@ -219,7 +219,7 @@ input.gsc-input,
219
219
  color: #999 !important;
220
220
  min-width: 75px !important;
221
221
  border-radius: 0 !important;
222
- font-weight: 300 !important;
222
+ font-weight: $font-light !important;
223
223
  @include box-sizing(border-box);
224
224
  &:hover, &:focus {
225
225
  background: transparent !important;
@@ -232,7 +232,7 @@ input.gsc-input,
232
232
  &.gsc-tabhActive {
233
233
  color: $purple !important;
234
234
  cursor: default;
235
- font-weight: bold !important;
235
+ font-weight: $font-bold !important;
236
236
  background: transparent !important;
237
237
  border-bottom: 2px solid $purple !important;
238
238
  }
@@ -375,7 +375,7 @@ input.gsc-input,
375
375
 
376
376
  .gs-promotion.gs-result a.gs-title:link,
377
377
  .gs-promotion.gs-result a.gs-title:visited {
378
- font-weight: bold;
378
+ font-weight: $font-bold;
379
379
  }
380
380
 
381
381
  //Pagination
@@ -52,7 +52,7 @@
52
52
 
53
53
  position: relative;
54
54
  font-size: 14px;
55
- font-weight: 600;
55
+ font-weight: $font-bold;
56
56
  -webkit-font-smoothing: antialiased;
57
57
  line-height: 1;
58
58
 
@@ -208,7 +208,7 @@
208
208
  font-size: $font-sm;
209
209
  min-width: 200px;
210
210
  font-size: 14px;
211
- font-weight: normal;
211
+ font-weight: $font-normal;
212
212
 
213
213
  &.wide {
214
214
  min-width: 220px;
@@ -251,7 +251,7 @@
251
251
 
252
252
  li a {
253
253
  color: #444;
254
- font-weight: 400;
254
+ font-weight: $font-normal;
255
255
 
256
256
  &:hover {
257
257
  color: $purple;
@@ -423,12 +423,12 @@
423
423
  font-size: $font-sm;
424
424
  line-height: 1.4;
425
425
  color: #333;
426
- font-weight: 500;
426
+ font-weight: $font-normal;
427
427
  margin: .7em 0;
428
428
 
429
429
  a {
430
430
  color: #333;
431
- font-weight: 600;
431
+ font-weight: $font-bold;
432
432
 
433
433
  &:hover {
434
434
  color: $purple;
@@ -470,7 +470,7 @@
470
470
  color: white;
471
471
  background: #96A3B6;
472
472
  border-radius: 18px;
473
- font-weight: bold;
473
+ font-weight: $font-bold;
474
474
  text-transform: uppercase;
475
475
  vertical-align: middle;
476
476
  margin-left: 5px;
@@ -645,7 +645,7 @@
645
645
 
646
646
  a {
647
647
  color: fade-out($white, .2);
648
- font-weight: 500;
648
+ font-weight: $font-normal;
649
649
 
650
650
  &:hover {
651
651
  color: $blue;
@@ -839,7 +839,7 @@
839
839
  color: fade-out($white, .5);
840
840
  font-size: 13px !important;
841
841
  line-height: 1.35;
842
- font-weight: 300;
842
+ font-weight: $font-light;
843
843
  @include transition(.15s ease-in-out);
844
844
  -webkit-font-smoothing: subpixel-antialiased;
845
845
 
@@ -989,7 +989,7 @@
989
989
  float: left;
990
990
  padding: .7em 0 0 .8em;
991
991
  font-size: 1.25em;
992
- font-weight: 400;
992
+ font-weight: $font-normal;
993
993
  }
994
994
 
995
995
  #hero {
@@ -131,7 +131,7 @@ $search-icon-size: 14px;
131
131
  border-bottom: 2px solid transparent;
132
132
  line-height: 1.2;
133
133
  font-size: 13px;
134
- font-weight: 300;
134
+ font-weight: $font-light;
135
135
  color: #999;
136
136
 
137
137
  &:hover, &:focus {
@@ -145,7 +145,7 @@ $search-icon-size: 14px;
145
145
  &.active {
146
146
  border-bottom-color: $purple;
147
147
  cursor: default;
148
- font-weight: bold;
148
+ font-weight: $font-bold;
149
149
  color: $purple;
150
150
  }
151
151
  }
@@ -190,7 +190,7 @@ $search-icon-size: 14px;
190
190
 
191
191
  .search-result-title {
192
192
  margin-bottom: 0;
193
- font-weight: normal;
193
+ font-weight: $font-normal;
194
194
 
195
195
  a:link,
196
196
  a:visited {
@@ -26,7 +26,7 @@
26
26
  }
27
27
 
28
28
  .aa-dropdown-menu .aa-suggestion em {
29
- font-weight: bold;
29
+ font-weight: $font-bold;
30
30
  font-style: normal;
31
31
  }
32
32
  }
@@ -35,9 +35,9 @@ $font-main: "BentonSans", "Helvetica Neue", sans-serif;
35
35
  $font-mono: "Inconsolata", monospace;
36
36
 
37
37
  //- Font Weights
38
- $font-light: 100;
39
- $font-normal: normal;
40
- $font-bold: bold;
38
+ $font-light: 300;
39
+ $font-normal: 400;
40
+ $font-bold: 700;
41
41
 
42
42
  //- Layout
43
43
  $grid-full: 100%;
@@ -1,3 +1,3 @@
1
1
  module Bookends
2
- VERSION = '4.2.9'.freeze
2
+ VERSION = '5.0.0'.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: 4.2.9
4
+ version: 5.0.0
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: 2018-04-05 00:00:00.000000000 Z
11
+ date: 2018-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails