brevis 0.1.6 → 0.1.7
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.
- checksums.yaml +4 -4
- data/lib/brevis.rb +3 -1
- data/stylesheets/brevis_utilities/_layout.scss +1 -23
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0b220b869be96a7dd31fbdc584ed869f9ad8e11c
|
4
|
+
data.tar.gz: 837ff85a97214a7062f062ceb42618bc42c62dbb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc30f13e051d1cec929defdf96b733ef290bd6d780b5669ddca7d3ef9639bda0d4d3857956631b7b7959160bc438965fe9467a6d0e7ceff3fa3cf4a4d65ed09a
|
7
|
+
data.tar.gz: 72af93665d50ddbe7cc4891151837f12f4ff484c7d4dfb5fec010ad1a3f56e2c4ee97df1f81b9b01d18648aa027778442158e56e7eb137923a6f3fc198836120
|
data/lib/brevis.rb
CHANGED
@@ -3,6 +3,8 @@
|
|
3
3
|
# By default, you should always included Compass. Do not include your
|
4
4
|
# extension.
|
5
5
|
require 'compass'
|
6
|
+
require 'breakpoint'
|
7
|
+
require 'toolkit'
|
6
8
|
|
7
9
|
# This tells Compass what your Compass extension is called, and where to find
|
8
10
|
# its files
|
@@ -17,7 +19,7 @@ Compass::Frameworks.register('brevis', :path => extension_path)
|
|
17
19
|
# a prerelease version
|
18
20
|
# Date is in the form of YYYY-MM-DD
|
19
21
|
module Brevis
|
20
|
-
VERSION = "0.1.
|
22
|
+
VERSION = "0.1.7"
|
21
23
|
DATE = "2015-02-03"
|
22
24
|
end
|
23
25
|
|
@@ -1,34 +1,12 @@
|
|
1
|
-
|
2
1
|
///////////////////////////////////////////////////
|
3
2
|
// SYMMETRIC (FLUID) GRID
|
4
3
|
// http://sassmeister.com/gist/9226e7dc2a5f2dc0cef9
|
5
4
|
////////////////////////////////////////////////////
|
6
|
-
// ----
|
7
|
-
// Sass (v3.3.14)
|
8
|
-
// Compass (v1.0.1)
|
9
|
-
// Breakpoint (v2.5.0)
|
10
|
-
// Toolkit (v2.6.0)
|
11
|
-
// ----
|
12
5
|
|
13
6
|
@import "compass";
|
14
7
|
@import "toolkit";
|
15
8
|
@import "breakpoint";
|
16
9
|
|
17
|
-
// Styles for niceness
|
18
|
-
body {
|
19
|
-
font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
|
20
|
-
background: #dddddd;
|
21
|
-
color: #222222;
|
22
|
-
p {
|
23
|
-
margin: 3px 0;
|
24
|
-
}
|
25
|
-
img {
|
26
|
-
max-width: 100%;
|
27
|
-
}
|
28
|
-
}
|
29
|
-
*, *:before, *:after {
|
30
|
-
box-sizing: border-box;
|
31
|
-
}
|
32
10
|
|
33
11
|
$sg-cols: 3;
|
34
12
|
$sg-spacing: 20px;
|
@@ -113,7 +91,7 @@ $sg-rows: 4;
|
|
113
91
|
}
|
114
92
|
|
115
93
|
////////////////////////////////////////////////////
|
116
|
-
// DISCONTINUED FLUID GRID:
|
94
|
+
// DISCONTINUED FLUID GRID: http://sassmeister.com/gist/7951177
|
117
95
|
$fluid-grid-cols: 1;
|
118
96
|
$fluid-grid-grid-rows: 10;
|
119
97
|
$fluid-grid-padding: 2%;
|