persistentgrid 0.0.1.beta.3 → 0.0.1.beta.8
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.
- data/scss/pg/helpers/settings/_all.scss +2 -1
- data/scss/pg/helpers/settings/_font-sizes.scss +15 -0
- data/templates/base/{screen.scss → base.scss} +0 -3
- data/templates/base/manifest.rb +1 -1
- data/templates/grid/manifest.rb +1 -1
- data/templates/grid/{screen.scss → persistentgrid.scss} +1 -0
- data/templates/modules/manifest.rb +1 -1
- data/templates/modules/modules.scss +42 -0
- data/templates/project/manifest.rb +15 -0
- data/templates/{modules → project}/screen.scss +1 -1
- metadata +9 -6
@@ -0,0 +1,15 @@
|
|
1
|
+
// /**
|
2
|
+
// * Copyright (C) 2013 Crossing Hippos - Babs Gösgens. All rights reserved.
|
3
|
+
// * Licensed under GNU General Public License version 2 or later; see LICENSE.txt
|
4
|
+
// */
|
5
|
+
@if $trace-imports { @debug 'imported'; }
|
6
|
+
|
7
|
+
$ratio: 1.618;
|
8
|
+
|
9
|
+
$font-size-m: $base-font-size;
|
10
|
+
|
11
|
+
$font-size-l: $font-size-m * $ratio;
|
12
|
+
$font-size-xl: $font-size-l * $ratio;
|
13
|
+
$font-size-xxl: $font-size-xl * $ratio;
|
14
|
+
$font-size-s: $font-size-m / $ratio;
|
15
|
+
$font-size-xs: $font-size-s / $ratio;
|
@@ -16,7 +16,6 @@ $trace-imports: false;
|
|
16
16
|
// ==========================================================================
|
17
17
|
@import "pg/helpers";
|
18
18
|
@import "pg/base/helpers";
|
19
|
-
@import "pg/grid/helpers";
|
20
19
|
|
21
20
|
// ==========================================================================
|
22
21
|
// Settings
|
@@ -26,7 +25,6 @@ $trace-imports: false;
|
|
26
25
|
// 2) project settings
|
27
26
|
// ==========================================================================
|
28
27
|
@import "pg/base/settings";
|
29
|
-
@import "pg/grid/settings";
|
30
28
|
// Your project settings and overrides //
|
31
29
|
|
32
30
|
// ==========================================================================
|
@@ -35,5 +33,4 @@ $trace-imports: false;
|
|
35
33
|
// Import the behavior (in the order you want rules to render):
|
36
34
|
// ==========================================================================
|
37
35
|
@import "pg/base/behavior";
|
38
|
-
@import "pg/grid/behavior";
|
39
36
|
// Your project behavior, e.g. your (S)CSS //
|
data/templates/base/manifest.rb
CHANGED
data/templates/grid/manifest.rb
CHANGED
@@ -0,0 +1,42 @@
|
|
1
|
+
/* http://persistent-grid.com
|
2
|
+
v1.0 | 20130701
|
3
|
+
Copyright: Copyright (C) 2013 Crossing Hippos - Babs Gösgens. All rights reserved.
|
4
|
+
License: GNU General Public License version 2 or later; see LICENSE.txt
|
5
|
+
*/
|
6
|
+
$trace-imports: false;
|
7
|
+
|
8
|
+
|
9
|
+
// ==========================================================================
|
10
|
+
// Dependencies
|
11
|
+
// ==========================================================================
|
12
|
+
@import "Compass";
|
13
|
+
|
14
|
+
// ==========================================================================
|
15
|
+
// Helpers
|
16
|
+
// ==========================================================================
|
17
|
+
@import "pg/helpers";
|
18
|
+
@import "pg/base/helpers";
|
19
|
+
@import "pg/grid/helpers";
|
20
|
+
@import "pg/modules/helpers";
|
21
|
+
|
22
|
+
// ==========================================================================
|
23
|
+
// Settings
|
24
|
+
// --------------------------------------------------------------------------
|
25
|
+
// Import the settings, in this order:
|
26
|
+
// 1) project settings
|
27
|
+
// 2) base settings
|
28
|
+
// 3) grid settings
|
29
|
+
// 4) module settings
|
30
|
+
// ==========================================================================
|
31
|
+
@import "pg/base/settings";
|
32
|
+
@import "pg/grid/settings";
|
33
|
+
// Your project settings and overrides //
|
34
|
+
@import "pg/modules/settings";
|
35
|
+
|
36
|
+
// ==========================================================================
|
37
|
+
// Settings
|
38
|
+
// --------------------------------------------------------------------------
|
39
|
+
// Import the behavior (in the order you want rules to render):
|
40
|
+
// ==========================================================================
|
41
|
+
@import "pg/modules/behavior";
|
42
|
+
// Your project behavior, e.g. your (S)CSS //
|
@@ -0,0 +1,15 @@
|
|
1
|
+
stylesheet 'screen.scss', :media => "screen, projection"
|
2
|
+
|
3
|
+
description "Grid, Base and Modules"
|
4
|
+
|
5
|
+
help %Q{
|
6
|
+
Please see the Persistent Grid website for all documentation and tutorials:
|
7
|
+
|
8
|
+
http://www.persistentgrid.com
|
9
|
+
}
|
10
|
+
|
11
|
+
welcome_message %Q{
|
12
|
+
Please see the Persistent Grid website for all documentation and tutorials:
|
13
|
+
|
14
|
+
http://www.persistentgrid.com
|
15
|
+
}
|
@@ -39,6 +39,6 @@ $trace-imports: false;
|
|
39
39
|
// Import the behavior (in the order you want rules to render):
|
40
40
|
// ==========================================================================
|
41
41
|
@import "pg/base/behavior";
|
42
|
-
@import "pg/
|
42
|
+
@import "pg/grid/behavior";
|
43
43
|
@import "pg/modules/behavior";
|
44
44
|
// Your project behavior, e.g. your (S)CSS //
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: persistentgrid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 62196411
|
5
5
|
prerelease: 6
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
9
|
- 1
|
10
10
|
- beta
|
11
|
-
-
|
12
|
-
version: 0.0.1.beta.
|
11
|
+
- 8
|
12
|
+
version: 0.0.1.beta.8
|
13
13
|
platform: ruby
|
14
14
|
authors:
|
15
15
|
- Babs Gosgens
|
@@ -112,6 +112,7 @@ files:
|
|
112
112
|
- scss/pg/helpers/mixins/_units.scss
|
113
113
|
- scss/pg/helpers/settings/_all.scss
|
114
114
|
- scss/pg/helpers/settings/_breakpoints.scss
|
115
|
+
- scss/pg/helpers/settings/_font-sizes.scss
|
115
116
|
- scss/pg/modules/_all.scss
|
116
117
|
- scss/pg/modules/_behavior.scss
|
117
118
|
- scss/pg/modules/_helpers.scss
|
@@ -165,12 +166,14 @@ files:
|
|
165
166
|
- scss/pg/skins/crossinghippos/linkbar/_behavior.scss
|
166
167
|
- scss/pg/skins/crossinghippos/linkbar/_helpers.scss
|
167
168
|
- scss/pg/skins/crossinghippos/linkbar/_settings.scss
|
169
|
+
- templates/base/base.scss
|
168
170
|
- templates/base/manifest.rb
|
169
|
-
- templates/base/screen.scss
|
170
171
|
- templates/grid/manifest.rb
|
171
|
-
- templates/grid/
|
172
|
+
- templates/grid/persistentgrid.scss
|
172
173
|
- templates/modules/manifest.rb
|
173
|
-
- templates/modules/
|
174
|
+
- templates/modules/modules.scss
|
175
|
+
- templates/project/manifest.rb
|
176
|
+
- templates/project/screen.scss
|
174
177
|
homepage: http://crossinghippos.nl/
|
175
178
|
licenses: []
|
176
179
|
|