toolegit 0.1.6 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 76074ff1f93e0dc223abbc5c059457628d38b882
4
- data.tar.gz: 0c2b2b08e4d51ede835893678d8b94dea079716c
3
+ metadata.gz: dc6c432bca554bb7ceb8f6d64992d3c06b8926e3
4
+ data.tar.gz: f4361d1c3d7a6dd532db9797febc7f7673b7a056
5
5
  SHA512:
6
- metadata.gz: fbf8517765997edc7ed956f932b37b8f973f7810b02b6881a728d4fee704be8085c25f98f81efdfdf1dc6093c5e22ed355cc5b384d5fb2827463016dca202407
7
- data.tar.gz: cfa9cfd8e31af1252c1e61635bd033db2eae96922b78e96b206410815a02e00086a191e0f3b65b318ae07300d373af7fb9372f082790b7cc3e682f9e9527f102
6
+ metadata.gz: d30a5c01ecabfe22c90a94b8206020be4bda29f9bf4e1ac03bbb44c2182c18c24a4f9b9fc51d12e9a37ee64f7e338bb6f5cae65a785ec33e130c57ae69430433
7
+ data.tar.gz: 5617a69aabe35cf80c8636998b36815f948553441fc5531e9ed2a8dffaaf60cd8dfb7d2e189a9f87817a2de034fce3ac2172cdd74961d020b93add5b1390ffe2
data/lib/toolegit.css ADDED
@@ -0,0 +1,3 @@
1
+ body {
2
+ background-color: goldenrod;
3
+ }
@@ -1,3 +1,3 @@
1
1
  module Toolegit
2
- VERSION = "0.1.6"
2
+ VERSION = "0.1.8"
3
3
  end
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: toolegit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jesse Calton
@@ -68,15 +68,15 @@ files:
68
68
  - LICENSE.txt
69
69
  - README.md
70
70
  - Rakefile
71
- - app/assets/stylesheets/_patterns.scss
72
- - app/assets/stylesheets/layout/_image_background.scss
73
71
  - bin/console
74
72
  - bin/setup
73
+ - lib/toolegit.css
75
74
  - lib/toolegit.rb
76
75
  - lib/toolegit/version.rb
77
76
  - toolegit-0.1.3.gem
78
77
  - toolegit-0.1.4.gem
79
78
  - toolegit-0.1.5.gem
79
+ - toolegit-0.1.6.gem
80
80
  - toolegit.gemspec
81
81
  - vendor/stylesheets/toolegit.css
82
82
  homepage: https://rubygems.org/gems/toolegit
@@ -1 +0,0 @@
1
- @import 'layout/image_background';
@@ -1,33 +0,0 @@
1
- // from http://css-tricks.com/perfect-full-page-background-image/
2
- // should use http://stackoverflow.com/questions/1342994/check-browser-css-property-support to degrade
3
-
4
- body {
5
- background-color: goldenrod;
6
- }
7
-
8
- @mixin image_background($image_url) {
9
- background: $image_url no-repeat center center fixed;
10
- -webkit-background-size: cover;
11
- -moz-background-size: cover;
12
- -o-background-size: cover;
13
- background-size: cover;
14
- }
15
-
16
- @mixin image_background_contaner {
17
- position:fixed;
18
- top:-50%;
19
- left:-50%;
20
- width:200%;
21
- height:200%;
22
-
23
- & > img {
24
- position:absolute;
25
- top:0;
26
- left:0;
27
- right:0;
28
- bottom:0;
29
- margin:auto;
30
- min-width:50%;
31
- min-height:50%;
32
- }
33
- }