scss_ninja 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.
- checksums.yaml +7 -0
- data/.github/workflows/main.yml +16 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.rubocop.yml +13 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/Gemfile +12 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +12 -0
- data/app/assets/stylesheets/buttons.scss +72 -0
- data/app/assets/stylesheets/carousel.scss +156 -0
- data/app/assets/stylesheets/heights.scss +14 -0
- data/app/assets/stylesheets/margins&paddings.scss +74 -0
- data/app/assets/stylesheets/scss_ninja.scss +480 -0
- data/app/assets/stylesheets/slidebtn.scss +48 -0
- data/app/assets/stylesheets/texts&backgrounds.scss +380 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/lib/scss_ninja/scss_ninja_engine.rb +4 -0
- data/lib/scss_ninja/version.rb +5 -0
- data/lib/scss_ninja.rb +9 -0
- data/scss_ninja.gemspec +38 -0
- metadata +89 -0
@@ -0,0 +1,380 @@
|
|
1
|
+
.has-text-center {
|
2
|
+
text-align: center;
|
3
|
+
}
|
4
|
+
|
5
|
+
.text-upcase {
|
6
|
+
text-transform: uppercase;
|
7
|
+
}
|
8
|
+
|
9
|
+
.text-lowercase {
|
10
|
+
text-transform: lowercase;
|
11
|
+
}
|
12
|
+
|
13
|
+
.text-dark {
|
14
|
+
color: #000000;
|
15
|
+
}
|
16
|
+
|
17
|
+
.text-pri {
|
18
|
+
color: #00ffff;
|
19
|
+
}
|
20
|
+
|
21
|
+
.text-danger {
|
22
|
+
color: #ff0000;
|
23
|
+
}
|
24
|
+
|
25
|
+
.text-success {
|
26
|
+
color: #008000;
|
27
|
+
}
|
28
|
+
|
29
|
+
.text-warning {
|
30
|
+
color: #ffa500;
|
31
|
+
}
|
32
|
+
|
33
|
+
.text-pink {
|
34
|
+
color: #ff00ff;
|
35
|
+
}
|
36
|
+
|
37
|
+
.text-gray {
|
38
|
+
color: #808080;
|
39
|
+
}
|
40
|
+
|
41
|
+
.text-light {
|
42
|
+
color: #e6e6e6;
|
43
|
+
}
|
44
|
+
|
45
|
+
.text-info {
|
46
|
+
color: #0000ff;
|
47
|
+
}
|
48
|
+
|
49
|
+
.shadow-red {
|
50
|
+
text-shadow: 2px 2px #ff0000;
|
51
|
+
}
|
52
|
+
|
53
|
+
.shadow-blue {
|
54
|
+
text-shadow: 2px 2px #0000ff;
|
55
|
+
}
|
56
|
+
|
57
|
+
.shadow-white {
|
58
|
+
text-shadow: 2px 2px white;
|
59
|
+
}
|
60
|
+
|
61
|
+
.shadow-light {
|
62
|
+
text-shadow: 2px 2px rgb(223, 220, 220);
|
63
|
+
}
|
64
|
+
|
65
|
+
.shadow-dark {
|
66
|
+
text-shadow: 2px 2px #000;
|
67
|
+
}
|
68
|
+
|
69
|
+
.text-white {
|
70
|
+
color: white;
|
71
|
+
font-weight: 900;
|
72
|
+
text-shadow: 2px 2px rgb(52, 52, 80);
|
73
|
+
font-size: 25px;
|
74
|
+
letter-spacing: 1px;
|
75
|
+
}
|
76
|
+
|
77
|
+
|
78
|
+
/* ############# colors ############ */
|
79
|
+
.bg-dark {
|
80
|
+
background-color: #000000;
|
81
|
+
}
|
82
|
+
|
83
|
+
.bg-light {
|
84
|
+
background-color: #e6e6e6;
|
85
|
+
}
|
86
|
+
|
87
|
+
.bg-gray {
|
88
|
+
background-color: #808080;
|
89
|
+
}
|
90
|
+
|
91
|
+
.bg-white {
|
92
|
+
background-color: white;
|
93
|
+
}
|
94
|
+
|
95
|
+
/* ############# primary colors ########### */
|
96
|
+
|
97
|
+
.bg-pri {
|
98
|
+
background-color: #00ffff;
|
99
|
+
}
|
100
|
+
|
101
|
+
.bg-pri-light-1 {
|
102
|
+
background-color: #1affff;
|
103
|
+
}
|
104
|
+
|
105
|
+
.bg-pri-light-2 {
|
106
|
+
background-color: #4dffff;
|
107
|
+
}
|
108
|
+
|
109
|
+
.bg-pri-light-3 {
|
110
|
+
background-color: #80ffff;
|
111
|
+
}
|
112
|
+
|
113
|
+
.bg-pri-light-4 {
|
114
|
+
background-color: #b3ffff;
|
115
|
+
}
|
116
|
+
|
117
|
+
.bg-pri-light-5 {
|
118
|
+
background-color: #e6ffff;
|
119
|
+
}
|
120
|
+
|
121
|
+
/* ######## primary dark colors */
|
122
|
+
.bg-pri-dark-1 {
|
123
|
+
background-color: #001a1a;
|
124
|
+
}
|
125
|
+
|
126
|
+
.bg-pri-dark-2 {
|
127
|
+
background-color: #004d4d;
|
128
|
+
}
|
129
|
+
|
130
|
+
.bg-pri-dark-3 {
|
131
|
+
background-color: #008080;
|
132
|
+
}
|
133
|
+
|
134
|
+
.bg-pri-dark-4 {
|
135
|
+
background-color: #00b3b3;
|
136
|
+
}
|
137
|
+
|
138
|
+
.bg-pri-dark-4 {
|
139
|
+
background-color: #00cccc;
|
140
|
+
}
|
141
|
+
|
142
|
+
/* ################# Red backgounds ############### */
|
143
|
+
.bg-red {
|
144
|
+
background-color: #ff0000;
|
145
|
+
}
|
146
|
+
|
147
|
+
.bg-red-light-1 {
|
148
|
+
background-color: #ff3333;
|
149
|
+
}
|
150
|
+
|
151
|
+
.bg-red-light-2 {
|
152
|
+
background-color: #ff4d4d;
|
153
|
+
}
|
154
|
+
|
155
|
+
.bg-red-light-3 {
|
156
|
+
background-color: #ff8080;
|
157
|
+
}
|
158
|
+
|
159
|
+
.bg-red-light-4 {
|
160
|
+
background-color: #ff9999;
|
161
|
+
}
|
162
|
+
|
163
|
+
.bg-red-light-5 {
|
164
|
+
background-color: #ffcccc;
|
165
|
+
}
|
166
|
+
|
167
|
+
/* ########### red dark styles ############ */
|
168
|
+
.bg-red-dark-1 {
|
169
|
+
background-color: #1a0000;
|
170
|
+
}
|
171
|
+
|
172
|
+
.bg-red-dark-2 {
|
173
|
+
background-color: #4d0000;
|
174
|
+
}
|
175
|
+
|
176
|
+
.bg-red-dark-3 {
|
177
|
+
background-color: #800000;
|
178
|
+
}
|
179
|
+
|
180
|
+
.bg-red-dark-4 {
|
181
|
+
background-color: #b30000;
|
182
|
+
}
|
183
|
+
|
184
|
+
.bg-red-dark-5 {
|
185
|
+
background-color: #e60000;
|
186
|
+
}
|
187
|
+
|
188
|
+
/* ########## orange backgrounds ########## */
|
189
|
+
.bg-orn {
|
190
|
+
background-color: #ffa500;
|
191
|
+
}
|
192
|
+
|
193
|
+
.bg-orn-light-1 {
|
194
|
+
background-color: #ffb833;
|
195
|
+
}
|
196
|
+
|
197
|
+
.bg-orn-light-2 {
|
198
|
+
background-color: #ffc966;
|
199
|
+
}
|
200
|
+
|
201
|
+
.bg-orn-light-3 {
|
202
|
+
background-color: #ffdb99;
|
203
|
+
}
|
204
|
+
|
205
|
+
.bg-orn-light-4 {
|
206
|
+
background-color: #ffedcc;
|
207
|
+
}
|
208
|
+
|
209
|
+
.bg-orn-light-5 {
|
210
|
+
background-color: #fff6e6;
|
211
|
+
}
|
212
|
+
|
213
|
+
/* ############# Orange dark ############### */
|
214
|
+
.bg-orn-dark-1 {
|
215
|
+
background-color: #1a1100;
|
216
|
+
}
|
217
|
+
|
218
|
+
.bg-orn-dark-2 {
|
219
|
+
background-color: #4d3200;
|
220
|
+
}
|
221
|
+
|
222
|
+
.bg-orn-dark-3 {
|
223
|
+
background-color: #805300;
|
224
|
+
}
|
225
|
+
|
226
|
+
.bg-orn-dark-4 {
|
227
|
+
background-color: #b37400;
|
228
|
+
}
|
229
|
+
|
230
|
+
.bg-orn-dark-5 {
|
231
|
+
background-color: #e69500;
|
232
|
+
}
|
233
|
+
|
234
|
+
/* ############ Success colurs ############## */
|
235
|
+
.bg-suc {
|
236
|
+
background-color: #008000;
|
237
|
+
}
|
238
|
+
|
239
|
+
.bg-suc-light-1 {
|
240
|
+
background-color: #00b300;
|
241
|
+
}
|
242
|
+
|
243
|
+
.bg-suc-light-2 {
|
244
|
+
background-color: #00ff00;
|
245
|
+
}
|
246
|
+
|
247
|
+
.bg-suc-light-3 {
|
248
|
+
background-color: #4dff4d;
|
249
|
+
}
|
250
|
+
|
251
|
+
.bg-suc-light-4 {
|
252
|
+
background-color: #99ff99;
|
253
|
+
}
|
254
|
+
|
255
|
+
.bg-suc-light-5 {
|
256
|
+
background-color: #ccffcc;
|
257
|
+
}
|
258
|
+
|
259
|
+
/* ############# success dark colors ############## */
|
260
|
+
.bg-suc-dark-1 {
|
261
|
+
background-color: #001a00;
|
262
|
+
}
|
263
|
+
|
264
|
+
.bg-suc-dark-2 {
|
265
|
+
background-color: #003300;
|
266
|
+
}
|
267
|
+
|
268
|
+
.bg-suc-dark-3 {
|
269
|
+
background-color: #004d00;
|
270
|
+
}
|
271
|
+
|
272
|
+
.bg-suc-dark-4 {
|
273
|
+
background-color: #006600;
|
274
|
+
}
|
275
|
+
|
276
|
+
.bg-suc-dark-5 {
|
277
|
+
background-color: #028502;
|
278
|
+
}
|
279
|
+
|
280
|
+
/* ############# Pink backgrounds ############ */
|
281
|
+
.bg-pnk {
|
282
|
+
background-color: #ff00ff;
|
283
|
+
}
|
284
|
+
|
285
|
+
.bg-pnk-light-1 {
|
286
|
+
background-color: #ff33ff;
|
287
|
+
}
|
288
|
+
|
289
|
+
.bg-pnk-light-2 {
|
290
|
+
background-color: #ff66ff;
|
291
|
+
}
|
292
|
+
|
293
|
+
.bg-pnk-light-3 {
|
294
|
+
background-color: #ff99ff;
|
295
|
+
}
|
296
|
+
|
297
|
+
.bg-pnk-light-4 {
|
298
|
+
background-color: #ffb3ff;
|
299
|
+
}
|
300
|
+
|
301
|
+
.bg-pnk-light-5 {
|
302
|
+
background-color: #ffe6ff;
|
303
|
+
}
|
304
|
+
|
305
|
+
/* ############ Pink dark colors ############# */
|
306
|
+
.bg-pnk-dark-1 {
|
307
|
+
background-color: #1a001a;
|
308
|
+
}
|
309
|
+
|
310
|
+
.bg-pnk-dark-2 {
|
311
|
+
background-color: #4d004d;
|
312
|
+
}
|
313
|
+
|
314
|
+
.bg-pnk-dark-3 {
|
315
|
+
background-color: #800080;
|
316
|
+
}
|
317
|
+
|
318
|
+
.bg-pnk-dark-4 {
|
319
|
+
background-color: #b300b3;
|
320
|
+
}
|
321
|
+
|
322
|
+
.bg-pnk-dark-5 {
|
323
|
+
background-color: #cc00cc;
|
324
|
+
}
|
325
|
+
|
326
|
+
/* ############ Info background colors ########### */
|
327
|
+
.bg-info {
|
328
|
+
background-color: #0000ff;
|
329
|
+
}
|
330
|
+
|
331
|
+
.bg-info-light-1 {
|
332
|
+
background-color: #3333ff;
|
333
|
+
}
|
334
|
+
|
335
|
+
.bg-info-light-2 {
|
336
|
+
background-color: #6666ff;
|
337
|
+
}
|
338
|
+
|
339
|
+
.bg-info-light-3 {
|
340
|
+
background-color: #9999ff;
|
341
|
+
}
|
342
|
+
|
343
|
+
.bg-info-light-4 {
|
344
|
+
background-color: #bdbdfd;
|
345
|
+
}
|
346
|
+
|
347
|
+
.bg-info-light-5 {
|
348
|
+
background-color: #d0d0fa;
|
349
|
+
}
|
350
|
+
|
351
|
+
/* ############ Info dark styles ############### */
|
352
|
+
.bg-info-dark-1 {
|
353
|
+
background-color: #000033;
|
354
|
+
}
|
355
|
+
|
356
|
+
.bg-info-dark-2 {
|
357
|
+
background-color: #000066;
|
358
|
+
}
|
359
|
+
|
360
|
+
.bg-info-dark-3 {
|
361
|
+
background-color: #000099;
|
362
|
+
}
|
363
|
+
|
364
|
+
.bg-info-dark-4 {
|
365
|
+
background-color: #0303ca;
|
366
|
+
}
|
367
|
+
|
368
|
+
.bg-info-dark-5 {
|
369
|
+
background-color: #0404d8;
|
370
|
+
}
|
371
|
+
|
372
|
+
/* ############ Gradients x-axis ############# */
|
373
|
+
|
374
|
+
.grdx-pnkl-orn {
|
375
|
+
background: linear-gradient(to right, #cc99ff 0%, #ff9966 100%);
|
376
|
+
}
|
377
|
+
|
378
|
+
.grdx-pri-orn {
|
379
|
+
background: linear-gradient(to right, #66ffcc 0%, #ff9933 71%);
|
380
|
+
}
|
data/bin/console
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require "bundler/setup"
|
5
|
+
require "scss_ninja"
|
6
|
+
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
9
|
+
|
10
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
11
|
+
# require "pry"
|
12
|
+
# Pry.start
|
13
|
+
|
14
|
+
require "irb"
|
15
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/lib/scss_ninja.rb
ADDED
data/scss_ninja.gemspec
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/scss_ninja/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "scss_ninja"
|
7
|
+
spec.version = ScssNinja::VERSION
|
8
|
+
spec.authors = ["tongoonamujera"]
|
9
|
+
spec.email = ["tongoonamujera@gmail.com"]
|
10
|
+
|
11
|
+
spec.summary = "built to make styling look so easy"
|
12
|
+
spec.description = "Work still in progress"
|
13
|
+
spec.homepage = "https://github.com/tongoonamujera/scss_ninja.git"
|
14
|
+
spec.license = "MIT"
|
15
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
|
16
|
+
|
17
|
+
# spec.metadata["allowed_push_host"] = "https://github.com/tongoonamujera/scss_ninja.git"
|
18
|
+
|
19
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
20
|
+
spec.metadata["source_code_uri"] = "https://github.com/tongoonamujera/scss_ninja.git"
|
21
|
+
spec.metadata["changelog_uri"] = "https://github.com/tongoonamujera/scss_ninja.git"
|
22
|
+
|
23
|
+
# Specify which files should be added to the gem when it is released.
|
24
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
25
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
26
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
|
27
|
+
end
|
28
|
+
spec.bindir = "exe"
|
29
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
30
|
+
spec.require_paths = ["lib"]
|
31
|
+
|
32
|
+
# Uncomment to register a new dependency of your gem
|
33
|
+
# spec.add_dependency "example-gem", "~> 1.0"
|
34
|
+
|
35
|
+
# For more information and examples about making a new gem, checkout our
|
36
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
37
|
+
spec.add_runtime_dependency 'autoprefixer-rails', '~> 10.3', '>= 10.3.3.0'
|
38
|
+
end
|
metadata
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: scss_ninja
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- tongoonamujera
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-10-30 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: autoprefixer-rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '10.3'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 10.3.3.0
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '10.3'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 10.3.3.0
|
33
|
+
description: Work still in progress
|
34
|
+
email:
|
35
|
+
- tongoonamujera@gmail.com
|
36
|
+
executables: []
|
37
|
+
extensions: []
|
38
|
+
extra_rdoc_files: []
|
39
|
+
files:
|
40
|
+
- ".github/workflows/main.yml"
|
41
|
+
- ".gitignore"
|
42
|
+
- ".rspec"
|
43
|
+
- ".rubocop.yml"
|
44
|
+
- CHANGELOG.md
|
45
|
+
- CODE_OF_CONDUCT.md
|
46
|
+
- Gemfile
|
47
|
+
- LICENSE.txt
|
48
|
+
- README.md
|
49
|
+
- Rakefile
|
50
|
+
- app/assets/stylesheets/buttons.scss
|
51
|
+
- app/assets/stylesheets/carousel.scss
|
52
|
+
- app/assets/stylesheets/heights.scss
|
53
|
+
- app/assets/stylesheets/margins&paddings.scss
|
54
|
+
- app/assets/stylesheets/scss_ninja.scss
|
55
|
+
- app/assets/stylesheets/slidebtn.scss
|
56
|
+
- app/assets/stylesheets/texts&backgrounds.scss
|
57
|
+
- bin/console
|
58
|
+
- bin/setup
|
59
|
+
- lib/scss_ninja.rb
|
60
|
+
- lib/scss_ninja/scss_ninja_engine.rb
|
61
|
+
- lib/scss_ninja/version.rb
|
62
|
+
- scss_ninja.gemspec
|
63
|
+
homepage: https://github.com/tongoonamujera/scss_ninja.git
|
64
|
+
licenses:
|
65
|
+
- MIT
|
66
|
+
metadata:
|
67
|
+
homepage_uri: https://github.com/tongoonamujera/scss_ninja.git
|
68
|
+
source_code_uri: https://github.com/tongoonamujera/scss_ninja.git
|
69
|
+
changelog_uri: https://github.com/tongoonamujera/scss_ninja.git
|
70
|
+
post_install_message:
|
71
|
+
rdoc_options: []
|
72
|
+
require_paths:
|
73
|
+
- lib
|
74
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: 2.4.0
|
79
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0'
|
84
|
+
requirements: []
|
85
|
+
rubygems_version: 3.2.16
|
86
|
+
signing_key:
|
87
|
+
specification_version: 4
|
88
|
+
summary: built to make styling look so easy
|
89
|
+
test_files: []
|