bard-sass 0.0.1 → 0.1.0
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/app/assets/stylesheets/bard/sass.sass +40 -0
- data/bard-sass.gemspec +1 -5
- metadata +3 -4
- data/lib/bard/sass/version.rb +0 -3
@@ -11,3 +11,43 @@
|
|
11
11
|
+blueprint-interaction
|
12
12
|
+blueprint-colors
|
13
13
|
|
14
|
+
// BUTTONS
|
15
|
+
|
16
|
+
@mixin button( $bg: $primaryColor, $text-color: #fcfcfc, $hover: true )
|
17
|
+
display: inline-block
|
18
|
+
font: bold 1.6em $font
|
19
|
+
line-height: 3.0em
|
20
|
+
color: $text-color
|
21
|
+
border: 2px solid darken( $bg, 5% )
|
22
|
+
background: $bg
|
23
|
+
+background-image(linear-gradient( $bg, darken( $bg, 5% ) ) )
|
24
|
+
+border-radius( 2px )
|
25
|
+
+box-shadow(#999 0px 0px 3px)
|
26
|
+
padding: 0 20px
|
27
|
+
cursor: pointer
|
28
|
+
text-align: center
|
29
|
+
text-decoration: none
|
30
|
+
margin: 0px
|
31
|
+
min-width: 300px
|
32
|
+
cursor: default
|
33
|
+
&:focus
|
34
|
+
display: inline-block
|
35
|
+
font: bold 1.6em $font
|
36
|
+
line-height: 3.0em
|
37
|
+
color: $text-color
|
38
|
+
border: 2px solid darken( $bg, 5% )
|
39
|
+
background: $bg
|
40
|
+
+background-image(linear-gradient( $bg, darken( $bg, 5% ) ) )
|
41
|
+
+border-radius( 2px )
|
42
|
+
+box-shadow(#999 0px 0px 3px)
|
43
|
+
padding: 0 20px
|
44
|
+
cursor: pointer
|
45
|
+
text-align: center
|
46
|
+
text-decoration: none
|
47
|
+
margin: 0px 6px
|
48
|
+
min-width: 300px
|
49
|
+
cursor: default
|
50
|
+
@if $hover
|
51
|
+
cursor: pointer
|
52
|
+
&:hover
|
53
|
+
background: darken( $bg, 5% )
|
data/bard-sass.gemspec
CHANGED
@@ -1,10 +1,6 @@
|
|
1
|
-
lib = File.expand_path('../lib', __FILE__)
|
2
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
-
require 'bard/sass/version'
|
4
|
-
|
5
1
|
Gem::Specification.new do |spec|
|
6
2
|
spec.name = "bard-sass"
|
7
|
-
spec.version =
|
3
|
+
spec.version = "0.1.0"
|
8
4
|
spec.authors = ["Michael Gubitosa"]
|
9
5
|
spec.email = ["gubito@gmail.com"]
|
10
6
|
spec.description = %q{Sass files across all Bot and Rose projects}
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bard-sass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
- 0
|
9
8
|
- 1
|
10
|
-
|
9
|
+
- 0
|
10
|
+
version: 0.1.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Michael Gubitosa
|
@@ -96,7 +96,6 @@ files:
|
|
96
96
|
- app/assets/stylesheets/bard/sass.sass
|
97
97
|
- bard-sass.gemspec
|
98
98
|
- lib/bard/sass.rb
|
99
|
-
- lib/bard/sass/version.rb
|
100
99
|
homepage: https://github.com/gubito/bard-sass
|
101
100
|
licenses:
|
102
101
|
- MIT
|
data/lib/bard/sass/version.rb
DELETED