volt-open_dyslexic_3 1.0.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/.gitignore +19 -0
- data/Gemfile +4 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/VERSION +1 -0
- data/app/open_dyslexic_3/assets/css/OpenDyslexic3-Bold.ttf +0 -0
- data/app/open_dyslexic_3/assets/css/OpenDyslexic3-Regular.ttf +0 -0
- data/app/open_dyslexic_3/assets/css/open_dyslexic_font_face.scss +28 -0
- data/app/open_dyslexic_3/assets/css/opendyslexic3-bold-webfont.eot +0 -0
- data/app/open_dyslexic_3/assets/css/opendyslexic3-bold-webfont.svg +521 -0
- data/app/open_dyslexic_3/assets/css/opendyslexic3-bold-webfont.ttf +0 -0
- data/app/open_dyslexic_3/assets/css/opendyslexic3-bold-webfont.woff +0 -0
- data/app/open_dyslexic_3/assets/css/opendyslexic3-bold-webfont.woff2 +0 -0
- data/app/open_dyslexic_3/assets/css/opendyslexic3-regular-webfont.eot +0 -0
- data/app/open_dyslexic_3/assets/css/opendyslexic3-regular-webfont.svg +521 -0
- data/app/open_dyslexic_3/assets/css/opendyslexic3-regular-webfont.ttf +0 -0
- data/app/open_dyslexic_3/assets/css/opendyslexic3-regular-webfont.woff +0 -0
- data/app/open_dyslexic_3/assets/css/opendyslexic3-regular-webfont.woff2 +0 -0
- data/lib/volt/open_dyslexic_3.rb +5 -0
- data/volt-open_dyslexic_3.gemspec +25 -0
- metadata +92 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 2da24893588fda27eca4f8ba1ce41846a2917b36
|
4
|
+
data.tar.gz: b5d7f64901c56d50f573a94bf07a7c20e29024c5
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 55bf2180381c3639b0c5319e282154b8668c0cfa7b459a925a09323b287e31bcdf9a6580e877581d99c3b0111b12d1c472d62b5810ac4a3595184d417027750f
|
7
|
+
data.tar.gz: 80f1238f9bff5812737f750cba50da942ad8b87e24ea86eabc02fa8cc407d3768afcee3c11aa46052cb14c745bae85510f879d121dd93f330f908961c9593728
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Volt::OpenDyslexic3
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'volt-open_dyslexic_3'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install volt-open_dyslexic_3
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
body { font-family: 'opendyslexic3regular' }
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it ( http://bitbucket.com/neurodynamic/volt-open_dyslexic_3/fork )
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0.0
|
Binary file
|
Binary file
|
@@ -0,0 +1,28 @@
|
|
1
|
+
// http://opendyslexic.org/
|
2
|
+
// http://www.fontsquirrel.com/tools/webfont-generator
|
3
|
+
|
4
|
+
@font-face {
|
5
|
+
font-family: 'opendyslexic3regular';
|
6
|
+
src: url('opendyslexic3-regular-webfont.eot');
|
7
|
+
src: url('opendyslexic3-regular-webfont.eot?#iefix') format('embedded-opentype'),
|
8
|
+
url('opendyslexic3-regular-webfont.woff2') format('woff2'),
|
9
|
+
url('opendyslexic3-regular-webfont.woff') format('woff'),
|
10
|
+
url('opendyslexic3-regular-webfont.ttf') format('truetype'),
|
11
|
+
url('opendyslexic3-regular-webfont.svg#opendyslexic3regular') format('svg');
|
12
|
+
font-weight: normal;
|
13
|
+
font-style: normal;
|
14
|
+
|
15
|
+
}
|
16
|
+
|
17
|
+
@font-face {
|
18
|
+
font-family: 'opendyslexic3bold';
|
19
|
+
src: url('opendyslexic3-bold-webfont.eot');
|
20
|
+
src: url('opendyslexic3-bold-webfont.eot?#iefix') format('embedded-opentype'),
|
21
|
+
url('opendyslexic3-bold-webfont.woff2') format('woff2'),
|
22
|
+
url('opendyslexic3-bold-webfont.woff') format('woff'),
|
23
|
+
url('opendyslexic3-bold-webfont.ttf') format('truetype'),
|
24
|
+
url('opendyslexic3-bold-webfont.svg#opendyslexic3bold') format('svg');
|
25
|
+
font-weight: normal;
|
26
|
+
font-style: normal;
|
27
|
+
|
28
|
+
}
|
Binary file
|