graviton 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 51fb7c6ebdefb00b62e8b24fecca74124eebb0da
4
- data.tar.gz: 34642df983f08b7ee91b4bcfdc4d5d959d4cdb49
3
+ metadata.gz: fd7887316410c6d57091f6f2d6799656bff1b49f
4
+ data.tar.gz: 0afe7236d6233bee8143e0db49dd7670bed114d1
5
5
  SHA512:
6
- metadata.gz: 0bc458d5b547311f295b542d00a4c6f96fbb76c8a3b7c5a51345b7f7e4fe7f5ee3b155f65d639eab5636da3f7c78d669dd840a17a61b8860bb10d0443b2b2be3
7
- data.tar.gz: 48ad3441ec6c4359cbb01cefcde962435aee6c0e460e91c79408e7f44c6cb7f87d32dd8821e10a02840277510afebe0ac21f033698da69a9d6e41e1d20c79c9c
6
+ metadata.gz: 6d22a3ac9b0393d8cbd2fe2169379aa5627a595bd4966738e9a9700ec5bc72d1acc0924e19d2ef9eff8bb7153b5dce290df25a7a4db35891e227fc2d66dda39b
7
+ data.tar.gz: bd21e9306961e790971553b1dd71bd49103c0745a9876de83fbad7b687e318e42897a0208e9580fd7e8f8a1b77178339caf7e1a1844e671384698cf957b96a8a
@@ -0,0 +1,66 @@
1
+ // * * * * * * * * * * * * * * * * * * * * * * * *
2
+ // select
3
+ // * * * * * * * * * * * * * * * * * * * * * * * *
4
+ .input-group {
5
+ margin-bottom: 10px;
6
+ position: relative;
7
+ label {
8
+ display: block;
9
+ margin-bottom: 5px;
10
+ }
11
+ input[type='text'],
12
+ input[type='date'],
13
+ input[type='email'],
14
+ input[type='password'],
15
+ div.text-area {
16
+ line-height: 1.5em;
17
+ font-size: 1.25em;
18
+ background-color: transparent;
19
+ color: $dark;
20
+ border: 0;
21
+ outline: none;
22
+ padding: 0;
23
+ border-bottom: 1px solid $mid;
24
+ width: 100%;
25
+ }
26
+ }
27
+
28
+
29
+
30
+
31
+ // * * * * * * * * * * * * * * * * * * * * * * * *
32
+ // select
33
+ // * * * * * * * * * * * * * * * * * * * * * * * *
34
+ .grav-select {
35
+ position: relative;
36
+ display: inline-block;
37
+ &:after {
38
+ position: absolute;
39
+ z-index: 10;
40
+ content: '▾';
41
+ color: $dark;
42
+ font-size: 12px;
43
+ right: 10px;
44
+ bottom: 10.5px;
45
+ pointer-events: none;
46
+ }
47
+ select {
48
+ position: relative;
49
+ width: 120px;
50
+ -webkit-appearance: none;
51
+ -moz-appearance: none;
52
+ appearance: none;
53
+ background: $light;
54
+ color: $dark;
55
+ border: none;
56
+ outline: none;
57
+ font-size: 14px;
58
+ padding: 9px 10px;
59
+ margin: 0;
60
+ -webkit-border-radius: 0;
61
+ -moz-border-radius: 0;
62
+ border-radius: 0;
63
+ cursor: pointer;
64
+ border-bottom: 2px solid darken($light, 10%);
65
+ }
66
+ }
@@ -2,3 +2,4 @@
2
2
  @import "colors";
3
3
  @import "buttons";
4
4
  @import "forms";
5
+ @import "typography";
@@ -0,0 +1,3 @@
1
+ h1,h2,h3,h4,h5,h6 {
2
+ font-weight: 200;
3
+ }
@@ -1,3 +1,3 @@
1
1
  module Graviton
2
- VERSION = '0.1.1'
2
+ VERSION = '0.1.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graviton
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - codystringham
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-25 00:00:00.000000000 Z
11
+ date: 2016-11-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -40,10 +40,12 @@ files:
40
40
  - MIT-LICENSE
41
41
  - README.md
42
42
  - Rakefile
43
- - app/assets/stylesheets/graviton/applicaiton.scss
44
43
  - app/assets/stylesheets/graviton/base.scss
45
44
  - app/assets/stylesheets/graviton/buttons.scss
46
45
  - app/assets/stylesheets/graviton/colors.scss
46
+ - app/assets/stylesheets/graviton/forms.scss
47
+ - app/assets/stylesheets/graviton/graviton.scss
48
+ - app/assets/stylesheets/graviton/typography.scss
47
49
  - lib/graviton.rb
48
50
  - lib/graviton/engine.rb
49
51
  - lib/graviton/version.rb