kyruus-bootstrap-sass 1.0.0.rc1

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.
Files changed (48) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +19 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +29 -0
  6. data/Rakefile +1 -0
  7. data/kyruus-bootstrap-sass.gemspec +27 -0
  8. data/lib/kyruus/bootstrap/sass.rb +10 -0
  9. data/lib/kyruus/bootstrap/sass/engine.rb +11 -0
  10. data/lib/kyruus/bootstrap/sass/version.rb +7 -0
  11. data/vendor/assets/fonts/museo_slab_300-webfont.eot +0 -0
  12. data/vendor/assets/fonts/museo_slab_300-webfont.ttf +0 -0
  13. data/vendor/assets/fonts/museo_slab_500-webfont.eot +0 -0
  14. data/vendor/assets/fonts/museo_slab_500-webfont.ttf +0 -0
  15. data/vendor/assets/fonts/proximanova-bold-webfont.eot +0 -0
  16. data/vendor/assets/fonts/proximanova-bold-webfont.ttf +0 -0
  17. data/vendor/assets/fonts/proximanova-webfont.eot +0 -0
  18. data/vendor/assets/fonts/proximanova-webfont.ttf +0 -0
  19. data/vendor/assets/images/kyruus-bootstrap/kyruus-logo-white-large.gif +0 -0
  20. data/vendor/assets/images/kyruus-bootstrap/kyruus-logo-white.gif +0 -0
  21. data/vendor/assets/images/kyruus-bootstrap/kyruus-logo-white.svg +81 -0
  22. data/vendor/assets/images/kyruus-bootstrap/kyruus-waves-light.svg +9 -0
  23. data/vendor/assets/images/kyruus-bootstrap/kyruus-waves.svg +9 -0
  24. data/vendor/assets/images/kyruus-bootstrap/passport-logo-white-large.gif +0 -0
  25. data/vendor/assets/images/kyruus-bootstrap/passport-logo-white.gif +0 -0
  26. data/vendor/assets/images/kyruus-bootstrap/passport-logo-white.svg +121 -0
  27. data/vendor/assets/stylesheets/kyruus-bootstrap.scss +26 -0
  28. data/vendor/assets/stylesheets/kyruus-bootstrap/_alerts.scss +62 -0
  29. data/vendor/assets/stylesheets/kyruus-bootstrap/_button-groups.scss +50 -0
  30. data/vendor/assets/stylesheets/kyruus-bootstrap/_buttons.scss +83 -0
  31. data/vendor/assets/stylesheets/kyruus-bootstrap/_close.scss +14 -0
  32. data/vendor/assets/stylesheets/kyruus-bootstrap/_dropdowns.scss +14 -0
  33. data/vendor/assets/stylesheets/kyruus-bootstrap/_font-awesome.scss +78 -0
  34. data/vendor/assets/stylesheets/kyruus-bootstrap/_fonts.scss +35 -0
  35. data/vendor/assets/stylesheets/kyruus-bootstrap/_footer.scss +27 -0
  36. data/vendor/assets/stylesheets/kyruus-bootstrap/_forms.scss +26 -0
  37. data/vendor/assets/stylesheets/kyruus-bootstrap/_jumbotron.scss +26 -0
  38. data/vendor/assets/stylesheets/kyruus-bootstrap/_labels-badges.scss +38 -0
  39. data/vendor/assets/stylesheets/kyruus-bootstrap/_lazy.scss +83 -0
  40. data/vendor/assets/stylesheets/kyruus-bootstrap/_mixins.scss +32 -0
  41. data/vendor/assets/stylesheets/kyruus-bootstrap/_modals.scss +14 -0
  42. data/vendor/assets/stylesheets/kyruus-bootstrap/_navbar.scss +233 -0
  43. data/vendor/assets/stylesheets/kyruus-bootstrap/_progress-bars.scss +78 -0
  44. data/vendor/assets/stylesheets/kyruus-bootstrap/_tables.scss +38 -0
  45. data/vendor/assets/stylesheets/kyruus-bootstrap/_type.scss +106 -0
  46. data/vendor/assets/stylesheets/kyruus-bootstrap/_variables.scss +149 -0
  47. data/vendor/assets/stylesheets/kyruus-bootstrap/_wells.scss +27 -0
  48. metadata +160 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: dc7db24e36abdf1483ab2dce4446fc8f2e3ac67d
4
+ data.tar.gz: 2fffe61897857a34eddfdb31787406fb31029e37
5
+ SHA512:
6
+ metadata.gz: e73acecfb77983441c528433a630c3c4664e32ded91da22fae089b806962747c08360d52f3a13fd83723e323506c40b5a2980087f3b14a02931393315afd665c
7
+ data.tar.gz: 20a79b164851e2d5495e1b6694519f3d545ba81d974b3c848d680175deaaa4eeba0726d5a14690c09acd36fd4a3a42949ea8e4abaa6756c97cb69985f226713a
@@ -0,0 +1,19 @@
1
+ *.gem
2
+ *.rbc
3
+ .idea
4
+ .bundle
5
+ .config
6
+ .yardoc
7
+ .DS_Store
8
+ Gemfile.lock
9
+ InstalledFiles
10
+ _yardoc
11
+ coverage
12
+ doc/
13
+ lib/bundler/man
14
+ pkg
15
+ rdoc
16
+ spec/reports
17
+ test/tmp
18
+ test/version_tmp
19
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in kyruus-bootstrap-sass.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Travis Chase
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.
@@ -0,0 +1,29 @@
1
+ # Kyruus::Bootstrap::Sass
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'kyruus-bootstrap-sass'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install kyruus-bootstrap-sass
18
+
19
+ ## Usage
20
+
21
+ Add @import "kyruus-bootstrap"; to application.css.scss
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
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
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'kyruus/bootstrap/sass/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "kyruus-bootstrap-sass"
8
+ spec.version = Kyruus::Bootstrap::Sass::VERSION
9
+ spec.authors = ["Travis Chase"]
10
+ spec.email = ["travis@travischase.me"]
11
+ spec.description = "Kyruus modifications to Twitter Bootstrap and Font Awesome"
12
+ spec.summary = "Kyruus Bootstrap"
13
+ spec.homepage = "https://github.com/Kyruus/kyruus-bootstrap-sass"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+
24
+ spec.add_runtime_dependency 'sass-rails', '>= 3.1.1'
25
+ spec.add_runtime_dependency 'bootstrap-sass', '>= 2.3.2.1'
26
+ spec.add_runtime_dependency 'font-awesome-sass', '>= 3.2.1.2'
27
+ end
@@ -0,0 +1,10 @@
1
+ require "kyruus/bootstrap/sass/version"
2
+
3
+ module Kyruus
4
+ module Bootstrap
5
+ module Sass
6
+ require 'kyruus/bootstrap/sass/engine'
7
+ require 'kyruus/bootstrap/sass/version'
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,11 @@
1
+ module Kyruus
2
+ module Bootstrap
3
+ module Sass
4
+ class Engine < ::Rails::Engine
5
+ initializer "kyruus-bootstrap-sass.assets.precompile" do |app|
6
+ app.config.assets.precompile += %w(*.otf *.eot *.svg *.ttf *.woff *.gif *.jpg)
7
+ end
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,7 @@
1
+ module Kyruus
2
+ module Bootstrap
3
+ module Sass
4
+ VERSION = "1.0.0.rc1"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,81 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ width="75px" height="25px" viewBox="0 0 75 25" enable-background="new 0 0 75 25" xml:space="preserve">
6
+ <g>
7
+ <g opacity="0.25">
8
+ <path fill="#040200" d="M58.65,5.591l-0.482,0.482v6.175c0,1.087-0.148,1.936-0.447,2.521c-0.289,0.576-0.686,1.028-1.172,1.344
9
+ c-0.484,0.314-0.986,0.468-1.529,0.468c-0.631,0-1.137-0.155-1.551-0.474c-0.166-0.129-0.557-0.675-0.557-2.948V6.073L52.43,5.591
10
+ h-2.092l-0.48,0.482v7.963c0,2.162,0.461,3.582,1.412,4.342c0.904,0.723,2.016,1.089,3.299,1.089c0.59,0,1.143-0.098,1.645-0.291
11
+ c0.492-0.188,0.975-0.47,1.438-0.836c0.174-0.139,0.346-0.299,0.518-0.481v0.778l0.482,0.482h2.092l0.482-0.482V6.073
12
+ l-0.482-0.482H58.65z"/>
13
+ <path fill="#040200" d="M73.736,13.247c-0.201-0.456-0.512-0.849-0.934-1.173c-0.275-0.204-0.557-0.375-0.832-0.508
14
+ c-0.176-0.085-0.572-0.244-1.967-0.646l-1.736-0.495c-0.758-0.219-1.107-0.426-1.27-0.562c-0.176-0.151-0.26-0.336-0.26-0.583
15
+ c0-0.363,0.152-0.651,0.48-0.91c0.354-0.278,0.895-0.419,1.613-0.419c0.609,0,1.094,0.099,1.438,0.296
16
+ c0.344,0.196,0.387,0.409,0.387,0.616l0.482,0.482h2.104l0.48-0.527c0-0.912-0.379-1.745-1.129-2.477
17
+ c-0.758-0.739-1.951-1.099-3.65-1.099c-1.691,0-3.002,0.422-3.889,1.255c-0.895,0.841-1.35,1.837-1.35,2.961
18
+ c0,1.626,0.938,2.796,2.809,3.485l3.209,1.001c1.1,0.34,1.227,0.838,1.227,1.183c0,0.418-0.201,0.779-0.615,1.105
19
+ c-0.441,0.35-1.041,0.526-1.781,0.526c-0.838,0-1.447-0.144-1.76-0.416c-0.305-0.266-0.447-0.577-0.447-1.025l-0.482-0.481h-2.092
20
+ l-0.482,0.526c0,0.815,0.236,1.546,0.699,2.171c0.451,0.608,1.061,1.089,1.812,1.429c0.738,0.335,1.668,0.504,2.762,0.504
21
+ c1.748,0,3.109-0.453,4.045-1.348c0.943-0.901,1.42-2.025,1.42-3.341C74.027,14.204,73.93,13.689,73.736,13.247z"/>
22
+ <polygon fill="#040200" points="11.009,6.401 10.657,5.59 8.238,5.59 7.885,5.744 3.146,10.832 3.146,0.482 2.665,0 0.482,0
23
+ 0,0.482 0,18.637 0.482,19.118 2.665,19.118 3.146,18.637 3.146,13.371 7.87,18.948 8.238,19.118 10.859,19.118 11.227,18.325
24
+ 5.834,11.958 "/>
25
+ <path fill="#040200" d="M22.641,5.59l-0.443,0.294l-3.516,8.318l-3.751-8.329l-0.44-0.284h-2.319L11.732,6.27l5.308,11.821
26
+ l-0.126,0.301c-0.581,1.365-0.912,1.896-1.087,2.103c-0.235,0.274-0.523,0.47-0.879,0.596c-0.382,0.135-0.839,0.203-1.358,0.203
27
+ h-1.181l-0.482,0.481v1.744L12.408,24h1.575c0.964,0,1.727-0.123,2.33-0.375c0.602-0.253,1.175-0.688,1.704-1.295
28
+ c0.518-0.597,1.13-1.743,1.87-3.505l5.293-12.566L24.736,5.59H22.641z"/>
29
+ <path fill="#040200" d="M31.66,5.55c-0.521,0.203-1.016,0.5-1.474,0.885c-0.125,0.105-0.247,0.221-0.366,0.349V6.072L29.339,5.59
30
+ h-2.092l-0.482,0.482v12.564l0.482,0.481h2.092l0.482-0.481v-6.209c0-1.605,0.329-2.719,0.979-3.311
31
+ c0.67-0.612,1.332-0.909,2.02-0.909c0.494,0,0.969,0.105,1.408,0.313l0.688-0.436V5.915l-0.305-0.448
32
+ C33.821,5.155,32.67,5.157,31.66,5.55z"/>
33
+ <path fill="#040200" d="M46.979,5.59h-2.094l-0.482,0.482v6.175c0,1.089-0.148,1.937-0.445,2.521
34
+ c-0.291,0.576-0.686,1.028-1.172,1.344c-0.486,0.314-0.986,0.468-1.531,0.468c-0.629,0-1.137-0.155-1.551-0.474
35
+ c-0.166-0.129-0.557-0.674-0.557-2.948V6.072L38.666,5.59h-2.092l-0.482,0.482v7.964c0,2.162,0.462,3.582,1.412,4.341
36
+ c0.905,0.724,2.016,1.09,3.299,1.09c0.588,0,1.141-0.098,1.645-0.291c0.49-0.188,0.975-0.471,1.438-0.836
37
+ c0.174-0.139,0.346-0.298,0.518-0.481v0.778l0.482,0.481h2.094l0.48-0.481V6.072L46.979,5.59z"/>
38
+ </g>
39
+ <g>
40
+ <g>
41
+ <g>
42
+ <g>
43
+ <path fill="#FFFFFF" d="M58.65,6.591l-0.482,0.482v6.175c0,1.087-0.148,1.936-0.447,2.521
44
+ c-0.289,0.576-0.686,1.028-1.172,1.344c-0.484,0.314-0.986,0.468-1.529,0.468c-0.631,0-1.137-0.155-1.551-0.474
45
+ c-0.166-0.129-0.557-0.675-0.557-2.948V7.073L52.43,6.591h-2.092l-0.48,0.482v7.963c0,2.162,0.461,3.582,1.412,4.342
46
+ c0.904,0.723,2.016,1.089,3.299,1.089c0.59,0,1.143-0.098,1.645-0.291c0.492-0.188,0.975-0.47,1.438-0.836
47
+ c0.174-0.139,0.346-0.299,0.518-0.481v0.778l0.482,0.482h2.092l0.482-0.482V7.073l-0.482-0.482H58.65z"/>
48
+ <path fill="#FFFFFF" d="M73.736,14.247c-0.201-0.456-0.512-0.849-0.934-1.173c-0.275-0.204-0.557-0.375-0.832-0.508
49
+ c-0.176-0.085-0.572-0.244-1.967-0.646l-1.736-0.495c-0.758-0.219-1.107-0.426-1.27-0.562c-0.176-0.151-0.26-0.336-0.26-0.583
50
+ c0-0.363,0.152-0.651,0.48-0.91c0.354-0.278,0.895-0.419,1.613-0.419c0.609,0,1.094,0.099,1.438,0.296
51
+ c0.344,0.196,0.387,0.409,0.387,0.616l0.482,0.482h2.104l0.48-0.527c0-0.912-0.379-1.745-1.129-2.477
52
+ c-0.758-0.739-1.951-1.099-3.65-1.099c-1.691,0-3.002,0.422-3.889,1.255c-0.895,0.841-1.35,1.837-1.35,2.961
53
+ c0,1.626,0.938,2.796,2.809,3.485l3.209,1.001c1.1,0.34,1.227,0.838,1.227,1.183c0,0.418-0.201,0.779-0.615,1.105
54
+ c-0.441,0.35-1.041,0.526-1.781,0.526c-0.838,0-1.447-0.144-1.76-0.416c-0.305-0.266-0.447-0.577-0.447-1.025l-0.482-0.481
55
+ h-2.092l-0.482,0.526c0,0.815,0.236,1.546,0.699,2.171c0.451,0.608,1.061,1.089,1.812,1.429
56
+ c0.738,0.335,1.668,0.504,2.762,0.504c1.748,0,3.109-0.453,4.045-1.348c0.943-0.901,1.42-2.025,1.42-3.341
57
+ C74.027,15.204,73.93,14.689,73.736,14.247z"/>
58
+ </g>
59
+ <g>
60
+ <polygon fill="#FFFFFF" points="11.009,7.401 10.657,6.59 8.238,6.59 7.885,6.744 3.146,11.832 3.146,1.482 2.665,1 0.482,1
61
+ 0,1.482 0,19.637 0.482,20.118 2.665,20.118 3.146,19.637 3.146,14.371 7.87,19.948 8.238,20.118 10.859,20.118 11.227,19.325
62
+ 5.834,12.958 "/>
63
+ <path fill="#FFFFFF" d="M22.641,6.59l-0.443,0.294l-3.516,8.318l-3.751-8.329l-0.44-0.284h-2.319L11.732,7.27l5.308,11.821
64
+ l-0.126,0.301c-0.581,1.365-0.912,1.896-1.087,2.103c-0.235,0.274-0.523,0.47-0.879,0.596
65
+ c-0.382,0.135-0.839,0.203-1.358,0.203h-1.181l-0.482,0.481v1.744L12.408,25h1.575c0.964,0,1.727-0.123,2.33-0.375
66
+ c0.602-0.253,1.175-0.688,1.704-1.295c0.518-0.597,1.13-1.743,1.87-3.505l5.293-12.566L24.736,6.59H22.641z"/>
67
+ <path fill="#FFFFFF" d="M31.66,6.55c-0.521,0.203-1.016,0.5-1.474,0.885c-0.125,0.105-0.247,0.221-0.366,0.349V7.072
68
+ L29.339,6.59h-2.092l-0.482,0.482v12.564l0.482,0.481h2.092l0.482-0.481v-6.209c0-1.605,0.329-2.719,0.979-3.311
69
+ c0.67-0.612,1.332-0.909,2.02-0.909c0.494,0,0.969,0.105,1.408,0.313l0.688-0.436V6.915l-0.305-0.448
70
+ C33.821,6.155,32.67,6.157,31.66,6.55z"/>
71
+ <path fill="#FFFFFF" d="M46.979,6.59h-2.094l-0.482,0.482v6.175c0,1.089-0.148,1.937-0.445,2.521
72
+ c-0.291,0.576-0.686,1.028-1.172,1.344c-0.486,0.314-0.986,0.468-1.531,0.468c-0.629,0-1.137-0.155-1.551-0.474
73
+ c-0.166-0.129-0.557-0.674-0.557-2.948V7.072L38.666,6.59h-2.092l-0.482,0.482v7.964c0,2.162,0.462,3.582,1.412,4.341
74
+ c0.905,0.724,2.016,1.09,3.299,1.09c0.588,0,1.141-0.098,1.645-0.291c0.49-0.188,0.975-0.471,1.438-0.836
75
+ c0.174-0.139,0.346-0.298,0.518-0.481v0.778l0.482,0.481h2.094l0.48-0.481V7.072L46.979,6.59z"/>
76
+ </g>
77
+ </g>
78
+ </g>
79
+ </g>
80
+ </g>
81
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ width="150px" height="6px" viewBox="0 0 150 6" enable-background="new 0 0 150 6" xml:space="preserve">
6
+ <path opacity="0.1" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" d="M0,6c37.5,0,37.5,6,75,6s37.5-6,75-6"/>
7
+ <path opacity="0.1" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" d="M0,0c37.5,0,37.5,6,75,6s37.5-6,75-6"/>
8
+ <path opacity="0.1" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" d="M0-6c37.5,0,37.5,6,75,6s37.5-6,75-6"/>
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ width="150px" height="6px" viewBox="0 0 150 6" enable-background="new 0 0 150 6" xml:space="preserve">
6
+ <path fill="none" stroke="#FFFFFF" stroke-miterlimit="10" d="M0,6c37.5,0,37.5,6,75,6c37.5,0,37.5-6,75-6"/>
7
+ <path fill="none" stroke="#FFFFFF" stroke-miterlimit="10" d="M0,0C37.5,0,37.5,6,75,6c37.5,0,37.5-6,75-6"/>
8
+ <path fill="none" stroke="#FFFFFF" stroke-miterlimit="10" d="M0-6c37.5,0,37.5,6,75,6c37.5,0,37.5-6,75-6"/>
9
+ </svg>
@@ -0,0 +1,121 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 16.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ width="131px" height="25px" viewBox="0 0 131 25" enable-background="new 0 0 131 25" xml:space="preserve">
6
+ <g>
7
+ <g opacity="0.33">
8
+ <path fill="#005F9B" d="M19.293,0H4.706C2.111,0,0,2.11,0,4.706v14.588C0,21.889,2.111,24,4.706,24h14.587
9
+ C21.889,24,24,21.889,24,19.294V4.706C24,2.11,21.889,0,19.293,0L19.293,0z"/>
10
+ </g>
11
+ <g>
12
+ <path fill="#FFFFFF" d="M19.293,1H4.706C2.111,1,0,3.11,0,5.706v14.588C0,22.889,2.111,25,4.706,25h14.587
13
+ C21.889,25,24,22.889,24,20.294V5.706C24,3.11,21.889,1,19.293,1L19.293,1z"/>
14
+ </g>
15
+ </g>
16
+ <path fill="#009ADD" d="M19.293,2.411c1.812,0,3.294,1.482,3.294,3.295v14.588c0,1.812-1.482,3.294-3.294,3.294H4.706
17
+ c-1.812,0-3.294-1.482-3.294-3.294V5.706c0-1.812,1.483-3.295,3.294-3.295H19.293"/>
18
+ <g>
19
+ <path fill="#005F9B" d="M5.706,2.412h-1c-1.812,0-3.294,1.482-3.294,3.294v14.588c0,1.812,1.483,3.294,3.294,3.294h1V2.412z"/>
20
+ </g>
21
+ <g id="rePdum_1_" display="none">
22
+
23
+ <image display="inline" overflow="visible" enable-background="new " width="249" height="50" id="rePdum_4_" xlink:href="AD558DBCBEF5B390.jpeg" transform="matrix(0.9993 0 0 0.9993 -53.4785 -13.0293)">
24
+ </image>
25
+ </g>
26
+ <g>
27
+ <g opacity="0.33">
28
+ <path fill="#005F9B" d="M31.717,5.646h1.557V8.19h0.053c0.778-1.817,2.709-2.934,4.936-2.934c4.213,0,6.225,3.297,6.225,7.088
29
+ c0,3.79-2.012,7.088-6.225,7.088c-2.064,0-4.077-1.014-4.802-2.935h-0.054V24h-1.69V5.646z M38.264,6.632
30
+ c-3.729,0-4.856,2.674-4.856,5.712c0,2.777,1.261,5.711,4.856,5.711c3.22,0,4.535-2.934,4.535-5.711
31
+ C42.799,9.565,41.484,6.632,38.264,6.632z"/>
32
+ <path fill="#005F9B" d="M46.822,9.747c0.161-3.142,2.442-4.491,5.607-4.491c2.442,0,5.098,0.727,5.098,4.31v7.114
33
+ c0,0.622,0.322,0.985,0.993,0.985c0.188,0,0.402-0.052,0.537-0.104v1.377c-0.375,0.076-0.644,0.104-1.101,0.104
34
+ c-1.717,0-1.985-0.937-1.985-2.336h-0.054c-1.18,1.737-2.387,2.728-5.044,2.728c-2.549,0-4.642-1.223-4.642-3.922
35
+ c0-3.765,3.784-3.895,7.433-4.31c1.396-0.156,2.173-0.338,2.173-1.817c0-2.207-1.637-2.752-3.622-2.752
36
+ c-2.093,0-3.649,0.935-3.702,3.115L46.822,9.747L46.822,9.747z M55.837,11.721h-0.054c-0.214,0.388-0.966,0.519-1.421,0.597
37
+ c-2.871,0.492-6.439,0.468-6.439,3.09c0,1.635,1.502,2.646,3.086,2.646c2.575,0,4.855-1.582,4.829-4.205L55.837,11.721
38
+ L55.837,11.721z"/>
39
+ <path fill="#005F9B" d="M69.062,9.565c-0.08-2.024-1.689-2.934-3.623-2.934c-1.503,0-3.273,0.571-3.273,2.31
40
+ c0,1.454,1.717,1.975,2.87,2.26l2.255,0.493c1.933,0.286,3.942,1.375,3.942,3.713c0,2.907-2.979,4.022-5.554,4.022
41
+ c-3.219,0-5.419-1.453-5.688-4.726h1.69c0.135,2.206,1.826,3.351,4.079,3.351c1.583,0,3.784-0.678,3.784-2.546
42
+ c0-1.558-1.504-2.075-3.031-2.44l-2.175-0.467c-2.199-0.569-3.863-1.297-3.863-3.582c0-2.727,2.764-3.765,5.205-3.765
43
+ c2.762,0,4.963,1.402,5.072,4.31L69.062,9.565L69.062,9.565z"/>
44
+ <path fill="#005F9B" d="M81.832,9.565c-0.08-2.024-1.689-2.934-3.621-2.934c-1.502,0-3.273,0.571-3.273,2.31
45
+ c0,1.454,1.717,1.975,2.871,2.26l2.254,0.493c1.934,0.286,3.943,1.375,3.943,3.713c0,2.907-2.977,4.022-5.553,4.022
46
+ c-3.219,0-5.422-1.453-5.688-4.726h1.688c0.135,2.206,1.822,3.351,4.078,3.351c1.58,0,3.779-0.678,3.779-2.546
47
+ c0-1.558-1.502-2.075-3.029-2.44l-2.176-0.467c-2.197-0.569-3.859-1.297-3.859-3.582c0-2.727,2.762-3.765,5.205-3.765
48
+ c2.764,0,4.963,1.402,5.068,4.31L81.832,9.565L81.832,9.565z"/>
49
+ <path fill="#005F9B" d="M86.312,5.646h1.557V8.19h0.053c0.779-1.817,2.711-2.934,4.938-2.934c4.215,0,6.227,3.297,6.227,7.088
50
+ c0,3.79-2.012,7.088-6.227,7.088c-2.064,0-4.076-1.014-4.803-2.935h-0.055V24h-1.689V5.646L86.312,5.646z M92.859,6.632
51
+ c-3.73,0-4.857,2.674-4.857,5.712c0,2.777,1.262,5.711,4.857,5.711c3.219,0,4.533-2.934,4.533-5.711
52
+ C97.393,9.565,96.078,6.632,92.859,6.632z"/>
53
+ <path fill="#005F9B" d="M113.973,12.344c0,3.842-2.307,7.088-6.547,7.088c-4.238,0-6.547-3.246-6.547-7.088
54
+ c0-3.843,2.309-7.088,6.547-7.088C111.666,5.256,113.973,8.501,113.973,12.344z M102.57,12.344c0,2.854,1.609,5.711,4.854,5.711
55
+ c3.246,0,4.854-2.854,4.854-5.711c0-2.856-1.607-5.712-4.854-5.712C104.18,6.632,102.57,9.487,102.57,12.344z"/>
56
+ <path fill="#005F9B" d="M116.359,5.646h1.557v3.141h0.053c0.859-2.154,2.736-3.427,5.232-3.322V7.1
57
+ c-3.061-0.156-5.152,2.024-5.152,4.803v7.139h-1.689V5.646L116.359,5.646z"/>
58
+ <path fill="#005F9B" d="M127.359,5.646h2.814v1.375h-2.814v9.036c0,1.063,0.16,1.688,1.367,1.764c0.482,0,0.967-0.023,1.447-0.075
59
+ v1.399c-0.51,0-0.99,0.055-1.504,0.055c-2.252,0-3.029-0.729-3.004-3.014V7.021h-2.416V5.646h2.416V1.621h1.689v4.025H127.359z"/>
60
+ </g>
61
+ <g>
62
+ <g>
63
+ <path fill="#FFFFFF" d="M31.717,6.646h1.557V9.19h0.053c0.778-1.817,2.709-2.934,4.936-2.934c4.213,0,6.225,3.297,6.225,7.088
64
+ c0,3.79-2.012,7.088-6.225,7.088c-2.064,0-4.077-1.014-4.802-2.935h-0.054V25h-1.69V6.646z M38.264,7.632
65
+ c-3.729,0-4.856,2.674-4.856,5.712c0,2.777,1.261,5.711,4.856,5.711c3.22,0,4.535-2.934,4.535-5.711
66
+ C42.799,10.565,41.484,7.632,38.264,7.632z"/>
67
+ <path fill="#FFFFFF" d="M46.822,10.747c0.161-3.142,2.442-4.491,5.607-4.491c2.442,0,5.098,0.727,5.098,4.31v7.114
68
+ c0,0.622,0.322,0.985,0.993,0.985c0.188,0,0.402-0.052,0.537-0.104v1.377c-0.375,0.076-0.644,0.104-1.101,0.104
69
+ c-1.717,0-1.985-0.937-1.985-2.336h-0.054c-1.18,1.737-2.387,2.728-5.044,2.728c-2.549,0-4.642-1.223-4.642-3.922
70
+ c0-3.765,3.784-3.895,7.433-4.31c1.396-0.156,2.173-0.338,2.173-1.817c0-2.207-1.637-2.752-3.622-2.752
71
+ c-2.093,0-3.649,0.935-3.702,3.115L46.822,10.747L46.822,10.747z M55.837,12.721h-0.054c-0.214,0.388-0.966,0.519-1.421,0.597
72
+ c-2.871,0.492-6.439,0.468-6.439,3.09c0,1.635,1.502,2.646,3.086,2.646c2.575,0,4.855-1.582,4.829-4.205L55.837,12.721
73
+ L55.837,12.721z"/>
74
+ <path fill="#FFFFFF" d="M69.062,10.565c-0.08-2.024-1.689-2.934-3.623-2.934c-1.503,0-3.273,0.571-3.273,2.31
75
+ c0,1.454,1.717,1.975,2.87,2.26l2.255,0.493c1.933,0.286,3.942,1.375,3.942,3.713c0,2.907-2.979,4.022-5.554,4.022
76
+ c-3.219,0-5.419-1.453-5.688-4.726h1.69c0.135,2.206,1.826,3.351,4.079,3.351c1.583,0,3.784-0.678,3.784-2.546
77
+ c0-1.558-1.504-2.075-3.031-2.44l-2.175-0.467c-2.199-0.569-3.863-1.297-3.863-3.583c0-2.727,2.764-3.765,5.205-3.765
78
+ c2.762,0,4.963,1.402,5.072,4.31L69.062,10.565L69.062,10.565z"/>
79
+ <path fill="#FFFFFF" d="M81.832,10.565c-0.08-2.024-1.689-2.934-3.621-2.934c-1.502,0-3.273,0.571-3.273,2.31
80
+ c0,1.454,1.717,1.975,2.871,2.26l2.254,0.493c1.934,0.286,3.943,1.375,3.943,3.713c0,2.907-2.977,4.022-5.553,4.022
81
+ c-3.219,0-5.422-1.453-5.688-4.726h1.688c0.135,2.206,1.822,3.351,4.078,3.351c1.58,0,3.779-0.678,3.779-2.546
82
+ c0-1.558-1.502-2.075-3.029-2.44l-2.176-0.467c-2.197-0.569-3.859-1.297-3.859-3.583c0-2.727,2.762-3.765,5.205-3.765
83
+ c2.764,0,4.963,1.402,5.068,4.31L81.832,10.565L81.832,10.565z"/>
84
+ <path fill="#FFFFFF" d="M86.312,6.646h1.557V9.19h0.053c0.779-1.817,2.711-2.934,4.938-2.934c4.215,0,6.227,3.297,6.227,7.088
85
+ c0,3.79-2.012,7.088-6.227,7.088c-2.064,0-4.076-1.014-4.803-2.935h-0.055V25h-1.689V6.646L86.312,6.646z M92.859,7.632
86
+ c-3.73,0-4.857,2.674-4.857,5.712c0,2.777,1.262,5.711,4.857,5.711c3.219,0,4.533-2.934,4.533-5.711
87
+ C97.393,10.565,96.078,7.632,92.859,7.632z"/>
88
+ <path fill="#FFFFFF" d="M113.973,13.344c0,3.842-2.307,7.088-6.547,7.088c-4.238,0-6.547-3.246-6.547-7.088
89
+ c0-3.843,2.309-7.088,6.547-7.088C111.666,6.256,113.973,9.501,113.973,13.344z M102.57,13.344c0,2.854,1.609,5.711,4.854,5.711
90
+ c3.246,0,4.854-2.854,4.854-5.711c0-2.856-1.607-5.712-4.854-5.712C104.18,7.632,102.57,10.487,102.57,13.344z"/>
91
+ <path fill="#FFFFFF" d="M116.359,6.646h1.557v3.141h0.053c0.859-2.154,2.736-3.427,5.232-3.322V8.1
92
+ c-3.061-0.156-5.152,2.024-5.152,4.803v7.139h-1.689V6.646L116.359,6.646z"/>
93
+ <path fill="#FFFFFF" d="M127.359,6.646h2.814v1.375h-2.814v9.036c0,1.063,0.16,1.688,1.367,1.764
94
+ c0.482,0,0.967-0.023,1.447-0.075v1.399c-0.51,0-0.99,0.055-1.504,0.055c-2.252,0-3.029-0.729-3.004-3.014V8.021h-2.416V6.646
95
+ h2.416V2.621h1.689v4.025H127.359z"/>
96
+ </g>
97
+ </g>
98
+ </g>
99
+ <path fill="#005F9B" d="M17.802,14c-0.195,0-0.418,0.056-0.595,0.133c-0.323,0.141-0.569,0.415-0.755,0.703
100
+ c-0.219,0.338-0.19,0.688-0.261,1.067c-0.096,0.519-0.411,0.901-0.787,1.258C15.112,17.438,15,17.594,15,18
101
+ c0,0.227-0.269,0.438-0.5,0.438s-0.419-0.185-0.419-0.411c0-0.406-0.193-0.59-0.485-0.866c-0.376-0.356-0.691-0.739-0.787-1.258
102
+ c-0.071-0.38-0.042-0.729-0.261-1.067c-0.186-0.288-0.431-0.562-0.755-0.703C11.616,14.056,11.393,14,11.198,14
103
+ C9.083,14,8,15.842,8,18.823C8,20.158,8.953,21,10.464,21H14.5h4.036C20.047,21,21,20.158,21,18.823C21,15.842,19.917,14,17.802,14z
104
+ "/>
105
+ <circle fill="#005F9B" cx="14.5" cy="10.5" r="3.5"/>
106
+ <path fill="#FFFFFF" d="M17.802,13c-0.195,0-0.418,0.056-0.595,0.133c-0.323,0.141-0.569,0.415-0.755,0.703
107
+ c-0.219,0.338-0.19,0.688-0.261,1.067c-0.096,0.519-0.411,0.901-0.787,1.258C15.112,16.438,15,16.594,15,17
108
+ c0,0.227-0.269,0.438-0.5,0.438s-0.419-0.185-0.419-0.411c0-0.406-0.193-0.59-0.485-0.866c-0.376-0.356-0.691-0.739-0.787-1.258
109
+ c-0.071-0.38-0.042-0.729-0.261-1.067c-0.186-0.288-0.431-0.562-0.755-0.703C11.616,13.056,11.393,13,11.198,13
110
+ C9.083,13,8,14.842,8,17.823C8,19.158,8.953,20,10.464,20H14.5h4.036C20.047,20,21,19.158,21,17.823C21,14.842,19.917,13,17.802,13z
111
+ "/>
112
+ <circle fill="#FFFFFF" cx="14.5" cy="9.5" r="3.5"/>
113
+ <path fill="#009ADD" d="M17,16.5c0-0.828,0.671-1.5,1.5-1.5l0,0c0.828,0,1.5,0.672,1.5,1.5l0,0c0,0.828-0.672,1.5-1.5,1.5l0,0
114
+ C17.671,18,17,17.328,17,16.5L17,16.5z"/>
115
+ <g>
116
+ <path fill="#009ADD" d="M16.5,19c-1.378,0-2.5-1.121-2.5-2.5h1c0,0.827,0.673,1.5,1.5,1.5s1.5-0.673,1.5-1.5h1
117
+ C19,17.879,17.878,19,16.5,19z"/>
118
+ </g>
119
+ <path fill="#FFFFFF" d="M18,16.5c0-0.276,0.223-0.5,0.5-0.5l0,0c0.276,0,0.5,0.224,0.5,0.5l0,0c0,0.275-0.224,0.5-0.5,0.5l0,0
120
+ C18.223,17,18,16.775,18,16.5L18,16.5z"/>
121
+ </svg>
@@ -0,0 +1,26 @@
1
+ @import "bootstrap/bootstrap/variables";
2
+ @import "bootstrap/bootstrap/mixins";
3
+
4
+ // Kyruus Bootstrap Variables & Mixins
5
+ @import "kyruus-bootstrap/variables";
6
+ @import "kyruus-bootstrap/mixins";
7
+
8
+ // Kyruus Bootstrap
9
+ @import "kyruus-bootstrap/fonts";
10
+ @import "kyruus-bootstrap/progress-bars";
11
+ @import "kyruus-bootstrap/labels-badges";
12
+ @import "kyruus-bootstrap/jumbotron";
13
+ @import "kyruus-bootstrap/buttons";
14
+ @import "kyruus-bootstrap/button-groups";
15
+ @import "kyruus-bootstrap/navbar";
16
+ @import "kyruus-bootstrap/wells";
17
+ @import "kyruus-bootstrap/type";
18
+ @import "kyruus-bootstrap/footer";
19
+ @import "kyruus-bootstrap/dropdowns";
20
+ @import "kyruus-bootstrap/close";
21
+ @import "kyruus-bootstrap/forms";
22
+ @import "kyruus-bootstrap/alerts";
23
+ @import "kyruus-bootstrap/modals";
24
+ @import "kyruus-bootstrap/tables";
25
+ @import "kyruus-bootstrap/font-awesome";
26
+ @import "kyruus-bootstrap/lazy";
@@ -0,0 +1,62 @@
1
+ //
2
+ // Alerts
3
+ // --------------------------------------------------
4
+
5
+
6
+ // Base styles
7
+ // -------------------------
8
+
9
+ .alert-large {
10
+ padding: 30px 40px;
11
+ }
12
+
13
+ // Alternate styles
14
+ // -------------------------
15
+
16
+ .alert-inverse {
17
+ background-color: $inverseBackground;
18
+ border-color: $inverseBorder;
19
+ color: $inverseText;
20
+ text-shadow: 0 1px 0 rgba(0,0,0,.5);
21
+ }
22
+
23
+ // Utility classes
24
+ .alert-warning, .alert-success, .alert-error, .alert-info {
25
+ a { font-weight: bold; }
26
+ }
27
+
28
+ .alert-warning {
29
+ // a {
30
+ // color: $yellowDark;
31
+ // &:hover { color: @yellowDarker; }
32
+ // }
33
+ .muted { color: mix($warningBackground, $warningText, 50%); }
34
+ .progress .bar { @include gradient-vertical(mix($warningBackground, $warningText, 80%), mix($warningBackground, $warningText, 50%)); }
35
+ }
36
+
37
+ .alert-error {
38
+ // a {
39
+ // color: $red;
40
+ // &:hover { color: $redDark; }
41
+ // }
42
+ .muted { color: mix($errorBackground, $errorText, 50%); }
43
+ .progress .bar { @include gradient-vertical(mix($errorBackground, $errorText, 80%), mix($errorBackground, $errorText, 40%)); }
44
+ }
45
+
46
+ .alert-info {
47
+ // a {
48
+ // color: $blue;
49
+ // &:hover { color: $blueDark; }
50
+ // }
51
+ .muted { color: mix($infoBackground, $infoText, 50%); }
52
+ .progress .bar { @include gradient-vertical(mix($infoBackground, $infoText, 80%), mix($infoBackground, $infoText, 40%)); }
53
+ }
54
+
55
+ .alert-success {
56
+ // a {
57
+ // color: $greenDark;
58
+ // &:hover { color: $greenDarker; }
59
+ // }
60
+ .muted { color: mix($successBackground, $successText, 50%); }
61
+ .progress .bar { @include gradient-vertical(mix($successBackground, $successText, 80%), mix($successBackground, $successText, 40%)); }
62
+ }