wunderfront 0.0.2 → 0.0.3

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: 715f2b7506a5c1a0d8f8ca2b6809ae014c9fa517
4
- data.tar.gz: 6cbe3c82edc1c92e17dc2c658f947228d5b5e56e
3
+ metadata.gz: af749416819006e351f995b645de51936723d7eb
4
+ data.tar.gz: 6636657bd5fe784fc6ef5b12646cdaf3da85e0ba
5
5
  SHA512:
6
- metadata.gz: 3e2afb693995d65152bba1c4f503c7218b49a4c6dffad4c7c86f3ae4be10bacffd5b5f8fa901e22791e57dacef425eb2f2733ef38263b43e0c71db6e1569acd8
7
- data.tar.gz: 20eea01b35cfb2a63fb9df99c9d6f418b56ab20335094a087c7499791d127412758b0fdc3b9b7f01bc01ea9c09cdd08bb85f81d94534a074efb01c8b42036839
6
+ metadata.gz: 26e08a98e50c7f966c43127d39ca9c791055af72094e5bd6b02f90f3a7a80fba2e95227033e672c67ad3d7407b0ff7ffe3ccadbe642bff7266c417c0bed34645
7
+ data.tar.gz: 682a59c3f6d061378dc1932040d8f6ed696ca4b9d0aa4636da9d948262756c949dc91594a5a66a155abaac80060d79b7d008e1e23a7649b1a24c5bbe70d279a1
data/lib/wunderfront.rb CHANGED
@@ -20,8 +20,8 @@ Compass::Frameworks.register('wunderfront', :stylesheets_directory => stylesheet
20
20
  # a prerelease version
21
21
  # Date is in the form of YYYY-MM-DD
22
22
  module Wunderfront
23
- VERSION = "0.0.2"
24
- DATE = "2015-01-02"
23
+ VERSION = "0.0.3"
24
+ DATE = "2015-01-09"
25
25
  end
26
26
 
27
27
  # This is where any custom SassScript should be placed. The functions will be
@@ -2,6 +2,7 @@
2
2
  @import "wunderfront/utilities/variables";
3
3
  @import "wunderfront/utilities/mixins";
4
4
  @import "wunderfront/utilities/helpers";
5
+ @import "wunderfront/utilities/layout";
5
6
 
6
7
  // Base
7
8
  @import "wunderfront/base/elements";
@@ -3,14 +3,14 @@ body {
3
3
  font-family: $WunderFont;
4
4
  color: $WunderGreyDark;
5
5
  }
6
-
7
6
  h1 {
7
+ color: $WunderOrange;
8
8
  font-family: $WunderFontHeader;
9
- font-weight: 700;
10
- color: $WunderPink;
11
- font-size: 2em;
12
- line-height: 1.5em;
13
- margin: 0;
9
+ font-size: 2.625em;
10
+ font-weight: normal;
11
+ line-height: 1.3em;
12
+ margin-top: 0;
13
+ margin-bottom: 5px;
14
14
  }
15
15
  h2 {
16
16
  font-family: $WunderFontHeader;
@@ -29,3 +29,10 @@ h5 {
29
29
  font-weight: bold;
30
30
  }
31
31
  h6 {}
32
+ a {
33
+ color: $WunderPink;
34
+ text-decoration:none;
35
+ }
36
+ a:hover {
37
+ text-decoration:underline;
38
+ }
@@ -1,3 +1,5 @@
1
+ $breakpoint-large: 768px;
2
+
1
3
  @mixin wk-person {
2
4
  @include clearfix();
3
5
  }
@@ -10,6 +12,21 @@
10
12
  float: left;
11
13
  margin: 0 10px 0 0;
12
14
  }
15
+ @mixin wk-person__info {
16
+ line-height: 1.6em;
17
+ }
18
+ @mixin wk-person--page__primary {
19
+ @media (min-width: $breakpoint-large) {
20
+ width: 66%;
21
+ float: left;
22
+ }
23
+ }
24
+ @mixin wk-person--page__secondary {
25
+ @media (min-width: $breakpoint-large) {
26
+ width: 33%;
27
+ float: right;
28
+ }
29
+ }
13
30
 
14
31
  @if $wk-produce-css-classes {
15
32
  .person {
@@ -21,5 +38,17 @@
21
38
  .person__picture {
22
39
  @include wk-person__picture;
23
40
  }
41
+ .person__job-title,
42
+ .person__office,
43
+ .person__email,
44
+ .person__phone {
45
+ @include wk-person__info;
46
+ }
47
+ .person--page .person__primary {
48
+ @include wk-person--page__primary;
49
+ }
50
+ .person--page .person__secondary {
51
+ @include wk-person--page__secondary;
52
+ }
24
53
  }
25
54
 
@@ -0,0 +1,11 @@
1
+ @mixin layout-container {
2
+ max-width: 960px;
3
+ margin-left: auto;
4
+ margin-right: auto;
5
+ }
6
+
7
+ @if $wk-produce-css-classes {
8
+ .layout-container {
9
+ @include layout-container();
10
+ }
11
+ }
@@ -35,4 +35,4 @@ $WunderShadowLight: rgba(0,0,0,0.3);
35
35
  // -----------------------------------------------------------------------------
36
36
 
37
37
  $WunderFont: "Droid Sans",Arial,sans-serif;
38
- $WunderFontHeader: "Museo Slab",Arial,sans-serif;
38
+ $WunderFontHeader: museo-slab, "Museo Slab",Arial,sans-serif;
@@ -3,4 +3,4 @@ source 'https://rubygems.org'
3
3
  gem 'sass', '>=3.2.3'
4
4
  gem 'compass', '>=0.12.1'
5
5
 
6
- gem 'WunderFront', '~>0.0.2'
6
+ gem 'WunderFront', '~>0.0.3'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wunderfront
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lewis Nyman
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-02 00:00:00.000000000 Z
11
+ date: 2015-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -51,6 +51,7 @@ files:
51
51
  - stylesheets/wunderfront/components/_person.scss
52
52
  - stylesheets/wunderfront/components/_team.scss
53
53
  - stylesheets/wunderfront/utilities/_helpers.scss
54
+ - stylesheets/wunderfront/utilities/_layout.scss
54
55
  - stylesheets/wunderfront/utilities/_mixins.scss
55
56
  - stylesheets/wunderfront/utilities/_variables.scss
56
57
  - templates/project/Gemfile.txt