dvl-core 0.0.1 → 0.0.2
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/lib/dvl/core/version.rb +1 -1
- data/preview/app.rb +5 -0
- data/vendor/assets/stylesheets/dvl/core/typography.scss +14 -1
- metadata +2 -4
- data/.hound.yml +0 -5
- data/LICENSE.md +0 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d11ef2bfb302fcfa94723873b612b9784af5955a
|
4
|
+
data.tar.gz: c920115e75d3fed87ea769b3c086231a66d2bd05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72ea3141bdd8130324cd90de7b90c945f6b22ac674cce3ec794cc4c6bae4624f5b27f7ede2f073357c8c84fc42023d4c35d87243b7c75cb31e7b9cdc271ca04b
|
7
|
+
data.tar.gz: 6378c5e5378d48133de7a7ea335231e291380bba2e194db90871a66ff6c8137fbe5d3b3d1e9a1c7822f5949b404dc47f36aebd9b6c100827ca5ae112e9103b76
|
data/README.md
CHANGED
data/lib/dvl/core/version.rb
CHANGED
data/preview/app.rb
CHANGED
@@ -233,6 +233,11 @@ class App < Sinatra::Base
|
|
233
233
|
h5 'Heading 5'
|
234
234
|
h6 'Heading 6'
|
235
235
|
p 'Lorem ipsum.'
|
236
|
+
|
237
|
+
p.microcopy {
|
238
|
+
text 'This is some awesome .microcopy.'
|
239
|
+
a.microcopy_action 'Microcopy action'
|
240
|
+
}
|
236
241
|
end
|
237
242
|
|
238
243
|
script src: '//code.jquery.com/jquery-1.11.1.min.js'
|
@@ -155,4 +155,17 @@ sub {
|
|
155
155
|
color: $darkerGray;
|
156
156
|
font-size: 0.96rem;
|
157
157
|
letter-spacing: 0.06rem;
|
158
|
-
}
|
158
|
+
}
|
159
|
+
|
160
|
+
.microcopy {
|
161
|
+
background: #f7f7f7;
|
162
|
+
font-size: 0.85rem;
|
163
|
+
padding: 0.375rem 1rem;
|
164
|
+
border-radius: $radius;
|
165
|
+
max-width: 22rem;
|
166
|
+
}
|
167
|
+
|
168
|
+
// Actionable links within .microcopy
|
169
|
+
.microcopy_action {
|
170
|
+
display: block;
|
171
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dvl-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Becker
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-11-
|
11
|
+
date: 2014-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -157,10 +157,8 @@ extensions: []
|
|
157
157
|
extra_rdoc_files: []
|
158
158
|
files:
|
159
159
|
- ".gitignore"
|
160
|
-
- ".hound.yml"
|
161
160
|
- ".ruby-version"
|
162
161
|
- Gemfile
|
163
|
-
- LICENSE.md
|
164
162
|
- README.md
|
165
163
|
- circle.yml
|
166
164
|
- dvl-core.gemspec
|
data/.hound.yml
DELETED
data/LICENSE.md
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
Copyright 2014 Department of Better Technology
|
2
|
-
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
-
a copy of this software and associated documentation files (the
|
5
|
-
"Software"), to deal in the Software without restriction, including
|
6
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
-
permit persons to whom the Software is furnished to do so, subject to
|
9
|
-
the following conditions:
|
10
|
-
|
11
|
-
The above copyright notice and this permission notice shall be
|
12
|
-
included in all copies or substantial portions of the Software.
|
13
|
-
|
14
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|