compass-susy-plugin 0.9.beta.0 → 0.9.beta.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/compass-susy-plugin.gemspec +1 -1
- data/sass/susy/_utils.scss +2 -3
- data/templates/project/_base.scss +18 -5
- data/templates/project/screen.scss +6 -6
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9.beta.
|
1
|
+
0.9.beta.1
|
data/compass-susy-plugin.gemspec
CHANGED
data/sass/susy/_utils.scss
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
//** Susy Utilities **//
|
2
2
|
|
3
|
-
// Apply to
|
4
|
-
|
5
|
-
@mixin show-grid($src) {
|
3
|
+
// Apply to your container element(s) to show a grid image.
|
4
|
+
@mixin show-grid($src:"grid.png") {
|
6
5
|
background: {
|
7
6
|
image: image-url($src);
|
8
7
|
repeat: repeat;
|
@@ -4,12 +4,25 @@
|
|
4
4
|
// Site: susy.oddbird.net
|
5
5
|
//**
|
6
6
|
|
7
|
+
// Settings --------------------------------------------------------------
|
8
|
+
// Susy & Compass use HTML hacks to support IE 6 and 7. You can turn that off:
|
9
|
+
// $legacy-support-for-ie6 : false;
|
10
|
+
// $legacy-support-for-ie7 : false;
|
11
|
+
|
12
|
+
// Font Sizes --------------------------------------------------------------
|
13
|
+
|
14
|
+
$base-font-size : 16px;
|
15
|
+
$base-line-height : 24px;
|
16
|
+
|
7
17
|
// Grid --------------------------------------------------------------
|
8
18
|
|
9
|
-
$total-cols: 12;
|
10
|
-
$col-width: 4em;
|
11
|
-
$gutter-width: 1em;
|
12
|
-
$side-gutter-width: $gutter-width;
|
19
|
+
$total-cols : 12;
|
20
|
+
$col-width : 4em;
|
21
|
+
$gutter-width : 1em;
|
22
|
+
$side-gutter-width : $gutter-width;
|
13
23
|
|
14
24
|
// Don't move this @import above the GRID variables.
|
15
|
-
@import "susy/susy";
|
25
|
+
@import "susy/susy";
|
26
|
+
|
27
|
+
// Mixins --------------------------------------------------------------
|
28
|
+
// Include additional default settings, variables and mixins here.
|
@@ -2,19 +2,19 @@
|
|
2
2
|
|
3
3
|
// Imports --------------------------------------------------------------
|
4
4
|
|
5
|
+
@import "compass/reset";
|
5
6
|
@import "base";
|
6
7
|
|
7
8
|
/* Layout -------------------------------------------------------------- */
|
8
9
|
|
10
|
+
// establish your vertical baseline grid.
|
11
|
+
// see the compass typography module for details on vertical rhythm.
|
12
|
+
@include establish-baseline;
|
13
|
+
|
9
14
|
// change '.container' to match your HTML container element
|
10
15
|
// or @extend it to apply multiple containers on your site.
|
11
16
|
.container {
|
12
17
|
@include container;
|
13
|
-
@include show-grid
|
14
|
-
|
15
|
-
// show-grid loads a 64+16x24 grid image by default
|
16
|
-
// For other grid settings, run `compass grid-img C+Gxh
|
17
|
-
// Where C is the column width, G is the gutter width,
|
18
|
-
// and h is the (optional) line-height.
|
18
|
+
@include show-grid; }
|
19
19
|
|
20
20
|
/* Styles -------------------------------------------------------------- */
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass-susy-plugin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 62196249
|
5
5
|
prerelease: 4
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 9
|
9
9
|
- beta
|
10
|
-
-
|
11
|
-
version: 0.9.beta.
|
10
|
+
- 1
|
11
|
+
version: 0.9.beta.1
|
12
12
|
platform: ruby
|
13
13
|
authors:
|
14
14
|
- Eric Meyer
|