gerillass 0.0.6
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/core/_gerillass.scss +4 -0
- data/core/library/_antialias.scss +29 -0
- data/core/library/_before.scss +18 -0
- data/core/library/_border-box.scss +26 -0
- data/core/library/_clearfix.scss +9 -0
- metadata +77 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: fb366e2424a9e7c193e6bd1bd2e1cb4003133d681764afdd7dfb2a886346cfe7
|
|
4
|
+
data.tar.gz: cbdcd153006f1d57db8810532a5aedcd2f9d3bf07cb314783c754ac733218007
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 2554a87240cac4e991e4069819c897bc0a429d4091291d32c78dd8f4966798846dd8d8f330df164323cb1addc05f88b03a607164f6c9a646629a99ec1d4ae893
|
|
7
|
+
data.tar.gz: e7e76a2e6e0649f975456179f79502e522edf28bbcaa655832611bfcf09f7c60e649dee35b60e8c36aed6776dae9fd3b90d65a20a1f5600f6b83d46b5a8b8b63
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
|
|
3
|
+
@mixin gorillass-antialias($value: null) {
|
|
4
|
+
@if not & and $value == null {
|
|
5
|
+
*,
|
|
6
|
+
*::before,
|
|
7
|
+
*::after {
|
|
8
|
+
-webkit-font-smoothing: antialiased;
|
|
9
|
+
-moz-osx-font-smoothing: grayscale;
|
|
10
|
+
}
|
|
11
|
+
} @else if & and $value == "only" {
|
|
12
|
+
&,
|
|
13
|
+
&::before,
|
|
14
|
+
&::after {
|
|
15
|
+
-webkit-font-smoothing: antialiased;
|
|
16
|
+
-moz-osx-font-smoothing: grayscale;
|
|
17
|
+
}
|
|
18
|
+
} @else if & and $value == null {
|
|
19
|
+
&,
|
|
20
|
+
&::before,
|
|
21
|
+
&::after,
|
|
22
|
+
*,
|
|
23
|
+
*::before,
|
|
24
|
+
*::after {
|
|
25
|
+
-webkit-font-smoothing: antialiased;
|
|
26
|
+
-moz-osx-font-smoothing: grayscale;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
|
|
3
|
+
@mixin gorillass-before($content: null) {
|
|
4
|
+
&::before {
|
|
5
|
+
@if $content == null {
|
|
6
|
+
@content;
|
|
7
|
+
} @else if $content != null {
|
|
8
|
+
$data: str-slice($content, 1, 5);
|
|
9
|
+
@if $data == "data-" {
|
|
10
|
+
content: attr(#{$content});
|
|
11
|
+
@content;
|
|
12
|
+
} @else {
|
|
13
|
+
content: "#{$content}";
|
|
14
|
+
@content;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
|
|
3
|
+
@mixin gorillass-border-box($value: null) {
|
|
4
|
+
@if not & and $value == null {
|
|
5
|
+
*,
|
|
6
|
+
*::before,
|
|
7
|
+
*::after {
|
|
8
|
+
box-sizing: border-box;
|
|
9
|
+
}
|
|
10
|
+
} @else if & and $value == "only" {
|
|
11
|
+
&,
|
|
12
|
+
&::before,
|
|
13
|
+
&::after {
|
|
14
|
+
box-sizing: border-box;
|
|
15
|
+
}
|
|
16
|
+
} @else if & and $value == null {
|
|
17
|
+
&,
|
|
18
|
+
&::before,
|
|
19
|
+
&::after,
|
|
20
|
+
*,
|
|
21
|
+
*::before,
|
|
22
|
+
*::after {
|
|
23
|
+
box-sizing: border-box;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
metadata
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: gerillass
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.6
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Halil İbrahim Çakıroğlu
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2020-07-20 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rails
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: sass-rails
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
description: Gerillass is an open-source toolkit that contains a set of Sass mixins
|
|
42
|
+
to help designers and developers to create better, faster and consistent user interfaces.
|
|
43
|
+
email:
|
|
44
|
+
- ibrahimchll@hotmail.com
|
|
45
|
+
executables: []
|
|
46
|
+
extensions: []
|
|
47
|
+
extra_rdoc_files: []
|
|
48
|
+
files:
|
|
49
|
+
- core/_gerillass.scss
|
|
50
|
+
- core/library/_antialias.scss
|
|
51
|
+
- core/library/_before.scss
|
|
52
|
+
- core/library/_border-box.scss
|
|
53
|
+
- core/library/_clearfix.scss
|
|
54
|
+
homepage: https://gerillass.com
|
|
55
|
+
licenses:
|
|
56
|
+
- Apache-2.0
|
|
57
|
+
metadata: {}
|
|
58
|
+
post_install_message:
|
|
59
|
+
rdoc_options: []
|
|
60
|
+
require_paths:
|
|
61
|
+
- lib
|
|
62
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
63
|
+
requirements:
|
|
64
|
+
- - ">="
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: 2.3.0
|
|
67
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
|
+
requirements:
|
|
69
|
+
- - ">="
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: '0'
|
|
72
|
+
requirements: []
|
|
73
|
+
rubygems_version: 3.0.3
|
|
74
|
+
signing_key:
|
|
75
|
+
specification_version: 4
|
|
76
|
+
summary: The coolest Sass toolset for developers.
|
|
77
|
+
test_files: []
|