framous-grid 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.mkdn +15 -0
- data/LICENSE.txt +28 -0
- data/README.md +23 -0
- data/lib/framous-grid.rb +3 -0
- data/stylesheets/_framous-grid.scss +7 -0
- data/stylesheets/framous-grid/_functions.scss +39 -0
- data/stylesheets/framous-grid/_grid.scss +201 -0
- data/stylesheets/framous-grid/_settings.scss +42 -0
- data/templates/project/manifest.rb +15 -0
- data/templates/project/screen.scss +8 -0
- metadata +105 -0
data/CHANGELOG.mkdn
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
Framous-Grid Changelog
|
2
|
+
======================
|
3
|
+
|
4
|
+
v0.2.1 [Nov 15, 2012]
|
5
|
+
---------------------
|
6
|
+
* fix minor bugs
|
7
|
+
|
8
|
+
v0.2 [Nov 14, 2012]
|
9
|
+
-------------------
|
10
|
+
* Create compass extension skeleton
|
11
|
+
* Setup stuffs to use this as a gem
|
12
|
+
|
13
|
+
v0.1 [Nov 13, 2012]
|
14
|
+
-------------------
|
15
|
+
* Init project
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
Copyright (c) 2012, Alec Hance
|
2
|
+
All rights reserved.
|
3
|
+
|
4
|
+
Redistribution and use in source and binary forms, with or without
|
5
|
+
modification, are permitted provided that the following conditions are
|
6
|
+
met:
|
7
|
+
|
8
|
+
* Redistributions of source code must retain the above copyright
|
9
|
+
notice, this list of conditions and the following disclaimer.
|
10
|
+
* Redistributions in binary form must reproduce the above
|
11
|
+
copyright notice, this list of conditions and the following
|
12
|
+
disclaimer in the documentation and/or other materials provided
|
13
|
+
with the distribution.
|
14
|
+
* Neither the name of the author nor the names of other
|
15
|
+
contributors may be used to endorse or promote products derived
|
16
|
+
from this software without specific prior written permission.
|
17
|
+
|
18
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
19
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
20
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
21
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
22
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
23
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
24
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
25
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
26
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
27
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
28
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/README.md
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
framous-grid
|
2
|
+
============
|
3
|
+
|
4
|
+
A fluid grid framework written with SCSS & Compass Style, based on Susy (http://susy.oddbird.net) & Neat (http://neat.bourbon.io/).
|
5
|
+
|
6
|
+
Installation
|
7
|
+
============
|
8
|
+
|
9
|
+
From the command line:
|
10
|
+
|
11
|
+
(sudo) gem install framous-grid
|
12
|
+
|
13
|
+
Add to a project:
|
14
|
+
|
15
|
+
// rails: compass.config, other: config.rb
|
16
|
+
require 'framous-grid'
|
17
|
+
|
18
|
+
// command line
|
19
|
+
compass install framous-grid
|
20
|
+
|
21
|
+
Or create a new project:
|
22
|
+
|
23
|
+
compass create <project_directory_name> -r framous-grid --using framous-grid
|
data/lib/framous-grid.rb
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
//
|
2
|
+
// Functions & Mixins
|
3
|
+
//
|
4
|
+
|
5
|
+
//
|
6
|
+
// Flexible grid
|
7
|
+
//
|
8
|
+
|
9
|
+
@function flex-grid($columns, $container-columns: $fg-max-columns) {
|
10
|
+
$width: $columns * $fg-column + ($columns - 1) * $fg-gutter;
|
11
|
+
$container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter;
|
12
|
+
@return percentage($width / $container-width);
|
13
|
+
}
|
14
|
+
|
15
|
+
// Flexible gutter
|
16
|
+
@function flex-gutter($container-columns: $fg-max-columns, $gutter: $fg-gutter) {
|
17
|
+
$container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter;
|
18
|
+
@return percentage($gutter / $container-width);
|
19
|
+
}
|
20
|
+
|
21
|
+
//
|
22
|
+
// Container Span
|
23
|
+
//
|
24
|
+
|
25
|
+
@function container-span($span: $span) {
|
26
|
+
@if length($span) == 3 {
|
27
|
+
$container-columns: nth($span, 3);
|
28
|
+
@return $container-columns;
|
29
|
+
}
|
30
|
+
|
31
|
+
@else if length($span) == 2 {
|
32
|
+
$container-columns: nth($span, 2);
|
33
|
+
@return $container-columns;
|
34
|
+
}
|
35
|
+
|
36
|
+
@else {
|
37
|
+
@return $grid-columns;
|
38
|
+
}
|
39
|
+
}
|
@@ -0,0 +1,201 @@
|
|
1
|
+
//
|
2
|
+
// Grid.scss
|
3
|
+
// The default grid uses 12 columns.
|
4
|
+
// A setting that can be easily overridden in /base/settings.scss
|
5
|
+
//
|
6
|
+
|
7
|
+
//
|
8
|
+
// Imports
|
9
|
+
//
|
10
|
+
|
11
|
+
@import "compass/css3/box-sizing";
|
12
|
+
|
13
|
+
// $border-box-sizing: true !default;
|
14
|
+
// Makes all elements have a border-box layout
|
15
|
+
|
16
|
+
@if $border-box-sizing == true {
|
17
|
+
* {
|
18
|
+
@include box-sizing(border-box);
|
19
|
+
}
|
20
|
+
}
|
21
|
+
|
22
|
+
$fg-column: $column;
|
23
|
+
$fg-gutter: $gutter;
|
24
|
+
$fg-max-columns: $grid-columns;
|
25
|
+
$fg-max-width: $max-width;
|
26
|
+
$parent-columns: $grid-columns !default;
|
27
|
+
|
28
|
+
// outer wrapper center container
|
29
|
+
@mixin outer-container() {
|
30
|
+
@include clearfix;
|
31
|
+
max-width: $fg-max-width;
|
32
|
+
text-align: left;
|
33
|
+
margin: {
|
34
|
+
left: auto;
|
35
|
+
right: auto;
|
36
|
+
}
|
37
|
+
}
|
38
|
+
|
39
|
+
// Grid span columns
|
40
|
+
// Use the span-columns mixin to specify the number of columns an element:
|
41
|
+
// @include span-columns($span: $columns of $container-columns, $display: block)
|
42
|
+
// eg. Element that spans across 6 columns (out of the default 12)
|
43
|
+
// div.element { @include span-columns(6 of 8); }
|
44
|
+
@mixin span-columns($span: $columns of $container-columns, $display: block) {
|
45
|
+
|
46
|
+
$columns: nth($span, 1);
|
47
|
+
$container-columns: container-span($span);
|
48
|
+
|
49
|
+
@if $container-columns != $grid-columns {
|
50
|
+
$parent-columns: $container-columns;
|
51
|
+
}
|
52
|
+
|
53
|
+
@if $display == table {
|
54
|
+
display: table-cell;
|
55
|
+
padding-right: flex-gutter($container-columns);
|
56
|
+
width: flex-grid($columns, $container-columns) + flex-gutter($container-columns);
|
57
|
+
|
58
|
+
&:last-child {
|
59
|
+
padding-right: 0;
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
@else if $display == inline-block {
|
64
|
+
@include inline-block;
|
65
|
+
margin-right: flex-gutter($container-columns);
|
66
|
+
width: flex-grid($columns, $container-columns);
|
67
|
+
|
68
|
+
&:last-child {
|
69
|
+
margin-right: 0;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
@else {
|
74
|
+
display: block;
|
75
|
+
float: left;
|
76
|
+
margin-right: flex-gutter($container-columns);
|
77
|
+
width: flex-grid($columns, $container-columns);
|
78
|
+
|
79
|
+
&:last-child {
|
80
|
+
margin-right: 0;
|
81
|
+
}
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
// Clearfix / row container
|
86
|
+
// In order to clear floated or table-cell columns:
|
87
|
+
@mixin row($display: block) {
|
88
|
+
@include clearfix;
|
89
|
+
@if $display == table {
|
90
|
+
display: table;
|
91
|
+
}
|
92
|
+
|
93
|
+
@else {
|
94
|
+
display: block;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
// Shift
|
99
|
+
// To move an element to the left or right by a number of columns:
|
100
|
+
@mixin shift($n-columns: 1) {
|
101
|
+
margin-left: $n-columns * flex-grid(1, $parent-columns) + $n-columns * flex-gutter($parent-columns);
|
102
|
+
}
|
103
|
+
|
104
|
+
// Pad
|
105
|
+
// To add padding around the entire column use pad().
|
106
|
+
// By default it adds the same value as the grid's gutter.
|
107
|
+
@mixin pad($padding: flex-gutter()) {
|
108
|
+
padding: $padding;
|
109
|
+
}
|
110
|
+
|
111
|
+
// Remove element gutter
|
112
|
+
@mixin omega($display: block, $direction: right) {
|
113
|
+
@if $display == table {
|
114
|
+
padding-#{$direction}: 0;
|
115
|
+
}
|
116
|
+
|
117
|
+
@else {
|
118
|
+
margin-#{$direction}: 0;
|
119
|
+
}
|
120
|
+
}
|
121
|
+
|
122
|
+
// You can also use nth-omega to remove the gutter of a specific column or set of columns
|
123
|
+
@mixin nth-omega($nth, $display: block, $direction: right) {
|
124
|
+
@if $display == table {
|
125
|
+
&:nth-child(#{$nth}) {
|
126
|
+
padding-#{$direction}: 0;
|
127
|
+
}
|
128
|
+
}
|
129
|
+
|
130
|
+
@else {
|
131
|
+
&:nth-child(#{$nth}) {
|
132
|
+
margin-#{$direction}: 0;
|
133
|
+
}
|
134
|
+
}
|
135
|
+
}
|
136
|
+
|
137
|
+
// Fill 100% of parent
|
138
|
+
// This makes sure that the child fills 100% of its parent
|
139
|
+
@mixin fill-parent() {
|
140
|
+
width: 100%;
|
141
|
+
|
142
|
+
@if $border-box-sizing == false {
|
143
|
+
@include box-sizing(border-box);
|
144
|
+
}
|
145
|
+
}
|
146
|
+
|
147
|
+
// Breakpoints
|
148
|
+
// The breakpoint() mixin allows you to use media-queries to modify both the grid and the layout.
|
149
|
+
// It takes two arguments:
|
150
|
+
@mixin breakpoint($query:$feature $value $columns, $total-columns: $grid-columns) {
|
151
|
+
|
152
|
+
@if length($query) == 1 {
|
153
|
+
@media screen and ($default-feature: nth($query, 1)) {
|
154
|
+
$default-grid-columns: $grid-columns;
|
155
|
+
$grid-columns: $total-columns;
|
156
|
+
@content;
|
157
|
+
$grid-columns: $default-grid-columns;
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
@else if length($query) == 2 {
|
162
|
+
@media screen and (nth($query, 1): nth($query, 2)) {
|
163
|
+
$default-grid-columns: $grid-columns;
|
164
|
+
$grid-columns: $total-columns;
|
165
|
+
@content;
|
166
|
+
$grid-columns: $default-grid-columns;
|
167
|
+
}
|
168
|
+
}
|
169
|
+
|
170
|
+
@else if length($query) == 3 {
|
171
|
+
@media screen and (nth($query, 1): nth($query, 2)) {
|
172
|
+
$default-grid-columns: $grid-columns;
|
173
|
+
$grid-columns: nth($query, 3);
|
174
|
+
@content;
|
175
|
+
$grid-columns: $default-grid-columns;
|
176
|
+
}
|
177
|
+
}
|
178
|
+
|
179
|
+
@else if length($query) == 4 {
|
180
|
+
@media screen and (nth($query, 1): nth($query, 2)) and (nth($query, 3): nth($query, 4)) {
|
181
|
+
$default-grid-columns: $grid-columns;
|
182
|
+
$grid-columns: $total-columns;
|
183
|
+
@content;
|
184
|
+
$grid-columns: $default-grid-columns;
|
185
|
+
}
|
186
|
+
}
|
187
|
+
|
188
|
+
@else if length($query) == 5 {
|
189
|
+
@media screen and (nth($query, 1): nth($query, 2)) and (nth($query, 3): nth($query, 4)) {
|
190
|
+
$default-grid-columns: $grid-columns;
|
191
|
+
$grid-columns: nth($query, 5);
|
192
|
+
@content;
|
193
|
+
$grid-columns: $default-grid-columns;
|
194
|
+
}
|
195
|
+
}
|
196
|
+
|
197
|
+
@else {
|
198
|
+
@warn "Wrong number of arguments for breakpoint(). Read the documentation for more details.";
|
199
|
+
}
|
200
|
+
}
|
201
|
+
|
@@ -0,0 +1,42 @@
|
|
1
|
+
//
|
2
|
+
// Settings.scss
|
3
|
+
//
|
4
|
+
|
5
|
+
//
|
6
|
+
// 1. Responsive Grid
|
7
|
+
//
|
8
|
+
|
9
|
+
// Column width
|
10
|
+
$column: 145px !default;
|
11
|
+
// Gutter between each two columns
|
12
|
+
$gutter: 9px !default;
|
13
|
+
// Total number of columns in the grid (Total Columns For Main Container)
|
14
|
+
$grid-columns: 12 !default;
|
15
|
+
// Max-width of the outer container
|
16
|
+
$max-width: 1024px !default;
|
17
|
+
// Makes all elements have a border-box layout
|
18
|
+
$border-box-sizing: true !default;
|
19
|
+
// Default @media feature for the breakpoint() mixin
|
20
|
+
$default-feature: min-width;
|
21
|
+
|
22
|
+
//
|
23
|
+
// 2. Responsive Breakpoints
|
24
|
+
// @see http://css-tricks.com/snippets/css/media-queries-for-standard-devices
|
25
|
+
//
|
26
|
+
|
27
|
+
// Smartphones (portrait and landscape)
|
28
|
+
$phone: min-device-width 320px max-device-width 479px;
|
29
|
+
// Smartphones (portrait)
|
30
|
+
$phone-portrait: max-width 319px;
|
31
|
+
// Smartphones (landscape)
|
32
|
+
$phone-landscape: min-width 320px max-width 479px;
|
33
|
+
// iPads (portrait and landscape)
|
34
|
+
$ipad: min-device-width 768px;
|
35
|
+
// iPads (portrait)
|
36
|
+
$ipad-portrait: min-device-width 768px max-device-width 1024px orientation portrait;
|
37
|
+
// iPads (landscape)
|
38
|
+
$ipad-landscape: min-device-width 768px max-device-width 1024px orientation landscape;
|
39
|
+
// Desktops and laptops
|
40
|
+
$desktop: min-width 1024px;
|
41
|
+
// iPhone 4
|
42
|
+
$retina: -webkit-min-device-pixel-ratio 1.5 min-device-pixel-ratio 1.5;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
stylesheet 'screen.scss', :media => 'screen, projection'
|
2
|
+
|
3
|
+
description "Framous-Grid: A fluid grid framework written with SCSS & Compass Style."
|
4
|
+
|
5
|
+
help %Q{
|
6
|
+
Please see Framous-Grid github for all documentation and tutorials:
|
7
|
+
|
8
|
+
http://github.com/alechance/framous-grid
|
9
|
+
}
|
10
|
+
|
11
|
+
welcome_message %Q{
|
12
|
+
Please see Framous-Grid github for all documentation and tutorials:
|
13
|
+
|
14
|
+
http://github.com/alechance/framous-grid
|
15
|
+
}
|
metadata
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: framous-grid
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 21
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 2
|
9
|
+
- 1
|
10
|
+
version: 0.2.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Alec Hance
|
14
|
+
- Khalid Yagoubi
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2012-11-14 00:00:00 Z
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: compass
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 29
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
- 11
|
33
|
+
version: "0.11"
|
34
|
+
type: :runtime
|
35
|
+
version_requirements: *id001
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: sass
|
38
|
+
prerelease: false
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
hash: 15
|
45
|
+
segments:
|
46
|
+
- 3
|
47
|
+
- 2
|
48
|
+
- 0
|
49
|
+
version: 3.2.0
|
50
|
+
type: :runtime
|
51
|
+
version_requirements: *id002
|
52
|
+
description: A fluid grid framework written with SCSS & Compass Style, based on Susy (http://susy.oddbird.net) & Neat (http://neat.bourbon.io/).
|
53
|
+
email: hello@alechance.com
|
54
|
+
executables: []
|
55
|
+
|
56
|
+
extensions: []
|
57
|
+
|
58
|
+
extra_rdoc_files: []
|
59
|
+
|
60
|
+
files:
|
61
|
+
- CHANGELOG.mkdn
|
62
|
+
- LICENSE.txt
|
63
|
+
- README.md
|
64
|
+
- lib/framous-grid.rb
|
65
|
+
- stylesheets/_framous-grid.scss
|
66
|
+
- stylesheets/framous-grid/_functions.scss
|
67
|
+
- stylesheets/framous-grid/_grid.scss
|
68
|
+
- stylesheets/framous-grid/_settings.scss
|
69
|
+
- templates/project/manifest.rb
|
70
|
+
- templates/project/screen.scss
|
71
|
+
homepage: http://github.com/alechance/framous-grid
|
72
|
+
licenses: []
|
73
|
+
|
74
|
+
post_install_message:
|
75
|
+
rdoc_options: []
|
76
|
+
|
77
|
+
require_paths:
|
78
|
+
- lib
|
79
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
none: false
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
hash: 3
|
85
|
+
segments:
|
86
|
+
- 0
|
87
|
+
version: "0"
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
hash: 3
|
94
|
+
segments:
|
95
|
+
- 0
|
96
|
+
version: "0"
|
97
|
+
requirements: []
|
98
|
+
|
99
|
+
rubyforge_project:
|
100
|
+
rubygems_version: 1.8.24
|
101
|
+
signing_key:
|
102
|
+
specification_version: 3
|
103
|
+
summary: A fluid grid framework written with SCSS & Compass Style
|
104
|
+
test_files: []
|
105
|
+
|