compass-columnal-plugin 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/compass-columnal-plugin.gemspec +2 -1
- data/stylesheets/columnal/_reset.sass +41 -0
- metadata +2 -1
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{compass-columnal-plugin}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.5"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5")
|
8
8
|
s.authors = ["Diogo Biazus"]
|
@@ -16,6 +16,7 @@ Gem::Specification.new do |s|
|
|
16
16
|
"lib/columnal.rb",
|
17
17
|
"stylesheets/columnal/_grid.sass",
|
18
18
|
"stylesheets/columnal/_text.sass",
|
19
|
+
"stylesheets/columnal/_reset.sass",
|
19
20
|
"templates/project/manifest.rb"
|
20
21
|
]
|
21
22
|
s.homepage = %q{https://github.com/diogob/compass-columnal-plugin}
|
@@ -0,0 +1,41 @@
|
|
1
|
+
/* HTML RESET
|
2
|
+
///////////////////////////////////////////// */
|
3
|
+
|
4
|
+
/*
|
5
|
+
http://meyerweb.com/eric/tools/css/reset/
|
6
|
+
v2.0 | 20110126
|
7
|
+
License: none (public domain)
|
8
|
+
*/
|
9
|
+
|
10
|
+
html, body, div, span, applet, object, iframe,
|
11
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
12
|
+
a, abbr, acronym, address, big, cite, code,
|
13
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
14
|
+
small, strike, strong, sub, sup, tt, var,
|
15
|
+
b, u, i, center,
|
16
|
+
dl, dt, dd, ol, ul, li,
|
17
|
+
fieldset, form, label, legend,
|
18
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
19
|
+
article, aside, canvas, details, embed,
|
20
|
+
figure, figcaption, footer, header, hgroup,
|
21
|
+
menu, nav, output, ruby, section, summary,
|
22
|
+
time, mark, audio, video {
|
23
|
+
margin: 0;
|
24
|
+
padding: 0;
|
25
|
+
border: 0;
|
26
|
+
font-size: 100%;
|
27
|
+
font: inherit;
|
28
|
+
vertical-align: baseline;
|
29
|
+
}
|
30
|
+
/* HTML5 display-role reset for older browsers */
|
31
|
+
article, aside, details, figcaption, figure,
|
32
|
+
footer, header, hgroup, menu, nav, section {display: block;}
|
33
|
+
body {line-height: 1;}
|
34
|
+
ol, ul {list-style: none;}
|
35
|
+
blockquote, q {quotes: none;}
|
36
|
+
blockquote:before, blockquote:after,
|
37
|
+
q:before, q:after {
|
38
|
+
content: '';
|
39
|
+
content: none;
|
40
|
+
}
|
41
|
+
table {border-collapse: collapse;border-spacing: 0;}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass-columnal-plugin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -42,6 +42,7 @@ files:
|
|
42
42
|
- lib/columnal.rb
|
43
43
|
- stylesheets/columnal/_grid.sass
|
44
44
|
- stylesheets/columnal/_text.sass
|
45
|
+
- stylesheets/columnal/_reset.sass
|
45
46
|
- templates/project/manifest.rb
|
46
47
|
homepage: https://github.com/diogob/compass-columnal-plugin
|
47
48
|
licenses: []
|