magic_stylez 0.0.330 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- ZmJjNjhkNGU0MDZmZmM1NGQ0MTM1NmExNDYxNmQ3OWE0YTk1ZDNmOA==
5
- data.tar.gz: !binary |-
6
- NzhjYWNkNWZhZGUyZTM1NzkyZDc2MjliZDU4MzEwMDNlNTYxZDIxYg==
2
+ SHA1:
3
+ metadata.gz: 913a4a5c0c1a181a1db99f5f0d7ab716d88b50c3
4
+ data.tar.gz: c62f85fc298bc4e157d6917673156868a628fe5b
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- ZDAzYjg5MTAxZDc4OTI5NDY2M2RjMmE3NjFkYzMwNGVmZDk4MWMxOTQxOWIw
10
- N2UxY2VhMGNhZmZhNjMzNWNjYmI3MjcyY2RhYTg5NDExMDlmNzQ5ZjJhNGM0
11
- YmM3MWY2NDU1MDU2N2E2ZjI0MjEwODJhZTg2NDBhYjI3ZWM2MWI=
12
- data.tar.gz: !binary |-
13
- NGVmMzQ0YzZjNGVjMDFhZjEwOTk5MWRlODZjM2ZkZDI2MzgxNjY4NTBiNjgz
14
- ZWUxY2YyZjMzNGEwYmJkY2ViOGQ4YjVjODY5NjI1MDRjMGFmNmFjODZiNzA0
15
- Y2RhMzQ2YWY1NzIxNGNhNGMxODM4ZjdiNzA4ZmZjYmE0NGJjNDc=
6
+ metadata.gz: b4ef0bbd98d83d2181fe87c1d3e0b0c81d77b51b99c6f6da90bfb0f42d9ffd3657ebe59146bad7f2fb25f17f0710241d2e0a8b4bbe5aeeb09627a7cc2a85bc80
7
+ data.tar.gz: ec2838f70daec903d085d4daef0b842355a0eaa89a972b13f33d9b5306645b020abf0bcebba10732fce0d39d4d6ffb108dd9eb78fac6a5ee4a70026ad7a10b6f
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
- source "http://rubygems.org"
1
+ source "https://rubygems.org"
2
2
 
3
3
  # Declare your gem's dependencies in magic_stylez.gemspec.
4
4
  # Bundler will treat runtime dependencies like base dependencies, and
@@ -1,3 +1,3 @@
1
1
  module MagicStylez
2
- VERSION = "0.0.330"
2
+ VERSION = "0.1.0"
3
3
  end
data/magic_stylez.gemspec CHANGED
@@ -22,7 +22,8 @@ Gem::Specification.new do |s|
22
22
  s.add_dependency "rails", ">= 3.1"
23
23
  s.add_dependency 'autoprefixer-rails', '>= 1.1'
24
24
  s.add_dependency 'sass', '>= 3.2'
25
- s.add_dependency 'bootstrap-sass', '>= 3.3.5.1', '< 3.4'
25
+ ## since 3.2.x bootstrap-sass changed the asset structure, so first stay with 3.1.1.1
26
+ s.add_dependency 'bootstrap-sass', '3.1.1.1'
26
27
  s.add_dependency 'bourbon', '>= 3.0.0'
27
28
 
28
29
  # Testing dependencies
@@ -10,6 +10,54 @@ loadCircles = ->
10
10
  else if $('.circle-diagram').length > 0
11
11
  window.circleDiagram = new CircleDiagram( circle: $('.circle-diagram') )
12
12
 
13
+ build_paralax = (el) ->
14
+ console.log "build_paralax", el
15
+ ## Create the background image holder ##
16
+ el.prepend("<div class='px_bg_holder'></div>")
17
+ el.find(".px_bg_holder").css(
18
+ "background-image" : el.css("background-image")
19
+ "background-position" : "center center"
20
+ "background-repeat" : "no-repeat"
21
+ "background-size" : "cover"
22
+ "position" : "absolute"
23
+ "height" : $(window).height()
24
+ "width" : $(window).width()
25
+ )
26
+ ## We will remove the background at all ##
27
+ el.css("background","none")
28
+ el.css("overflow","hidden")
29
+
30
+ $("body").scroll ->
31
+ console.log "Scrolling"
32
+ # bg_pos = $("#app_content").offset().top + el.offset().top;
33
+ console.log if el.hasClass("responsive-hero") then el.closest(".fullpage-table").position().top else el.position().top
34
+ bg_pos = ($("#app_content").offset().top + if el.hasClass("responsive-hero") then el.closest(".fullpage-table").position().top else el.position().top)
35
+ console.log "bg_pos #{ bg_pos }"
36
+ if bg_pos < $(window).height()
37
+ bg_pos = bg_pos - (bg_pos / 10)
38
+
39
+ el.find(".px_bg_holder").css(
40
+ "top" : "#{ bg_pos * -1 }px"
41
+ )
42
+ $(window).resize ->
43
+ $(".px_bg_holder").css(
44
+ "height" : $(window).height()
45
+ "width" : $(window).width()
46
+ )
47
+
48
+
49
+ load_paralax = ->
50
+ if $(".section.image.fixed").length > 0
51
+ $(".section.image.fixed").each ->
52
+ build_paralax( $(@) )
53
+
54
+ if $(".responsive-hero.fixed-bg").length > 0
55
+ $(".responsive-hero.fixed-bg").each ->
56
+ build_paralax( $(@) )
57
+
58
+
59
+
60
+
13
61
 
14
62
 
15
63
  navigate = ->
@@ -31,6 +79,7 @@ navigate = ->
31
79
  lnk.addClass("active")
32
80
  $("body").removeClass("aside-on")
33
81
  loadCircles()
82
+ load_paralax()
34
83
  $("#current-view-name").text( lnk.text() )
35
84
  currentPath = path
36
85
 
@@ -9,11 +9,9 @@ appImages = <%= imgs.to_json %>
9
9
  # console.log "appImages", appImages
10
10
 
11
11
 
12
-
13
12
  @MagicStylezVersion = "<%= MagicStylez::VERSION %>"
14
13
 
15
14
 
16
-
17
15
  @assetPath = (path) ->
18
16
  # "/assets/angular/app/views/#{path}.html"
19
17
  appImages["#{path}"]
@@ -20,19 +20,6 @@
20
20
  </div>
21
21
 
22
22
 
23
- <div class="section sctn-sm">
24
- <div class="corset tight">
25
- <h4><small>Version</small> 0.1.1</h4>
26
- <p>
27
- + fullpage-table => <code>header-cell</code>, <code>footer-cell</code> default without bg
28
- </p>
29
- <p>
30
- + add timeline for <a href="#helper/dots">dots</a>
31
- </p>
32
- </div>
33
- </div>
34
-
35
-
36
23
  <div class="section sctn-sm">
37
24
  <div class="corset tight">
38
25
  <h4><small>Version</small> 0.1.0</h4>
@@ -25,7 +25,7 @@
25
25
  <div class="corset full center_text">
26
26
  <h4 class="no-press-top">Warning</h4>
27
27
  <p class="gray-clr thin">This Gem is still work in process!</p>
28
- <p class="gray-clr thin">(But it is already used in some production apps).</p>
28
+ <p class="gray-clr thin">Its just the start to outsource my style framework (I mostly rebuild for every app).</p>
29
29
  <p class="gray-clr thin">It is mostly driven by my own habits, so I don't know if its usefull for others.</p>
30
30
  <hr/>
31
31
  <h4>Info</h4>
@@ -65,7 +65,7 @@
65
65
 
66
66
  <div class="row">
67
67
  <% for x, i in ["xs", "sm", "", "lg", "xl", "xxl"]: %>
68
- <div class="col-xs-6 col-sm-3 col-md-2">
68
+ <div class="col-xs-4 col-sm-3 col-md-2">
69
69
  <div class="number_dot dot-brand<%= if x != "" then " dot-#{x}" else "" %>"><%= i + 1 %></div>
70
70
  <div class="clearfix"></div>
71
71
  <p><%= if x != "" then ".dot-#{x}" else "" %></p>
@@ -79,7 +79,7 @@
79
79
 
80
80
  <div class="row">
81
81
  <% for x, i in ["default", "success", "info", "warning", "danger", "brand", "one", "two", "three", "facebook", "google", "twitter", "paypal"]: %>
82
- <div class="col-md-2 col-sm-4 col-xs-6">
82
+ <div class="col-sm-2">
83
83
  <div class="number_dot dot-lg dot-<%= x %>"><%= i + 1 %></div>
84
84
  <div class="clearfix"></div>
85
85
  <p>.dot-<%= x %></p>
@@ -89,7 +89,7 @@
89
89
  <hr/>
90
90
  <p class="loud">plus <code>.dot-blank</code></p>
91
91
  <% for x, i in ["default", "success", "info", "warning", "danger", "brand", "one", "two", "three", "facebook", "google", "twitter", "paypal"]: %>
92
- <div class="col-md-2 col-sm-4 col-xs-6">
92
+ <div class="col-sm-2">
93
93
  <div class="number_dot dot-lg dot-<%= x %> dot-blank"><%= i + 1 %></div>
94
94
  <div class="clearfix"></div>
95
95
  <p>.dot-<%= x %></p>
@@ -99,7 +99,7 @@
99
99
  <hr/>
100
100
  <p class="loud">plus <code>.dot-blank-soft</code></p>
101
101
  <% for x, i in ["default", "success", "info", "warning", "danger", "brand", "one", "two", "three", "facebook", "google", "twitter", "paypal"]: %>
102
- <div class="col-md-2 col-sm-4 col-xs-6">
102
+ <div class="col-sm-2">
103
103
  <div class="number_dot dot-lg dot-<%= x %> dot-blank-soft"><%= i + 1 %></div>
104
104
  <div class="clearfix"></div>
105
105
  <p>.dot-<%= x %></p>
@@ -112,21 +112,4 @@
112
112
  </div>
113
113
  </div>
114
114
 
115
- <div class="section hard-top">
116
- <div class="corset">
117
-
118
- <h3>Time-Lines</h3>
119
-
120
- <div class="numbered_time_line">
121
- <% for x in [1..7]: %>
122
- <div class="numbered_line">
123
- <div class="number_dot"><%= x %></div>
124
- <p>Fact Number #<%= x %></p>
125
- </div>
126
- <% end %>
127
- </div>
128
-
129
- </div>
130
- </div>
131
-
132
115
 
@@ -11,7 +11,7 @@
11
11
  <div class="table-row">
12
12
  <div class="cell table-cell content-cell fill">
13
13
 
14
- <div class="corset responsive-hero center_text">
14
+ <div class="corset center_text">
15
15
  <h1 class="loud white-clr upcase">FullPage Table</h1>
16
16
  <p class="loud white-clr">
17
17
  FullPage-Tables always use full page size!
@@ -38,7 +38,42 @@
38
38
  </div>
39
39
  <div class="clearfix"></div>
40
40
 
41
-
41
+ <div class="fullpage-table" id="banner-one">
42
+ <div class="table-row">
43
+ <div class="banner-box responsive-hero with-footer with-header fill berlin">
44
+ <div class="banner-header">
45
+ <div class="corset">
46
+ <h1 class="loud">Fullpage Table</h1>
47
+ </div>
48
+ </div>
49
+
50
+ <div class="banner-content">
51
+ <div class="corset">
52
+ <p class="loud">This is a fullpage-table, it allways uses fullpage-height<br/>(if content fits in).</p>
53
+ <div class="well">
54
+ surounding element (i.e. body) needs the following <em>css</em>:
55
+ <br/>
56
+ <code>width: 100%; height: 100%;</code>
57
+ </div>
58
+ </div>
59
+ </div>
60
+
61
+ <div class="banner-footer" id="sign_up_banner">
62
+ <div class="corset">
63
+ <div class="row">
64
+ <div class="col-sm-4 col-sm-offset-4">
65
+ <!--<a href="#" class="btn btn-success btn-block btn-lg">Sign up now</a>-->
66
+ <button class="btn btn-success btn-block help_arrow fakeClick" data-text="Go click me!">
67
+ Click Me
68
+ </button>
69
+ </div>
70
+ </div>
71
+ </div>
72
+ </div>
73
+
74
+ </div>
75
+ </div>
76
+ </div>
42
77
 
43
78
 
44
79
  <div class="section shine-top">
@@ -46,102 +81,45 @@
46
81
  <h2>Usage</h2>
47
82
  <pre>
48
83
  <code>
49
- &lt;div class=&quot;fullpage-table&quot; id=&quot;banner-one&quot;&gt;<br/> &lt;div class=&quot;table-row&quot;&gt;<br/> &lt;div class=&quot;header-cell bright&quot;&gt;<br/> &lt;div class=&quot;corset center_text&quot;&gt;<br/> &lt;h1 class=&quot;loud&quot;&gt;Fullpage Table&lt;/h1&gt;<br/> &lt;/div&gt;<br/> &lt;/div&gt;<br/> &lt;/div&gt;<br/> &lt;div class=&quot;table-row&quot;&gt;<br/> &lt;div class=&quot;content-cell fill&quot;&gt;<br/> &lt;div class=&quot;corset responsive-hero center_text&quot;&gt;<br/> <br/> &lt;p class=&quot;loud &quot;&gt;This is a fullpage-table, it allways uses fullpage-height&lt;br/&gt;(if content fits in).&lt;/p&gt;<br/> &lt;div class=&quot;well&quot;&gt;<br/> surounding element (i.e. body) needs the following &lt;em&gt;css&lt;/em&gt;:<br/> &lt;br/&gt;<br/> &lt;code&gt;width: 100%; height: 100%;&lt;/code&gt;<br/> &lt;/div&gt;<br/> <br/> &lt;/div&gt;<br/> &lt;/div&gt;<br/> &lt;/div&gt;<br/> &lt;div class=&quot;table-row&quot;&gt;<br/> &lt;div class=&quot;footer-cell bright&quot;&gt;<br/> &lt;div class=&quot;corset center_text&quot;&gt;<br/> <br/> &lt;div class=&quot;row&quot;&gt;<br/> &lt;div class=&quot;col-sm-4 col-sm-offset-4&quot;&gt;<br/> &lt;!--&lt;a href=&quot;#&quot; class=&quot;btn btn-success btn-block btn-lg&quot;&gt;Sign up now&lt;/a&gt;--&gt;<br/> &lt;button class=&quot;btn btn-success btn-block help_arrow fakeClick&quot; data-text=&quot;Go click me!&quot;&gt;<br/> Click Me<br/> &lt;/button&gt;<br/> &lt;/div&gt;<br/> &lt;/div&gt;<br/> <br/> &lt;/div&gt;<br/> &lt;/div&gt;<br/> &lt;/div&gt;<br/>&lt;/div&gt;<br/>
84
+ &lt;div class=&quot;fullpage-table&quot; id=&quot;front-banner&quot;&gt;
85
+ &lt;div class=&quot;table-row&quot;&gt;<br/> &lt;div class=&quot;banner-box responsive-hero with-footer with-header fill wood&quot;&gt;<br/> &lt;div class=&quot;banner-header&quot;&gt;<br/> &lt;div class=&quot;corset&quot;&gt;<br/> &lt;h1 class=&quot;loud&quot;&gt;Fullpage Table&lt;/h1&gt;<br/> &lt;/div&gt;<br/> &lt;/div&gt;<br/> <br/> &lt;div class=&quot;banner-content&quot;&gt;<br/> &lt;div class=&quot;corset&quot;&gt;<br/> &lt;p class=&quot;loud&quot;&gt;This is a fullpage-table, it allways uses fullpage-height (if content fits in).&lt;/p&gt;<br/> &lt;/div&gt;<br/> &lt;/div&gt;<br/> <br/> &lt;div class=&quot;banner-footer&quot; id=&quot;sign_up_banner&quot;&gt;<br/> &lt;div class=&quot;corset&quot;&gt;<br/> &lt;div class=&quot;row&quot;&gt;<br/> &lt;div class=&quot;col-sm-4 col-sm-offset-4&quot;&gt;<br/> &lt;a href=&quot;#&quot; class=&quot;btn btn-success btn-block btn-lg&quot;&gt;Sign up now&lt;/a&gt;<br/> &lt;/div&gt;<br/> &lt;/div&gt;<br/> &lt;/div&gt;<br/> &lt;/div&gt;<br/> <br/> &lt;/div&gt;<br/> &lt;/div&gt;<br/>&lt;/div&gt;
50
86
  </code>
51
87
  </pre>
52
88
  </div>
53
89
  </div>
54
90
 
55
- <div class="fullpage-table" id="banner-one">
56
-
91
+ <div class="fullpage-table" id="banner-two">
57
92
  <div class="table-row">
58
- <div class="header-cell bright">
59
- <div class="corset center_text">
60
- <h1 class="loud">Fullpage Table</h1>
93
+ <div class="banner-box responsive-hero with-footer with-header fill berlin fixed-bg">
94
+ <div class="banner-header">
95
+ <div class="corset">
96
+ <h1 class="loud">Fullpage Table <small>with fixed Background</small></h1>
97
+ </div>
61
98
  </div>
62
- </div>
63
- </div>
64
- <div class="table-row">
65
- <div class="content-cell fill">
66
- <div class="corset responsive-hero center_text">
67
-
68
- <p class="loud ">This is a fullpage-table, it allways uses fullpage-height<br/>(if content fits in).</p>
69
- <div class="well">
70
- surounding element (i.e. body) needs the following <em>css</em>:
99
+
100
+ <div class="banner-content">
101
+ <div class="corset">
102
+ <p class="loud">This is a fullpage-table, it allways uses fullpage-height<br/>(if content fits in).</p>
71
103
  <br/>
72
- <code>width: 100%; height: 100%;</code>
104
+ <div class="well">
105
+ <strong>!!!</strong> fixed background doesn't work on chrome browser (Version 35.x - 39.x) <strong>!!!</strong>
106
+ </div>
73
107
  </div>
74
-
75
108
  </div>
76
- </div>
77
- </div>
78
- <div class="table-row">
79
- <div class="footer-cell bright">
80
- <div class="corset center_text">
81
-
82
- <div class="row">
83
- <div class="col-sm-4 col-sm-offset-4">
84
- <!--<a href="#" class="btn btn-success btn-block btn-lg">Sign up now</a>-->
85
- <button class="btn btn-success btn-block help_arrow fakeClick" data-text="Go click me!">
86
- Click Me
87
- </button>
109
+
110
+ <div class="banner-footer" id="sign_up_banner">
111
+ <div class="corset">
112
+ <div class="row">
113
+ <div class="col-sm-4 col-sm-offset-4">
114
+ <!--<a href="#" class="btn btn-success btn-block btn-lg">Sign up now</a>-->
115
+ <button class="btn btn-success btn-block help_arrow fakeClick" data-text="Go click me!">
116
+ Click Me
117
+ </button>
118
+ </div>
88
119
  </div>
89
120
  </div>
90
-
91
121
  </div>
122
+
92
123
  </div>
93
124
  </div>
94
- </div>
95
-
96
-
97
- <div class="section">
98
- <div class="corset">
99
- <h2>Sizes:</h2>
100
-
101
- <p>For <code>.header-cell</code>, <code>.content-cell</code> and <code>.footer-cell</code> within the <code>fullpage-table</code>.
102
- <table class="table">
103
- <thead>
104
- <tr>
105
- <th>Class</th>
106
- <th>Padding-Top</th>
107
- <th>Padding-Bottom</th>
108
- </tr>
109
- </thead>
110
- <tbody>
111
- <tr>
112
- <th> </th>
113
- <td>20px</td>
114
- <td>20px</td>
115
- </tr>
116
- <tr>
117
- <th>.xs<br/>.flat</th>
118
- <td>0</td>
119
- <td>0</td>
120
- </tr>
121
- <tr>
122
- <th>.sm</th>
123
- <td>10px</td>
124
- <td>10px</td>
125
- </tr>
126
- <tr>
127
- <th>.lg</th>
128
- <td>30px</td>
129
- <td>30px</td>
130
- </tr>
131
- <tr>
132
- <th>.xl</th>
133
- <td>40px</td>
134
- <td>40px</td>
135
- </tr>
136
- <tr>
137
- <th>.dark</th>
138
- <td colspan="2">Dark Background (<code>$fullpageDarkBG</code>)</td>
139
- </tr>
140
- <tr>
141
- <th>.bright</th>
142
- <td colspan="2">Bright Background (<code>$fullpageBrightBG</code>)</td>
143
- </tr>
144
- </tbody>
145
- </table>
146
- </div>
147
- </div>
125
+ </div>
@@ -188,7 +188,16 @@
188
188
  <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
189
189
  </div>
190
190
  </div>
191
-
191
+ <div class="section image fixed">
192
+ <div class="corset">
193
+ <h4>.image.fixed</h4>
194
+ <br/>
195
+ <p>with pictures makes more sensce ...</p>
196
+ <br/><br/><br/>
197
+ <br/><br/><br/>
198
+ <br/><br/><br/>
199
+ </div>
200
+ </div>
192
201
 
193
202
  <div class="section black">
194
203
  <div class="corset">
@@ -3,10 +3,10 @@
3
3
  <head>
4
4
  <title>Magic-Stylez</title>
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
6
- <link href="//berlinmagic.github.io/magic_stylez/assets/application-ce916b0eeded3756852d46737705e053.css" media="all" rel="stylesheet" />
6
+ <link href="//berlinmagic.github.io/magic_stylez/assets/application-da1577d96bf3c413c09d9f3bc9dad816.css" media="all" rel="stylesheet" />
7
7
  <script src="//berlinmagic.github.io/magic_stylez/assets/blank-3d36ea4463c48b99876e23297fb09063.js"></script>
8
8
  <meta content="authenticity_token" name="csrf-param" />
9
- <meta content="YDkHSBFC2WjbL1fZsiGaCcCYNnseSw4ekWROMWLlGko=" name="csrf-token" />
9
+ <meta content="PVFg+VF0iagbADVJrRBzOTAh0Rip8//tURVhWCX+r7k=" name="csrf-token" />
10
10
  <link href='http://fonts.googleapis.com/css?family=Gloria+Hallelujah' rel='stylesheet' type='text/css'>
11
11
  <script type="text/javascript" charset="utf-8">
12
12
  App = {};
@@ -3,10 +3,10 @@
3
3
  <head>
4
4
  <title>Magic-Stylez</title>
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
6
- <link href="//berlinmagic.github.io/magic_stylez/assets/application-ce916b0eeded3756852d46737705e053.css" media="all" rel="stylesheet" />
6
+ <link href="//berlinmagic.github.io/magic_stylez/assets/application-da1577d96bf3c413c09d9f3bc9dad816.css" media="all" rel="stylesheet" />
7
7
  <script src="//berlinmagic.github.io/magic_stylez/assets/blank-3d36ea4463c48b99876e23297fb09063.js"></script>
8
8
  <meta content="authenticity_token" name="csrf-param" />
9
- <meta content="YDkHSBFC2WjbL1fZsiGaCcCYNnseSw4ekWROMWLlGko=" name="csrf-token" />
9
+ <meta content="PVFg+VF0iagbADVJrRBzOTAh0Rip8//tURVhWCX+r7k=" name="csrf-token" />
10
10
  <link href='http://fonts.googleapis.com/css?family=Gloria+Hallelujah' rel='stylesheet' type='text/css'>
11
11
  <script type="text/javascript" charset="utf-8">
12
12
  App = {};
@@ -3,10 +3,10 @@
3
3
  <head>
4
4
  <title>Magic-Stylez</title>
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
6
- <link href="//berlinmagic.github.io/magic_stylez/assets/application-ce916b0eeded3756852d46737705e053.css" media="all" rel="stylesheet" />
6
+ <link href="//berlinmagic.github.io/magic_stylez/assets/application-da1577d96bf3c413c09d9f3bc9dad816.css" media="all" rel="stylesheet" />
7
7
  <script src="//berlinmagic.github.io/magic_stylez/assets/blank-3d36ea4463c48b99876e23297fb09063.js"></script>
8
8
  <meta content="authenticity_token" name="csrf-param" />
9
- <meta content="YDkHSBFC2WjbL1fZsiGaCcCYNnseSw4ekWROMWLlGko=" name="csrf-token" />
9
+ <meta content="PVFg+VF0iagbADVJrRBzOTAh0Rip8//tURVhWCX+r7k=" name="csrf-token" />
10
10
  <link href='http://fonts.googleapis.com/css?family=Gloria+Hallelujah' rel='stylesheet' type='text/css'>
11
11
  <script type="text/javascript" charset="utf-8">
12
12
  App = {};
@@ -6,10 +6,10 @@
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
7
7
  <meta name="apple-mobile-web-app-capable" content="yes" />
8
8
  <meta name="apple-mobile-web-app-status-bar-style" content="black" />
9
- <link href="//berlinmagic.github.io/magic_stylez/assets/application-ce916b0eeded3756852d46737705e053.css" media="all" rel="stylesheet" />
10
- <script src="//berlinmagic.github.io/magic_stylez/assets/application-f6b944362b05ca8e034bddd1145b4433.js"></script>
9
+ <link href="//berlinmagic.github.io/magic_stylez/assets/application-da1577d96bf3c413c09d9f3bc9dad816.css" media="all" rel="stylesheet" />
10
+ <script src="//berlinmagic.github.io/magic_stylez/assets/application-01dcc42e6a4c7c37cee0a9daae0e15dc.js"></script>
11
11
  <meta content="authenticity_token" name="csrf-param" />
12
- <meta content="YDkHSBFC2WjbL1fZsiGaCcCYNnseSw4ekWROMWLlGko=" name="csrf-token" />
12
+ <meta content="PVFg+VF0iagbADVJrRBzOTAh0Rip8//tURVhWCX+r7k=" name="csrf-token" />
13
13
  <link href='http://fonts.googleapis.com/css?family=Gloria+Hallelujah' rel='stylesheet' type='text/css'>
14
14
  <link href="//berlinmagic.github.io/magic_stylez/assets/ico/favicon-f1706407301f788c54691b6995f60a8f.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
15
15
  <link href="//berlinmagic.github.io/magic_stylez/assets/ico/favicon-f34b54df445838a4f6bdac98bd904570.png" rel="shortcut icon" type="image/png" />
@@ -124,7 +124,7 @@
124
124
  <div class="corset">
125
125
  <div class="row">
126
126
  <div class="col-sm-9 col-xs-6">
127
- <h1>magic-stylez <small>0.1.1</small></h1>
127
+ <h1>magic-stylez <small>0.1.0</small></h1>
128
128
  </div>
129
129
  <div class="col-sm-3 col-xs-6">
130
130
  <a href="https://github.com/berlinmagic/magic_stylez/tree/master" target="_blank" class="btn btn-sm btn-default btn-divided pull-right">
@@ -3,10 +3,10 @@
3
3
  <head>
4
4
  <title>Magic-Stylez</title>
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
6
- <link href="//berlinmagic.github.io/magic_stylez/assets/application-ce916b0eeded3756852d46737705e053.css" media="all" rel="stylesheet" />
6
+ <link href="//berlinmagic.github.io/magic_stylez/assets/application-da1577d96bf3c413c09d9f3bc9dad816.css" media="all" rel="stylesheet" />
7
7
  <script src="//berlinmagic.github.io/magic_stylez/assets/blank-3d36ea4463c48b99876e23297fb09063.js"></script>
8
8
  <meta content="authenticity_token" name="csrf-param" />
9
- <meta content="YDkHSBFC2WjbL1fZsiGaCcCYNnseSw4ekWROMWLlGko=" name="csrf-token" />
9
+ <meta content="PVFg+VF0iagbADVJrRBzOTAh0Rip8//tURVhWCX+r7k=" name="csrf-token" />
10
10
  <link href='http://fonts.googleapis.com/css?family=Gloria+Hallelujah' rel='stylesheet' type='text/css'>
11
11
  <script type="text/javascript" charset="utf-8">
12
12
  App = {};
@@ -3,10 +3,10 @@
3
3
  <head>
4
4
  <title>Magic-Stylez</title>
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
6
- <link href="//berlinmagic.github.io/magic_stylez/assets/application-ce916b0eeded3756852d46737705e053.css" media="all" rel="stylesheet" />
6
+ <link href="//berlinmagic.github.io/magic_stylez/assets/application-da1577d96bf3c413c09d9f3bc9dad816.css" media="all" rel="stylesheet" />
7
7
  <script src="//berlinmagic.github.io/magic_stylez/assets/blank-3d36ea4463c48b99876e23297fb09063.js"></script>
8
8
  <meta content="authenticity_token" name="csrf-param" />
9
- <meta content="YDkHSBFC2WjbL1fZsiGaCcCYNnseSw4ekWROMWLlGko=" name="csrf-token" />
9
+ <meta content="PVFg+VF0iagbADVJrRBzOTAh0Rip8//tURVhWCX+r7k=" name="csrf-token" />
10
10
  <link href='http://fonts.googleapis.com/css?family=Gloria+Hallelujah' rel='stylesheet' type='text/css'>
11
11
  <script type="text/javascript" charset="utf-8">
12
12
  App = {};
@@ -75,13 +75,6 @@
75
75
  background-size: cover;
76
76
  background-image: image-url('magic/bgs/seucide.jpg');
77
77
  }
78
- #banner-one {
79
- background-color: rgba(255,255,255,.50);
80
- background-position: center center;
81
- background-repeat: no-repeat;
82
- background-size: cover;
83
- background-image: image-url("magic/bgs/hdr_landsberger.jpg");
84
- }
85
78
 
86
79
  .pic-bottom {
87
80
  display: block; display: inline-block; position: relative;
@@ -118,67 +118,3 @@
118
118
 
119
119
 
120
120
 
121
- .numbered_time_line {
122
- display: block; position: relative;
123
-
124
- .numbered_line {
125
- display: block; position: relative;
126
- text-align: left;
127
- padding: 6px 0 6px 50px;
128
- margin: 0 0 40px;
129
-
130
- .number_dot {
131
- position: absolute;
132
- left: 0; top: 0;
133
- background: $brand-color;
134
- border: none;
135
- line-height: 40px;
136
- font-weight: 300;
137
- }
138
- p {
139
- margin: 0;
140
- line-height: 28px;
141
- color: #333 !important;
142
- font-weight: 400;
143
- }
144
- }
145
-
146
- &:before {
147
- display: block; position: absolute;
148
- margin: 0; padding: 0;
149
- content: "";
150
- top: 0; left: 19px; bottom: 0; width: 2px;
151
- background: $brand-color;
152
- }
153
-
154
- }
155
-
156
-
157
-
158
- // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // //
159
- @include responsiveStep-sm {
160
-
161
- .numbered_time_line {
162
- .numbered_line {
163
- &:nth-child(even) {
164
- text-align: right;
165
- margin-right: 50%;
166
- padding: 6px 30px 6px 0px;
167
- .number_dot { left: auto; right: -20px; }
168
- }
169
- &:nth-child(odd) {
170
- margin-left: 50%;
171
- padding: 6px 0px 6px 30px;
172
- .number_dot { left: -20px; }
173
- }
174
- }
175
- &:before {
176
- margin-left: -1px;
177
- left: 50%;
178
- }
179
-
180
- }
181
-
182
- }
183
-
184
-
@@ -4,11 +4,6 @@ html, body, #body {
4
4
  // overflow-y: auto;
5
5
  }
6
6
 
7
-
8
- $fullpageBrightBG: rgba(255,255,255,.42) !default;
9
- $fullpageDarkBG: rgba(0,0,0,.23) !default;
10
-
11
-
12
7
  .fullpage-table, div.table {
13
8
  width: 100%;
14
9
  display: block;
@@ -22,14 +17,10 @@ $fullpageDarkBG: rgba(0,0,0,.23) !default;
22
17
  }
23
18
  }
24
19
 
25
- .header-cell, .footer-cell, .content-cell {
20
+ .header-cell, .footer-cell {
26
21
  padding: 20px 0;
27
- &.xs, &.flat { padding: 0; }
28
- &.sm { padding: 10px 0; }
29
- &.lg { padding: 30px 0; }
30
- &.xl { padding: 40px 0; }
31
- &.bright { background: $fullpageBrightBG; }
32
- &.dark { background: $fullpageDarkBG; }
22
+ background: rgba(255,255,255,.42);
23
+ &.dark { background: rgba(0,0,0,.23); }
33
24
  }
34
25
 
35
26
  }
@@ -1,35 +1,40 @@
1
1
  .section {
2
- display: block; position: relative;
3
- margin: 0;
4
- padding: $section-padding 0;
5
- // background: $white;
6
- text-align: center;
2
+ display: block; position: relative;
3
+ margin: 0;
4
+ padding: $section-padding 0;
5
+ // background: $white;
6
+ text-align: center;
7
7
 
8
8
  font-size: $font-size-base;
9
-
10
9
  .corset, .container { background: inherit; }
11
10
 
12
11
 
13
- &.z, &.zindex, &.z-index { z-index: 1; }
12
+ &.z, &.zindex, &.z-index { z-index: 1; }
14
13
 
15
14
 
16
- &.image {
17
- &.fixed { background-attachment: fixed; /* position: static; */ z-index: 88; }
15
+ &.image {
16
+ &.fixed { background-attachment: fixed; /* position: static; */ z-index: 88; }
18
17
 
19
- background-color: transparent;
20
- background-position: center center;
21
- background-repeat: no-repeat;
22
- background-size: cover;
23
- background-image: url('http://lorempixel.com/g/1200/500/nature/');
24
- .corset, .container { background: transparent; }
25
- }
26
-
27
- &.noise {
28
- .corset, .container { background: transparent; }
29
- }
18
+ background-color: transparent;
19
+ background-position: center center;
20
+ background-repeat: no-repeat;
21
+ background-size: cover;
22
+ background-image: url('http://lorempixel.com/g/1200/500/nature/');
23
+
24
+ // &.fixed {
25
+ // background: transparent image-url('magic/bgs/hdr_landsberger.jpg') no-repeat center center fixed;
26
+ // background-size: cover;
27
+ // }
28
+
29
+ .corset, .container { background: transparent; }
30
+ }
30
31
 
32
+ &.noise {
33
+ .corset, .container { background: transparent; }
34
+ }
31
35
 
32
- //
36
+
37
+ //
33
38
  // Header Section
34
39
  //
35
40
  &.head {
@@ -51,55 +56,55 @@
51
56
  //
52
57
  // Sections with shine
53
58
  //
54
- &.shine-top {
55
- z-index: 1;
56
- overflow: hidden;
57
- &:before {
58
- display: block; position: absolute; content: ""; z-index: 11;
59
- margin: 0; padding: 0;
60
- bottom: 100%; left: 10%; right: 10%; height: 100px;
61
- @include spezial_radius( 500px / 20px );
62
- @include box-shadow( 0 5px 20px 0 rgba(0,0,0,.23) );
63
- }
64
- }
65
- &.shine-bottom {
66
- z-index: 1;
67
- overflow: hidden;
68
- &:after {
69
- display: block; position: absolute; content: ""; z-index: 11;
70
- margin: 0; padding: 0;
71
- top: 100%; left: 10%; right: 10%; height: 100px;
72
- @include spezial_radius( 500px / 20px );
73
- @include box-shadow( 0 -5px 20px 0 rgba(0,0,0,.23) );
74
- }
75
- }
59
+ &.shine-top {
60
+ z-index: 1;
61
+ overflow: hidden;
62
+ &:before {
63
+ display: block; position: absolute; content: ""; z-index: 11;
64
+ margin: 0; padding: 0;
65
+ bottom: 100%; left: 10%; right: 10%; height: 100px;
66
+ @include spezial_radius( 500px / 20px );
67
+ @include box-shadow( 0 5px 20px 0 rgba(0,0,0,.23) );
68
+ }
69
+ }
70
+ &.shine-bottom {
71
+ z-index: 1;
72
+ overflow: hidden;
73
+ &:after {
74
+ display: block; position: absolute; content: ""; z-index: 11;
75
+ margin: 0; padding: 0;
76
+ top: 100%; left: 10%; right: 10%; height: 100px;
77
+ @include spezial_radius( 500px / 20px );
78
+ @include box-shadow( 0 -5px 20px 0 rgba(0,0,0,.23) );
79
+ }
80
+ }
76
81
 
77
82
 
78
83
  //
79
84
  // Border Stylez
80
85
  //
81
- &.hard-top {
82
- border-top: solid 1px $main-border-color;
83
- @include box-shadow( inset 0 1px 1px 0 rgba(255,255,255,.75) );
84
- }
86
+ &.hard-top {
87
+ border-top: solid 1px $main-border-color;
88
+ @include box-shadow( inset 0 1px 1px 0 rgba(255,255,255,.75) );
89
+ }
85
90
  &.hard-bottom {
86
- border-bottom: solid 1px rgba(255,255,255,.75);
87
- @include box-shadow( inset 0 -1px 1px 0 $main-border-color );
88
- }
91
+ border-bottom: solid 1px rgba(255,255,255,.75);
92
+ @include box-shadow( inset 0 -1px 1px 0 $main-border-color );
93
+ }
89
94
  &.hard-top.hard-bottom {
90
- @include box-shadow( inset 0 1px 1px 0 rgba(255,255,255,.75), inset 0 -1px 1px 0 $main-border-color );
95
+ @include box-shadow( inset 0 1px 1px 0 rgba(255,255,255,.75), inset 0 -1px 1px 0 $main-border-color );
91
96
  }
92
97
 
93
98
  &.dotted-top {
94
- border-top: dotted 2px $gray-light;
95
- @include box-shadow( inset 0 1px 1px 0 rgba(255,255,255,.75) );
96
- }
99
+ border-top: dotted 2px $gray-light;
100
+ @include box-shadow( inset 0 1px 1px 0 rgba(255,255,255,.75) );
101
+ }
97
102
  &.dotted-bottom {
98
- border-bottom: dotted 2px $gray-light;
99
- @include box-shadow( 0 1px 1px 0 rgba(255,255,255,.75) );
100
- }
103
+ border-bottom: dotted 2px $gray-light;
104
+ @include box-shadow( 0 1px 1px 0 rgba(255,255,255,.75) );
105
+ }
101
106
  &.dotted-top, &.dotted-bottom {
102
- @include box-shadow( inset 0 1px 1px 0 rgba(255,255,255,.75), 0 1px 1px 0 rgba(255,255,255,.75) );
107
+ @include box-shadow( inset 0 1px 1px 0 rgba(255,255,255,.75), 0 1px 1px 0 rgba(255,255,255,.75) );
103
108
  }
104
109
 
105
110
  //
@@ -114,7 +119,7 @@
114
119
 
115
120
  &.flat { padding-top: 0; padding-bottom: 0; }
116
121
  &.flat-top { padding-top: 0; }
117
- &.flat-bottom { padding-bottom: 0; }
122
+ &.flat-bottom { padding-bottom: 0; }
118
123
 
119
124
 
120
125
  //
@@ -123,17 +128,17 @@
123
128
  background: $section-background;
124
129
  @include all_form_elements { background: $section-input-bg; }
125
130
 
126
- &.dark {
131
+ &.dark {
127
132
  background: $section-dark-background;
128
133
  .three-previews .preview { border-color: $main-border-color; }
129
134
  @include all_form_elements { background: $section-dark-input-bg; }
130
- }
131
- &.black {
135
+ }
136
+ &.black {
132
137
  background: #333;
133
138
  color: #fff;
134
139
  .three-previews .preview { border-color: $main-border-color; }
135
140
  @include all_form_elements { background: $section-dark-input-bg; }
136
- }
141
+ }
137
142
  &.bright {
138
143
  background: $section-bright-background;
139
144
  @include all_form_elements { background: $section-bright-input-bg; }
@@ -146,9 +151,9 @@
146
151
  background: $section-soft-background;
147
152
  @include all_form_elements { background: $section-soft-input-bg; }
148
153
  }
149
- &.blank { background: transparent; }
154
+ &.blank { background: transparent; }
150
155
 
151
- &.one {
156
+ &.one {
152
157
  background: $section-one-background;
153
158
  @include all_form_elements { background: $section-one-input-bg; }
154
159
  }
@@ -166,49 +171,49 @@
166
171
  // Speech Section
167
172
  //
168
173
  &.speech {
169
- &:after {
170
- display: block; position: absolute; content: "";
171
- margin: 0; padding: 0;
172
- width: 0; height: 0;
173
- border: solid 10px transparent;
174
- border-right: solid 10px $section-background;
175
- border-bottom: solid 10px $section-background;
176
- bottom: -8px;
177
- left: 50%;
178
- margin-left: -8px;
179
- @include rotation( 45 );
180
- z-index: 99;
181
- }
182
- &.dark:after {
183
- border-right: solid 10px $section-dark-background;
184
- border-bottom: solid 10px $section-dark-background;
185
- }
186
- &.bright:after {
187
- border-right: solid 10px $section-bright-background;
188
- border-bottom: solid 10px $section-bright-background;
189
- }
190
- &.brand:after {
191
- border-right: solid 10px $section-brand-background;
192
- border-bottom: solid 10px $section-brand-background;
193
- }
194
- &.soft:after {
195
- border-right: solid 10px $section-soft-background;
196
- border-bottom: solid 10px $section-soft-background;
197
- }
198
-
199
- &.one:after {
200
- border-right: solid 10px $section-one-background;
201
- border-bottom: solid 10px $section-one-background;
202
- }
203
- &.two:after {
204
- border-right: solid 10px $section-two-background;
205
- border-bottom: solid 10px $section-two-background;
206
- }
207
- &.three:after {
208
- border-right: solid 10px $section-three-background;
209
- border-bottom: solid 10px $section-three-background;
210
- }
211
- }
174
+ &:after {
175
+ display: block; position: absolute; content: "";
176
+ margin: 0; padding: 0;
177
+ width: 0; height: 0;
178
+ border: solid 10px transparent;
179
+ border-right: solid 10px $section-background;
180
+ border-bottom: solid 10px $section-background;
181
+ bottom: -8px;
182
+ left: 50%;
183
+ margin-left: -8px;
184
+ @include rotation( 45 );
185
+ z-index: 99;
186
+ }
187
+ &.dark:after {
188
+ border-right: solid 10px $section-dark-background;
189
+ border-bottom: solid 10px $section-dark-background;
190
+ }
191
+ &.bright:after {
192
+ border-right: solid 10px $section-bright-background;
193
+ border-bottom: solid 10px $section-bright-background;
194
+ }
195
+ &.brand:after {
196
+ border-right: solid 10px $section-brand-background;
197
+ border-bottom: solid 10px $section-brand-background;
198
+ }
199
+ &.soft:after {
200
+ border-right: solid 10px $section-soft-background;
201
+ border-bottom: solid 10px $section-soft-background;
202
+ }
203
+
204
+ &.one:after {
205
+ border-right: solid 10px $section-one-background;
206
+ border-bottom: solid 10px $section-one-background;
207
+ }
208
+ &.two:after {
209
+ border-right: solid 10px $section-two-background;
210
+ border-bottom: solid 10px $section-two-background;
211
+ }
212
+ &.three:after {
213
+ border-right: solid 10px $section-three-background;
214
+ border-bottom: solid 10px $section-three-background;
215
+ }
216
+ }
212
217
 
213
218
 
214
219
  //
metadata CHANGED
@@ -1,201 +1,195 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: magic_stylez
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.330
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Torsten Wetzel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-20 00:00:00.000000000 Z
11
+ date: 2017-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ! '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3.1'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ! '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.1'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: autoprefixer-rails
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ! '>='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.1'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ! '>='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.1'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: sass
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ! '>='
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '3.2'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ! '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.2'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: bootstrap-sass
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ! '>='
59
+ - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 3.3.5.1
62
- - - <
63
- - !ruby/object:Gem::Version
64
- version: '3.4'
61
+ version: 3.1.1.1
65
62
  type: :runtime
66
63
  prerelease: false
67
64
  version_requirements: !ruby/object:Gem::Requirement
68
65
  requirements:
69
- - - ! '>='
70
- - !ruby/object:Gem::Version
71
- version: 3.3.5.1
72
- - - <
66
+ - - '='
73
67
  - !ruby/object:Gem::Version
74
- version: '3.4'
68
+ version: 3.1.1.1
75
69
  - !ruby/object:Gem::Dependency
76
70
  name: bourbon
77
71
  requirement: !ruby/object:Gem::Requirement
78
72
  requirements:
79
- - - ! '>='
73
+ - - ">="
80
74
  - !ruby/object:Gem::Version
81
75
  version: 3.0.0
82
76
  type: :runtime
83
77
  prerelease: false
84
78
  version_requirements: !ruby/object:Gem::Requirement
85
79
  requirements:
86
- - - ! '>='
80
+ - - ">="
87
81
  - !ruby/object:Gem::Version
88
82
  version: 3.0.0
89
83
  - !ruby/object:Gem::Dependency
90
84
  name: test-unit
91
85
  requirement: !ruby/object:Gem::Requirement
92
86
  requirements:
93
- - - ! '>='
87
+ - - ">="
94
88
  - !ruby/object:Gem::Version
95
89
  version: 2.5.5
96
90
  type: :development
97
91
  prerelease: false
98
92
  version_requirements: !ruby/object:Gem::Requirement
99
93
  requirements:
100
- - - ! '>='
94
+ - - ">="
101
95
  - !ruby/object:Gem::Version
102
96
  version: 2.5.5
103
97
  - !ruby/object:Gem::Dependency
104
98
  name: json
105
99
  requirement: !ruby/object:Gem::Requirement
106
100
  requirements:
107
- - - ! '>='
101
+ - - ">="
108
102
  - !ruby/object:Gem::Version
109
103
  version: 1.8.1
110
104
  type: :development
111
105
  prerelease: false
112
106
  version_requirements: !ruby/object:Gem::Requirement
113
107
  requirements:
114
- - - ! '>='
108
+ - - ">="
115
109
  - !ruby/object:Gem::Version
116
110
  version: 1.8.1
117
111
  - !ruby/object:Gem::Dependency
118
112
  name: sprockets-rails
119
113
  requirement: !ruby/object:Gem::Requirement
120
114
  requirements:
121
- - - ! '>='
115
+ - - ">="
122
116
  - !ruby/object:Gem::Version
123
117
  version: 2.1.3
124
118
  type: :development
125
119
  prerelease: false
126
120
  version_requirements: !ruby/object:Gem::Requirement
127
121
  requirements:
128
- - - ! '>='
122
+ - - ">="
129
123
  - !ruby/object:Gem::Version
130
124
  version: 2.1.3
131
125
  - !ruby/object:Gem::Dependency
132
126
  name: jquery-rails
133
127
  requirement: !ruby/object:Gem::Requirement
134
128
  requirements:
135
- - - ! '>='
129
+ - - ">="
136
130
  - !ruby/object:Gem::Version
137
131
  version: 3.1.0
138
132
  type: :development
139
133
  prerelease: false
140
134
  version_requirements: !ruby/object:Gem::Requirement
141
135
  requirements:
142
- - - ! '>='
136
+ - - ">="
143
137
  - !ruby/object:Gem::Version
144
138
  version: 3.1.0
145
139
  - !ruby/object:Gem::Dependency
146
140
  name: coffee-rails
147
141
  requirement: !ruby/object:Gem::Requirement
148
142
  requirements:
149
- - - ! '>='
143
+ - - ">="
150
144
  - !ruby/object:Gem::Version
151
145
  version: '0'
152
146
  type: :development
153
147
  prerelease: false
154
148
  version_requirements: !ruby/object:Gem::Requirement
155
149
  requirements:
156
- - - ! '>='
150
+ - - ">="
157
151
  - !ruby/object:Gem::Version
158
152
  version: '0'
159
153
  - !ruby/object:Gem::Dependency
160
154
  name: eco
161
155
  requirement: !ruby/object:Gem::Requirement
162
156
  requirements:
163
- - - ! '>='
157
+ - - ">="
164
158
  - !ruby/object:Gem::Version
165
159
  version: '0'
166
160
  type: :development
167
161
  prerelease: false
168
162
  version_requirements: !ruby/object:Gem::Requirement
169
163
  requirements:
170
- - - ! '>='
164
+ - - ">="
171
165
  - !ruby/object:Gem::Version
172
166
  version: '0'
173
167
  - !ruby/object:Gem::Dependency
174
168
  name: uglifier
175
169
  requirement: !ruby/object:Gem::Requirement
176
170
  requirements:
177
- - - ! '>='
171
+ - - ">="
178
172
  - !ruby/object:Gem::Version
179
173
  version: '0'
180
174
  type: :development
181
175
  prerelease: false
182
176
  version_requirements: !ruby/object:Gem::Requirement
183
177
  requirements:
184
- - - ! '>='
178
+ - - ">="
185
179
  - !ruby/object:Gem::Version
186
180
  version: '0'
187
181
  - !ruby/object:Gem::Dependency
188
182
  name: sqlite3
189
183
  requirement: !ruby/object:Gem::Requirement
190
184
  requirements:
191
- - - ! '>='
185
+ - - ">="
192
186
  - !ruby/object:Gem::Version
193
187
  version: '0'
194
188
  type: :development
195
189
  prerelease: false
196
190
  version_requirements: !ruby/object:Gem::Requirement
197
191
  requirements:
198
- - - ! '>='
192
+ - - ">="
199
193
  - !ruby/object:Gem::Version
200
194
  version: '0'
201
195
  description: Lots of styles and helpers we used for several projects.
@@ -205,7 +199,7 @@ executables: []
205
199
  extensions: []
206
200
  extra_rdoc_files: []
207
201
  files:
208
- - .gitignore
202
+ - ".gitignore"
209
203
  - Gemfile
210
204
  - MIT-LICENSE
211
205
  - README.md
@@ -477,17 +471,17 @@ require_paths:
477
471
  - lib
478
472
  required_ruby_version: !ruby/object:Gem::Requirement
479
473
  requirements:
480
- - - ! '>='
474
+ - - ">="
481
475
  - !ruby/object:Gem::Version
482
476
  version: '0'
483
477
  required_rubygems_version: !ruby/object:Gem::Requirement
484
478
  requirements:
485
- - - ! '>='
479
+ - - ">="
486
480
  - !ruby/object:Gem::Version
487
481
  version: '0'
488
482
  requirements: []
489
483
  rubyforge_project:
490
- rubygems_version: 2.4.8
484
+ rubygems_version: 2.6.11
491
485
  signing_key:
492
486
  specification_version: 4
493
487
  summary: A set of sass helper depending on bourbon and bootstrap-sass.