minimum_viable_product 0.0.29 → 0.0.30

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: 73c242d138085fca35f3b6c73a142f42a14978a9
4
- data.tar.gz: 3b603cfd8c8403de7167c4086aca0bd60bae5769
3
+ metadata.gz: 860e1cecd1720d09c751ad14535f1276f0077dea
4
+ data.tar.gz: 36492d61ac53938b3f64daad061df196745490d4
5
5
  SHA512:
6
- metadata.gz: 390d6a41da7101aa00d0d558e891013ace582f0a16a077e567d345dbdd557dd226bcc49bd6463915e9cb351691db1a525bf02cbc6ecd40439b284c93427a789f
7
- data.tar.gz: 6ff8f4e248feddbca2f3c32e6f326dc009846e8f53bed0c6c15e67b0fec557110e4bc08c9e012e73f763016a09d8b6fae18264e4bd7a3565c7f529f6cafc5d5e
6
+ metadata.gz: ae1ea80329071fb425299fdd99bb156fb3de8f24122575ae76f5368b04714420af0b896bbc75cf7dc09b0783545a23accb6ae27975a25664b2fcf51e4f0adb77
7
+ data.tar.gz: 9a0b7a195c419d0ceb585da53005261265d63a0ad139ea9cd1669af1389dee2d65f9f6a8757b0c58a78256a695f79b4fc4e990ed00b9e0ee096cbf32057044f6
@@ -14,7 +14,6 @@
14
14
  *= require_tree ./layout
15
15
  *= require_tree ./components
16
16
  *= require_tree ./skin
17
- *= require_tree ./pages
18
17
  *
19
18
  *= require_self
20
19
  */
@@ -0,0 +1,20 @@
1
+ // $bc-facebook: #3b5998;
2
+ //
3
+ // $bc-twitter: #1da1f2;
4
+ // $bc-twitter-2: #14171a;
5
+ // $bc-twitter-3: #657786;
6
+ // $bc-twitter-4: #aab8c2;
7
+ // $bc-twitter-5: #e1e8ed;
8
+ // $bc-twitter-6: #f5f8fa;
9
+ //
10
+ // $bc-youtube: #cd201f;
11
+ //
12
+ // .btn-facebook {
13
+ // background: $bc-facebook;
14
+ // color: #FFF;
15
+ //
16
+ // &:hover {
17
+ // background: darken( $bc-facebook, 10% );
18
+ // color: #FFF;
19
+ // }
20
+ // }
@@ -1,3 +1,3 @@
1
1
  module MinimumViableProduct
2
- VERSION = "0.0.29"
2
+ VERSION = "0.0.30"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minimum_viable_product
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.29
4
+ version: 0.0.30
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Hunter
@@ -430,7 +430,7 @@ files:
430
430
  - app/assets/javascripts/minimum_viable_product/application.js.erb
431
431
  - app/assets/javascripts/minimum_viable_product/init/controllers.js
432
432
  - app/assets/stylesheets/minimum_viable_product/application.scss
433
- - app/assets/stylesheets/minimum_viable_product/components/buttons.scss
433
+ - app/assets/stylesheets/minimum_viable_product/components/buttons.scss.erb
434
434
  - app/assets/stylesheets/minimum_viable_product/components/fonts.scss
435
435
  - app/assets/stylesheets/minimum_viable_product/components/spacing.scss
436
436
  - app/assets/stylesheets/minimum_viable_product/components/typography.scss
@@ -439,7 +439,6 @@ files:
439
439
  - app/assets/stylesheets/minimum_viable_product/layout/basic.scss
440
440
  - app/assets/stylesheets/minimum_viable_product/layout/carousel.scss
441
441
  - app/assets/stylesheets/minimum_viable_product/layout/cover.scss
442
- - app/assets/stylesheets/minimum_viable_product/pages/sample.scss
443
442
  - app/assets/stylesheets/minimum_viable_product/skin/style.scss
444
443
  - app/controllers/concerns/minimum_viable_product/analytics_concern.rb
445
444
  - app/controllers/concerns/minimum_viable_product/seo_concern.rb
@@ -1,20 +0,0 @@
1
- $bc-facebook: #3b5998;
2
-
3
- $bc-twitter: #1da1f2;
4
- $bc-twitter-2: #14171a;
5
- $bc-twitter-3: #657786;
6
- $bc-twitter-4: #aab8c2;
7
- $bc-twitter-5: #e1e8ed;
8
- $bc-twitter-6: #f5f8fa;
9
-
10
- $bc-youtube: #cd201f;
11
-
12
- .btn-facebook {
13
- background: $bc-facebook;
14
- color: #FFF;
15
-
16
- &:hover {
17
- background: darken( $bc-facebook, 10% );
18
- color: #FFF;
19
- }
20
- }
@@ -1,14 +0,0 @@
1
- .home-pages {
2
- .topic {
3
- position:relative;
4
-
5
- &:hover {
6
- cursor: pointer;
7
- }
8
-
9
- p {
10
- text-transform: uppercase;
11
- font-weight: bold;
12
- }
13
- }
14
- }