clrs 0.0.2 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/assets/stylesheets/clrs.scss +56 -1
- data/clrs-0.0.2.gem +0 -0
- data/lib/clrs/version.rb +1 -1
- metadata +3 -4
- data/LICENSE.txt +0 -22
- data/clrs-0.0.1.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd79ddc7a1b8e692feb08941a1800d221dbbb537
|
4
|
+
data.tar.gz: eb4d6a7fde68ab1b9a86e2803e6d1d9272a74efb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 928a698aec0e4483fe663af75c3a1f2044efbb5cf860e976c55e786230008c728493641a8d9f9cbc918d67c31c4e71e4247935760e8c0551a447c2b98c22ec6d
|
7
|
+
data.tar.gz: 71ce4051f92bd1ac3639e4c4b02bfc50d28ad97a609d807bc411152064dc474384d8e5945fa4ca854e6f1ef7f82df2dadc73619eb9f43c87e8fc3b227b3db100
|
data/README.md
CHANGED
@@ -46,7 +46,7 @@ $gray: #aaaaaa;
|
|
46
46
|
$black: #111111;
|
47
47
|
```
|
48
48
|
|
49
|
-
__NOTE:__ You must require the clrs stylesheet before stylesheets using the above scss variables.
|
49
|
+
__NOTE:__ You must require the clrs stylesheet before other stylesheets using the above scss variables.
|
50
50
|
|
51
51
|
## Contributing
|
52
52
|
|
@@ -1,4 +1,7 @@
|
|
1
|
-
|
1
|
+
/* Courtesy of clrs.cc by @mrmrs_ */
|
2
|
+
|
3
|
+
/* Variables */
|
4
|
+
|
2
5
|
$navy: #001f3f;
|
3
6
|
$blue: #0074d9;
|
4
7
|
$aqua: #7fdbff;
|
@@ -16,3 +19,55 @@ $white: #ffffff;
|
|
16
19
|
$silver: #dddddd;
|
17
20
|
$gray: #aaaaaa;
|
18
21
|
$black: #111111;
|
22
|
+
|
23
|
+
/* Backgrounds */
|
24
|
+
|
25
|
+
.bg-navy { background-color: $navy; }
|
26
|
+
.bg-blue { background-color: $blue; }
|
27
|
+
.bg-aqua { background-color: $aqua; }
|
28
|
+
.bg-teal { background-color: $teal; }
|
29
|
+
.bg-olive { background-color: $olive; }
|
30
|
+
.bg-green { background-color: $green; }
|
31
|
+
.bg-lime { background-color: $lime; }
|
32
|
+
.bg-yellow { background-color: $yellow; }
|
33
|
+
.bg-orange { background-color: $orange; }
|
34
|
+
.bg-red { background-color: $red; }
|
35
|
+
.bg-fuchsia { background-color: $fuchsia; }
|
36
|
+
.bg-purple { background-color: $purple; }
|
37
|
+
.bg-maroon { background-color: $maroon; }
|
38
|
+
.bg-white { background-color: $white; }
|
39
|
+
.bg-gray { background-color: $gray; }
|
40
|
+
.bg-silver { background-color: $silver; }
|
41
|
+
.bg-black { background-color: $black; }
|
42
|
+
|
43
|
+
|
44
|
+
/* Colors */
|
45
|
+
|
46
|
+
.navy { color: $navy; }
|
47
|
+
.blue { color: $blue; }
|
48
|
+
.aqua { color: $aqua; }
|
49
|
+
.teal { color: $teal; }
|
50
|
+
.olive { color: $olive; }
|
51
|
+
.green { color: $green; }
|
52
|
+
.lime { color: $lime; }
|
53
|
+
.yellow { color: $yellow; }
|
54
|
+
.orange { color: $orange; }
|
55
|
+
.red { color: $red; }
|
56
|
+
.fuchsia { color: $fuchsia; }
|
57
|
+
.purple { color: $purple; }
|
58
|
+
.maroon { color: $maroon; }
|
59
|
+
.white { color: $white; }
|
60
|
+
.silver { color: $silver; }
|
61
|
+
.gray { color: $gray; }
|
62
|
+
.black { color: $black; }
|
63
|
+
|
64
|
+
/* Prettier Links */
|
65
|
+
|
66
|
+
a {
|
67
|
+
transition: color .3s ease-in-out;
|
68
|
+
}
|
69
|
+
|
70
|
+
a:link { color: $blue; }
|
71
|
+
a:visited { color: $purple; }
|
72
|
+
a:hover { color: $aqua; }
|
73
|
+
a:active { color: $orange; }
|
data/clrs-0.0.2.gem
ADDED
Binary file
|
data/lib/clrs/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clrs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Otander
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-02-
|
11
|
+
date: 2014-02-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -48,11 +48,10 @@ files:
|
|
48
48
|
- .gitignore
|
49
49
|
- Gemfile
|
50
50
|
- LICENSE
|
51
|
-
- LICENSE.txt
|
52
51
|
- README.md
|
53
52
|
- Rakefile
|
54
53
|
- app/assets/stylesheets/clrs.scss
|
55
|
-
- clrs-0.0.
|
54
|
+
- clrs-0.0.2.gem
|
56
55
|
- clrs.gemspec
|
57
56
|
- lib/clrs.rb
|
58
57
|
- lib/clrs/engine.rb
|
data/LICENSE.txt
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
Copyright (c) 2014 John Otander
|
2
|
-
|
3
|
-
MIT License
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
a copy of this software and associated documentation files (the
|
7
|
-
"Software"), to deal in the Software without restriction, including
|
8
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
-
permit persons to whom the Software is furnished to do so, subject to
|
11
|
-
the following conditions:
|
12
|
-
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
included in all copies or substantial portions of the Software.
|
15
|
-
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/clrs-0.0.1.gem
DELETED
Binary file
|