egghead-styles 1.0.73 → 1.0.74

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
  SHA1:
3
- metadata.gz: cd7854178e5bf1e74302d70a708a6c2ccd0a5c92
4
- data.tar.gz: e019b20d38cccfab4a0dda27ea7ead3cfe13ee67
3
+ metadata.gz: db8967ebc2153f2ac6718f389ced822eaa0f4766
4
+ data.tar.gz: 9a3be35510e8eae06d76e04963c5019e40e27ae0
5
5
  SHA512:
6
- metadata.gz: da5ca3e39b16ede802735df3e6be4c8ab81071cc93e1fa1fcc6430f722797283c9f69541a5506233d200c7b1d95b2c7785e201f491d42d7a4e6ff223f759bccf
7
- data.tar.gz: 55b4a3c62afed6db94f690e6dadd37a56c9fcea00e487f2f9bf59ec46ecf313f707adb3732f0ccaff5eafb8be58d87ca28ac79a27678e049525e642d154f3727
6
+ metadata.gz: bf840e2b575da63ad769bb11fd8720ce313967dd3cf52f8d75ac2fb87f75bb0fb498b5d1c9952dfb4d24c3b9252f2c352c2ad5da6a6d791507275e3fd5c5a45f
7
+ data.tar.gz: 1a410b58326bc564bdd7d99bb1da5ca9884f4319c563cdde91c86b61fe03dd9e374bf0b4d6ce39bb74f8daf1b6a766de7b4f4233335c73a6d312c9d638bb9e21
@@ -44,6 +44,7 @@
44
44
 
45
45
  /* SHARED */
46
46
 
47
+ @import "shared/cards";
47
48
  @import "shared/alerts";
48
49
  @import "shared/buttons";
49
50
  @import "shared/forms";
@@ -1,6 +1,3 @@
1
- @import "../plugins/bootstrap/bootstrap-sprockets";
2
- @import "../plugins/bootstrap/bootstrap";
3
-
4
1
  $pro-badge-background: #7e3b44;
5
2
  $pro-badge-foreground: #dfd662;
6
3
 
@@ -1,5 +1,9 @@
1
1
  /* MIXINS */
2
2
 
3
+ @mixin min-width($size) {
4
+ @media only screen and (min-width: $size) { @content; }
5
+ }
6
+
3
7
  @mixin respond-to($media) {
4
8
  @if $media == phones {
5
9
  @media only screen and (max-width: $screen-xs-max) { @content; }
@@ -62,6 +62,8 @@ $button-red-bg-active: $site-color-red;
62
62
  $button-red-border: #a73337;
63
63
  $button-red-border-active: #9d2226;
64
64
 
65
+ $teal: #037fa9;
66
+
65
67
  $button-blue-bg: $site-color-blue-dim;
66
68
  $button-blue-bg-active: $site-color-blue;
67
69
  $button-blue-border: #3d6e99;
@@ -0,0 +1,11 @@
1
+ .card-base {
2
+ background: $color-white;
3
+ border: 1px solid $color-alto;
4
+ box-shadow: 0 2px 4px $color-alto;
5
+ padding: 20px;
6
+ flex-grow: 1;
7
+ font-size: 15px;
8
+ color: $color-mako;
9
+ position: relative;
10
+ max-width: 450px;
11
+ }
@@ -1,5 +1,5 @@
1
1
  module Egghead
2
2
  module Styles
3
- VERSION = "1.0.73"
3
+ VERSION = "1.0.74"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: egghead-styles
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.73
4
+ version: 1.0.74
5
5
  platform: ruby
6
6
  authors:
7
7
  - egghead.io
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-03-15 00:00:00.000000000 Z
11
+ date: 2016-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -282,6 +282,7 @@ files:
282
282
  - app/assets/stylesheets/sections/_hero.css.scss
283
283
  - app/assets/stylesheets/shared/_alerts.css.scss
284
284
  - app/assets/stylesheets/shared/_buttons.css.scss
285
+ - app/assets/stylesheets/shared/_cards.css.scss
285
286
  - app/assets/stylesheets/shared/_forms.css.scss
286
287
  - app/assets/stylesheets/shared/_miscellaneous.scss
287
288
  - app/assets/stylesheets/shared/_pagination.scss