timequake 1.0.8 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/hamburgers/_base.scss +86 -0
  3. data/app/assets/stylesheets/hamburgers/hamburgers.scss +118 -0
  4. data/app/assets/stylesheets/hamburgers/types/_3dx-r.scss +35 -0
  5. data/app/assets/stylesheets/hamburgers/types/_3dx.scss +35 -0
  6. data/app/assets/stylesheets/hamburgers/types/_3dxy-r.scss +35 -0
  7. data/app/assets/stylesheets/hamburgers/types/_3dxy.scss +35 -0
  8. data/app/assets/stylesheets/hamburgers/types/_3dy-r.scss +35 -0
  9. data/app/assets/stylesheets/hamburgers/types/_3dy.scss +35 -0
  10. data/app/assets/stylesheets/hamburgers/types/_arrow-r.scss +16 -0
  11. data/app/assets/stylesheets/hamburgers/types/_arrow.scss +16 -0
  12. data/app/assets/stylesheets/hamburgers/types/_arrowalt-r.scss +36 -0
  13. data/app/assets/stylesheets/hamburgers/types/_arrowalt.scss +36 -0
  14. data/app/assets/stylesheets/hamburgers/types/_arrowturn-r.scss +18 -0
  15. data/app/assets/stylesheets/hamburgers/types/_arrowturn.scss +18 -0
  16. data/app/assets/stylesheets/hamburgers/types/_boring.scss +30 -0
  17. data/app/assets/stylesheets/hamburgers/types/_collapse-r.scss +47 -0
  18. data/app/assets/stylesheets/hamburgers/types/_collapse.scss +47 -0
  19. data/app/assets/stylesheets/hamburgers/types/_elastic-r.scss +41 -0
  20. data/app/assets/stylesheets/hamburgers/types/_elastic.scss +41 -0
  21. data/app/assets/stylesheets/hamburgers/types/_emphatic-r.scss +53 -0
  22. data/app/assets/stylesheets/hamburgers/types/_emphatic.scss +53 -0
  23. data/app/assets/stylesheets/hamburgers/types/_minus.scss +34 -0
  24. data/app/assets/stylesheets/hamburgers/types/_slider-r.scss +38 -0
  25. data/app/assets/stylesheets/hamburgers/types/_slider.scss +38 -0
  26. data/app/assets/stylesheets/hamburgers/types/_spin-r.scss +43 -0
  27. data/app/assets/stylesheets/hamburgers/types/_spin.scss +43 -0
  28. data/app/assets/stylesheets/hamburgers/types/_spring-r.scss +47 -0
  29. data/app/assets/stylesheets/hamburgers/types/_spring.scss +44 -0
  30. data/app/assets/stylesheets/hamburgers/types/_squeeze.scss +43 -0
  31. data/app/assets/stylesheets/hamburgers/types/_stand-r.scss +45 -0
  32. data/app/assets/stylesheets/hamburgers/types/_stand.scss +45 -0
  33. data/app/assets/stylesheets/hamburgers/types/_vortex-r.scss +48 -0
  34. data/app/assets/stylesheets/hamburgers/types/_vortex.scss +48 -0
  35. data/app/assets/stylesheets/timequake/_index.scss +7 -1
  36. data/app/assets/stylesheets/timequake/buttons.scss +3 -1
  37. data/app/assets/stylesheets/timequake/colors.scss +1 -0
  38. data/app/assets/stylesheets/timequake/display.scss +143 -0
  39. data/app/assets/stylesheets/timequake/flex.scss +128 -0
  40. data/app/assets/stylesheets/timequake/forms.scss +18 -0
  41. data/app/assets/stylesheets/timequake/layout.scss +59 -0
  42. data/app/assets/stylesheets/timequake/margin.scss +246 -0
  43. data/app/assets/stylesheets/timequake/padding.scss +246 -0
  44. data/app/assets/stylesheets/timequake/typography.scss +58 -0
  45. data/app/assets/stylesheets/timequake/universal.scss +17 -1
  46. data/app/assets/stylesheets/timequake/visibility.scss +39 -0
  47. data/lib/generators/timequake/templates/timequake_overrides.scss +77 -0
  48. data/lib/timequake/version.rb +1 -1
  49. data/timequake-2.0.1.gem +0 -0
  50. metadata +43 -3
@@ -1,9 +1,26 @@
1
+ //FONTS add fonts here
2
+ // e.g.
3
+ // @font-face {
4
+ // font-family: 'Butler Black';
5
+ // src: font-url('butler_black.otf')
6
+ // }
7
+ //
8
+ // @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;900&display=swap');
9
+ //
10
+ // $butler_black: 'Butler Black', serif;
11
+ // $raleway: 'Raleway', sans-serif;
12
+
1
13
  // BREAKPOINTS
2
14
  $medium: 600px;
3
15
  $large: 800px;
4
16
  $xlarge: 1200px;
5
17
  $xxlarge: 1900px;
6
18
 
19
+ //LAYOUT
20
+ $row-width: 1200px;
21
+ $mobile-gutter: 0 10px;
22
+ $desktop-gutter: 0 10px;
23
+
7
24
  // COLORS
8
25
  // class e.g.
9
26
  // .black { color: $black !important; }
@@ -23,6 +40,7 @@ $teal: #2D9FA2;
23
40
  $primary-color: $red;
24
41
  $secondary-color: $yellow;
25
42
  $tertiary-color: $blue;
43
+ $heading-color: #333;
26
44
  $copy-color: #333;
27
45
  $success-color: #2FAC58;
28
46
  $info-color: #25327C;
@@ -52,6 +70,7 @@ $btn-border-radius: 5px;
52
70
  $btn-border-width: 1px;
53
71
  $btn-padding: 11px 5px;
54
72
  $btn-font-size: 16px;
73
+ $btn-font-weight: 700;
55
74
  $btn-font: $copy-font;
56
75
  $btn-color: $primary-color;
57
76
  $btn-border-color: $primary-color;
@@ -108,5 +127,63 @@ $table-font-size: $copy-font-size;
108
127
  $main-overflow: hidden;
109
128
  $section-padding-desktop: 2rem 0;
110
129
  $section-padding-mobile: 1rem 0;
130
+ $link-hover-color: $primary-color;
111
131
 
112
132
  @import 'timequake/index';
133
+
134
+ // HAMBURGERS
135
+ $hamburger-padding-x : 15px;
136
+ $hamburger-padding-y : 15px;
137
+ $hamburger-layer-width : 40px;
138
+ $hamburger-layer-height : 4px;
139
+ $hamburger-layer-spacing : 6px;
140
+ $hamburger-layer-color : #789798;
141
+ $hamburger-layer-border-radius : 4px;
142
+ $hamburger-hover-opacity : 0.7;
143
+ $hamburger-active-layer-color : $hamburger-layer-color;
144
+ $hamburger-active-hover-opacity: $hamburger-hover-opacity;
145
+
146
+ // To use CSS filters as the hover effect instead of opacity,
147
+ // set $hamburger-hover-use-filter as true and
148
+ // change the value of $hamburger-hover-filter accordingly.
149
+ $hamburger-hover-use-filter : false;
150
+ $hamburger-hover-filter : opacity(0%);
151
+ $hamburger-active-hover-filter: $hamburger-hover-filter;
152
+
153
+ // Remove or comment out the hamburger types you don’t want
154
+ // or need, so they get excluded from the compiled CSS.
155
+ $hamburger-types: (
156
+ 3dx,
157
+ 3dx-r,
158
+ 3dy,
159
+ 3dy-r,
160
+ 3dxy,
161
+ 3dxy-r,
162
+ arrow,
163
+ arrow-r,
164
+ arrowalt,
165
+ arrowalt-r,
166
+ arrowturn,
167
+ arrowturn-r,
168
+ boring,
169
+ collapse,
170
+ collapse-r,
171
+ elastic,
172
+ elastic-r,
173
+ emphatic,
174
+ emphatic-r,
175
+ minus,
176
+ slider,
177
+ slider-r,
178
+ spring,
179
+ spring-r,
180
+ stand,
181
+ stand-r,
182
+ spin,
183
+ spin-r,
184
+ squeeze,
185
+ vortex,
186
+ vortex-r
187
+ );
188
+
189
+ @import "hamburgers/hamburgers"
@@ -1,3 +1,3 @@
1
1
  module Timequake
2
- VERSION = "1.0.8"
2
+ VERSION = "2.0.2"
3
3
  end
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: timequake
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.8
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - George Morris
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-08-19 00:00:00.000000000 Z
11
+ date: 2021-10-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jquery-rails
@@ -57,16 +57,55 @@ files:
57
57
  - app/assets/config/timequake_manifest.js
58
58
  - app/assets/javascripts/timequake.js
59
59
  - app/assets/javascripts/timequake/modals.js
60
+ - app/assets/stylesheets/hamburgers/_base.scss
61
+ - app/assets/stylesheets/hamburgers/hamburgers.scss
62
+ - app/assets/stylesheets/hamburgers/types/_3dx-r.scss
63
+ - app/assets/stylesheets/hamburgers/types/_3dx.scss
64
+ - app/assets/stylesheets/hamburgers/types/_3dxy-r.scss
65
+ - app/assets/stylesheets/hamburgers/types/_3dxy.scss
66
+ - app/assets/stylesheets/hamburgers/types/_3dy-r.scss
67
+ - app/assets/stylesheets/hamburgers/types/_3dy.scss
68
+ - app/assets/stylesheets/hamburgers/types/_arrow-r.scss
69
+ - app/assets/stylesheets/hamburgers/types/_arrow.scss
70
+ - app/assets/stylesheets/hamburgers/types/_arrowalt-r.scss
71
+ - app/assets/stylesheets/hamburgers/types/_arrowalt.scss
72
+ - app/assets/stylesheets/hamburgers/types/_arrowturn-r.scss
73
+ - app/assets/stylesheets/hamburgers/types/_arrowturn.scss
74
+ - app/assets/stylesheets/hamburgers/types/_boring.scss
75
+ - app/assets/stylesheets/hamburgers/types/_collapse-r.scss
76
+ - app/assets/stylesheets/hamburgers/types/_collapse.scss
77
+ - app/assets/stylesheets/hamburgers/types/_elastic-r.scss
78
+ - app/assets/stylesheets/hamburgers/types/_elastic.scss
79
+ - app/assets/stylesheets/hamburgers/types/_emphatic-r.scss
80
+ - app/assets/stylesheets/hamburgers/types/_emphatic.scss
81
+ - app/assets/stylesheets/hamburgers/types/_minus.scss
82
+ - app/assets/stylesheets/hamburgers/types/_slider-r.scss
83
+ - app/assets/stylesheets/hamburgers/types/_slider.scss
84
+ - app/assets/stylesheets/hamburgers/types/_spin-r.scss
85
+ - app/assets/stylesheets/hamburgers/types/_spin.scss
86
+ - app/assets/stylesheets/hamburgers/types/_spring-r.scss
87
+ - app/assets/stylesheets/hamburgers/types/_spring.scss
88
+ - app/assets/stylesheets/hamburgers/types/_squeeze.scss
89
+ - app/assets/stylesheets/hamburgers/types/_stand-r.scss
90
+ - app/assets/stylesheets/hamburgers/types/_stand.scss
91
+ - app/assets/stylesheets/hamburgers/types/_vortex-r.scss
92
+ - app/assets/stylesheets/hamburgers/types/_vortex.scss
60
93
  - app/assets/stylesheets/timequake/_index.scss
61
94
  - app/assets/stylesheets/timequake/breakpoints.scss
62
95
  - app/assets/stylesheets/timequake/buttons.scss
63
96
  - app/assets/stylesheets/timequake/colors.scss
97
+ - app/assets/stylesheets/timequake/display.scss
98
+ - app/assets/stylesheets/timequake/flex.scss
64
99
  - app/assets/stylesheets/timequake/forms.scss
100
+ - app/assets/stylesheets/timequake/layout.scss
101
+ - app/assets/stylesheets/timequake/margin.scss
65
102
  - app/assets/stylesheets/timequake/modals.scss
103
+ - app/assets/stylesheets/timequake/padding.scss
66
104
  - app/assets/stylesheets/timequake/settings.scss
67
105
  - app/assets/stylesheets/timequake/tables.scss
68
106
  - app/assets/stylesheets/timequake/typography.scss
69
107
  - app/assets/stylesheets/timequake/universal.scss
108
+ - app/assets/stylesheets/timequake/visibility.scss
70
109
  - bin/console
71
110
  - bin/setup
72
111
  - lib/generators/timequake/install_generator.rb
@@ -75,6 +114,7 @@ files:
75
114
  - lib/timequake/engine.rb
76
115
  - lib/timequake/errors.rb
77
116
  - lib/timequake/version.rb
117
+ - timequake-2.0.1.gem
78
118
  - timequake.gemspec
79
119
  homepage:
80
120
  licenses:
@@ -95,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
135
  - !ruby/object:Gem::Version
96
136
  version: '0'
97
137
  requirements: []
98
- rubygems_version: 3.1.2
138
+ rubygems_version: 3.1.6
99
139
  signing_key:
100
140
  specification_version: 4
101
141
  summary: Grid and class helper css/sass library