framous 0.3.8 → 0.4.1

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.
@@ -1,6 +1,18 @@
1
1
  Framous Changelog
2
2
  =================
3
3
 
4
+ v0.4.1 [Jul 31, 2013]
5
+ --------------------
6
+ * fixe overwrite conflict
7
+
8
+ v0.4 [Jul 31, 2013]
9
+ -------------------
10
+ * clean up v3.9
11
+
12
+ v0.3.9 [Jul 31, 2013]
13
+ ---------------------
14
+ * invalid syntax
15
+
4
16
  v0.3.8 [Jul 31, 2013]
5
17
  ---------------------
6
18
  * fixe typo
@@ -41,37 +53,5 @@ v0.3.1 [Jul 23, 2013]
41
53
  * fixe typo
42
54
 
43
55
  v0.3 [Jul 23, 2013]
44
- ---------------------
45
- * major updates : grid system, typography & javascript plugins
46
-
47
- v0.2.5 [Mar 7, 2013]
48
- ---------------------
49
- * add sample.html to manifest.rb
50
-
51
- v0.2.4 [Mar 6, 2013]
52
- ---------------------
53
- * update some useful mixins to framous-mixins : hdpi-media-query + image-rendering
54
- * add sample.html to manifest.rb
55
- * clean up v0.2.3
56
-
57
- v0.2.3 [Dec 20, 2012]
58
- ---------------------
59
- * add some useful mixins to framous-mixins
60
- * clean up v0.2.2
61
-
62
- v0.2.2 [Nov 16, 2012]
63
- ---------------------
64
- * split framous into framous-grid & framous-base
65
-
66
- v0.2.1 [Nov 16, 2012]
67
- -----------------------
68
- * rebuild clean version
69
-
70
- v0.2 [Nov 16, 2012]
71
- -------------------
72
- * new folder /grid
73
- * add _base.scss partial so you can override variables to fit your personal project
74
-
75
- v0.1 [Nov 15, 2012]
76
56
  -------------------
77
- * Init project
57
+ * major updates : grid system, typography & javascript plugins
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  framous
2
2
  =======
3
3
 
4
- Framous is light & powerful front-end toolkit to prototype digital product.
4
+ Framous is the most light & powerful front-end toolkit to prototype digital product
5
5
 
6
6
  Installation
7
7
  ============
@@ -17,7 +17,23 @@ Adding Framous to existing Compass projects
17
17
 
18
18
  // Then run
19
19
  compass install framous
20
+
21
+ // Stylesheet
22
+ @import "framous"
20
23
 
21
24
  Or create a new project:
22
25
 
23
26
  compass create <your-project-name> -r framous --using framous
27
+
28
+ Want to help us for the doc?
29
+ ============================
30
+ Thank you! We appreciate your help.
31
+ You can find the repo https://github.com/borderlab/framous-doc
32
+
33
+ Need some help?
34
+ ===============
35
+ Reach us: framous@borderlab.com
36
+
37
+ Authors
38
+ =======
39
+ @alechance & @thomashermant
@@ -16,6 +16,4 @@
16
16
 
17
17
  // base/
18
18
  @import "framous/base/reset";
19
- @import "framous/base/print";
20
- @import "framous/base/base";
21
- @import "framous/base/typography";
19
+ @import "framous/base/print";
@@ -211,7 +211,7 @@ figure {
211
211
  fieldset {
212
212
  border: 1px solid #c0c0c0;
213
213
  margin: 0 2px;
214
- padding: 0.35em 0.625em 0.75em;
214
+ padding: rhythm(0.35, $p) rhythm(0.65, $p) rhythm(0.75, $p);
215
215
  }
216
216
 
217
217
  // 1. Correct `color` not being inherited in IE 8/9.
@@ -35,21 +35,15 @@ a {
35
35
  line-height: inherit;
36
36
  word-wrap: break-word;
37
37
 
38
- &:visited {
39
- color: $link-color-hover;
40
- }
41
-
42
- &:hover {
43
- color: $link-color-hover;
44
- }
45
-
46
- &:active {
38
+ &:visited,
39
+ &:hover,
40
+ &:active,
41
+ &:focus {
47
42
  color: $link-color-hover;
48
43
  }
49
44
 
50
45
  &:focus {
51
46
  outline: none;
52
- color: $link-color-hover;
53
47
  }
54
48
  }
55
49
 
@@ -90,6 +90,7 @@ $total-width: null;
90
90
  }
91
91
 
92
92
  @mixin fill-parent() {
93
+ @include pie-clearfix;
93
94
  width: 100%;
94
95
 
95
96
  @if $border-box-sizing == false {
@@ -31,7 +31,6 @@ $white-set: #fff;
31
31
  $grey-set: #808080;
32
32
  $black-set: #000;
33
33
 
34
- $background-body-color: $white-set;
35
34
  $txt-color: $blue-dark-set;
36
35
  $body-color: $blue-dark-set;
37
36
 
@@ -5,7 +5,7 @@ stylesheet 'screen.scss', :media => 'screen, projection'
5
5
 
6
6
  stylesheet '../../stylesheets/framous/utility/_framous-settings.scss', :to => 'utility/_settings.scss'
7
7
  stylesheet '../../stylesheets/framous/base/_typography.scss', :to => 'base/_typography.scss'
8
- stylesheet '../../stylesheets/framous/base/_base.scss', :to => 'layout/_base.scss'
8
+ stylesheet 'stylesheets/layout/_base.scss', :to => 'base/_base.scss'
9
9
  stylesheet 'stylesheets/layout/_header.scss', :to => 'layout/_header.scss'
10
10
  stylesheet 'stylesheets/layout/_main.scss', :to => 'layout/_main.scss'
11
11
  stylesheet 'stylesheets/layout/_footer.scss', :to => 'layout/_footer.scss'
@@ -1,8 +1,8 @@
1
1
  /* ---------------------------------------------------------------------------
2
2
  Framous: http://getframo.us
3
- @version: v0.3.8
3
+ @version: v0.4.1
4
4
  @credits: (c) 2013 Framous
5
- *//
5
+ */
6
6
 
7
7
  @charset "utf-8";
8
8
 
@@ -17,9 +17,9 @@
17
17
 
18
18
  // Base
19
19
  @import "base/typography";
20
+ @import "base/base";
20
21
 
21
22
  // Layout
22
- @import "layout/base";
23
23
  @import "layout/header";
24
24
  @import "layout/main";
25
25
  @import "layout/footer";
@@ -6,5 +6,4 @@ body {
6
6
  @include pie-clearfix;
7
7
  position: relative;
8
8
  width: 100%;
9
- background: $background-body-color;
10
9
  }
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: framous
3
3
  version: !ruby/object:Gem::Version
4
- hash: 3
4
+ hash: 13
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 3
9
- - 8
10
- version: 0.3.8
8
+ - 4
9
+ - 1
10
+ version: 0.4.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Alec Hance
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2013-07-31 00:00:00 Z
19
+ date: 2013-08-07 00:00:00 Z
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
22
  name: sass
@@ -50,7 +50,7 @@ dependencies:
50
50
  version: 0.12.2
51
51
  type: :runtime
52
52
  version_requirements: *id002
53
- description: Framous is light & powerful front-end toolkit to prototype digital product
53
+ description: Framous is the most light & powerful front-end toolkit to prototype digital product
54
54
  email: hello@borderlab.com
55
55
  executables: []
56
56
 
@@ -64,7 +64,6 @@ files:
64
64
  - README.md
65
65
  - lib/framous.rb
66
66
  - stylesheets/_framous.scss
67
- - stylesheets/framous/base/_base.scss
68
67
  - stylesheets/framous/base/_print.scss
69
68
  - stylesheets/framous/base/_reset.scss
70
69
  - stylesheets/framous/base/_typography.scss
@@ -83,6 +82,7 @@ files:
83
82
  - templates/project/javascripts/vendors/jquery-1.10.1.min.js
84
83
  - templates/project/manifest.rb
85
84
  - templates/project/screen.scss
85
+ - templates/project/stylesheets/layout/_base.scss
86
86
  - templates/project/stylesheets/layout/_footer.scss
87
87
  - templates/project/stylesheets/layout/_header.scss
88
88
  - templates/project/stylesheets/layout/_main.scss