ustyle 1.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +23 -0
- data/.rbenv-gemsets +1 -0
- data/.ruby-version +1 -0
- data/CONTRIBUTING.md +68 -0
- data/Gemfile +4 -0
- data/Gruntfile.js +189 -0
- data/JAVASCRIPT_STANDARDS.md +88 -0
- data/LICENSE.txt +13 -0
- data/README.md +93 -0
- data/Rakefile +6 -0
- data/bower.json +54 -0
- data/config/.jscsrc +76 -0
- data/config/autoprefixer.yml +6 -0
- data/config/scss-lint.yml +54 -0
- data/dist/ustyle-content.css +1 -0
- data/dist/ustyle-icons.css +1 -0
- data/dist/ustyle-latest.css +1 -0
- data/dist/ustyle.js +799 -0
- data/dist/ustyle.json +1 -0
- data/grunt/modules/dss-helper.js +117 -0
- data/grunt/modules/file.js +26 -0
- data/grunt/modules/templates.js +59 -0
- data/grunt/tasks/browser-sync.js +19 -0
- data/grunt/tasks/builder.js +72 -0
- data/grunt/tasks/styleguide.js +290 -0
- data/grunt/tasks/svg2png.js +57 -0
- data/lib/ustyle/deploy.rb +31 -0
- data/lib/ustyle/engine.rb +24 -0
- data/lib/ustyle/hash.rb +44 -0
- data/lib/ustyle/icons.rb +13 -0
- data/lib/ustyle/sass_functions.rb +104 -0
- data/lib/ustyle/sinatra.rb +34 -0
- data/lib/ustyle/sprockets.rb +6 -0
- data/lib/ustyle/utils.rb +40 -0
- data/lib/ustyle/version.rb +4 -0
- data/lib/ustyle.rb +54 -0
- data/package.json +74 -0
- data/styleguide/CNAME +1 -0
- data/styleguide/assets/images/bower-logo.png +0 -0
- data/styleguide/assets/images/cloudfront-logo.png +0 -0
- data/styleguide/assets/images/illustration-01.png +0 -0
- data/styleguide/assets/images/illustration-02.png +0 -0
- data/styleguide/assets/images/illustration-03.png +0 -0
- data/styleguide/assets/images/illustration-04.png +0 -0
- data/styleguide/assets/images/illustration-05.png +0 -0
- data/styleguide/assets/images/illustration-06.png +0 -0
- data/styleguide/assets/images/illustration-07.png +0 -0
- data/styleguide/assets/images/illustration-08.png +0 -0
- data/styleguide/assets/images/infographic-01.png +0 -0
- data/styleguide/assets/images/infographic-02.png +0 -0
- data/styleguide/assets/images/lifestyle-photography-01.png +0 -0
- data/styleguide/assets/images/lifestyle-photography-02.png +0 -0
- data/styleguide/assets/images/lifestyle-photography-03.png +0 -0
- data/styleguide/assets/images/lifestyle-photography-04.png +0 -0
- data/styleguide/assets/images/lifestyle-photography-05.png +0 -0
- data/styleguide/assets/images/lifestyle-photography-06.png +0 -0
- data/styleguide/assets/images/lifestyle-photography-07.png +0 -0
- data/styleguide/assets/images/lifestyle-photography-08.png +0 -0
- data/styleguide/assets/images/npm-logo.png +0 -0
- data/styleguide/assets/images/object-photography-01.png +0 -0
- data/styleguide/assets/images/object-photography-02.png +0 -0
- data/styleguide/assets/images/object-photography-03.png +0 -0
- data/styleguide/assets/images/object-photography-04.png +0 -0
- data/styleguide/assets/images/object-photography-05.png +0 -0
- data/styleguide/assets/images/object-photography-06.png +0 -0
- data/styleguide/assets/images/object-photography-07.png +0 -0
- data/styleguide/assets/images/object-photography-08.png +0 -0
- data/styleguide/assets/images/ruby-logo.png +0 -0
- data/styleguide/assets/images/ustyle.svg +73 -0
- data/styleguide/assets/javascripts/app.js +91 -0
- data/styleguide/assets/javascripts/modules/cleanWhiteSpace.js +34 -0
- data/styleguide/assets/javascripts/modules/stats.js +51 -0
- data/styleguide/assets/javascripts/vendor/highlight.js +1 -0
- data/styleguide/assets/sass/main.scss +152 -0
- data/styleguide/assets/sass/modules/_code.scss +8 -0
- data/styleguide/assets/sass/modules/_colours.scss +25 -0
- data/styleguide/assets/sass/modules/_copyright.scss +4 -0
- data/styleguide/assets/sass/modules/_grid.scss +12 -0
- data/styleguide/assets/sass/modules/_home.scss +5 -0
- data/styleguide/assets/sass/modules/_links.scss +3 -0
- data/styleguide/assets/sass/modules/_logo.scss +56 -0
- data/styleguide/assets/sass/modules/_made-at.scss +6 -0
- data/styleguide/assets/sass/modules/_markdown.scss +7 -0
- data/styleguide/assets/sass/modules/_nav-mobile.scss +72 -0
- data/styleguide/assets/sass/modules/_nav.scss +32 -0
- data/styleguide/assets/sass/modules/_sidebar.scss +94 -0
- data/styleguide/assets/sass/modules/_states.scss +4 -0
- data/styleguide/assets/sass/modules/_styleguide.scss +134 -0
- data/styleguide/assets/sass/modules/_table.scss +3 -0
- data/styleguide/assets/sass/modules/_tooltip.scss +9 -0
- data/styleguide/assets/sass/modules/_typography.scss +14 -0
- data/styleguide/assets/sass/modules/_version.scss +11 -0
- data/styleguide/assets/sass/structure/_base.scss +18 -0
- data/styleguide/assets/sass/structure/_header.scss +12 -0
- data/styleguide/assets/sass/vendor/_highlight.scss +139 -0
- data/styleguide/assets/sass/vendor/_pure-table.scss +75 -0
- data/styleguide/content/brand/index.md +47 -0
- data/styleguide/content/brand/language.md +102 -0
- data/styleguide/content/brand/logo.tpl +102 -0
- data/styleguide/content/design/index.tpl +79 -0
- data/styleguide/content/design/typography.md +30 -0
- data/styleguide/content/index.tpl +44 -0
- data/styleguide/content/pattern-library/grid.tpl +64 -0
- data/styleguide/content/pattern-library/index.tpl +92 -0
- data/styleguide/partials/_footer.tpl +8 -0
- data/styleguide/partials/_head.tpl +20 -0
- data/styleguide/partials/_header.tpl +7 -0
- data/styleguide/partials/_sidebar.tpl +22 -0
- data/styleguide/partials/colour.tpl +24 -0
- data/styleguide/partials/icons.tpl +28 -0
- data/styleguide/partials/style_block.tpl +44 -0
- data/styleguide/templates/simple.tpl +15 -0
- data/styleguide/templates/stats.tpl +50 -0
- data/styleguide/templates/styleguide.tpl +33 -0
- data/tasks/publish.rake +65 -0
- data/ustyle.gemspec +34 -0
- data/vendor/assets/images/icons/16px/alarm.png +0 -0
- data/vendor/assets/images/icons/16px/android.png +0 -0
- data/vendor/assets/images/icons/16px/angry.png +0 -0
- data/vendor/assets/images/icons/16px/apple.png +0 -0
- data/vendor/assets/images/icons/16px/arrow-circle.png +0 -0
- data/vendor/assets/images/icons/16px/arrow-up-left.png +0 -0
- data/vendor/assets/images/icons/16px/arrow-up.png +0 -0
- data/vendor/assets/images/icons/16px/barchart.png +0 -0
- data/vendor/assets/images/icons/16px/blackberry.png +0 -0
- data/vendor/assets/images/icons/16px/book.png +0 -0
- data/vendor/assets/images/icons/16px/bookmark.png +0 -0
- data/vendor/assets/images/icons/16px/breadcrumb.png +0 -0
- data/vendor/assets/images/icons/16px/calculator.png +0 -0
- data/vendor/assets/images/icons/16px/calendar.png +0 -0
- data/vendor/assets/images/icons/16px/car.png +0 -0
- data/vendor/assets/images/icons/16px/checkbox-tick.png +0 -0
- data/vendor/assets/images/icons/16px/clock.png +0 -0
- data/vendor/assets/images/icons/16px/close.png +0 -0
- data/vendor/assets/images/icons/16px/cog.png +0 -0
- data/vendor/assets/images/icons/16px/controller.png +0 -0
- data/vendor/assets/images/icons/16px/credit-card.png +0 -0
- data/vendor/assets/images/icons/16px/cross.png +0 -0
- data/vendor/assets/images/icons/16px/desktop.png +0 -0
- data/vendor/assets/images/icons/16px/doc.png +0 -0
- data/vendor/assets/images/icons/16px/down-arrow.png +0 -0
- data/vendor/assets/images/icons/16px/dual-fuel.png +0 -0
- data/vendor/assets/images/icons/16px/electric-light.png +0 -0
- data/vendor/assets/images/icons/16px/envelope.png +0 -0
- data/vendor/assets/images/icons/16px/exit-noexit.png +0 -0
- data/vendor/assets/images/icons/16px/facebook.png +0 -0
- data/vendor/assets/images/icons/16px/filter.png +0 -0
- data/vendor/assets/images/icons/16px/fixed-variable.png +0 -0
- data/vendor/assets/images/icons/16px/gas.png +0 -0
- data/vendor/assets/images/icons/16px/gauge.png +0 -0
- data/vendor/assets/images/icons/16px/github.png +0 -0
- data/vendor/assets/images/icons/16px/google.png +0 -0
- data/vendor/assets/images/icons/16px/graph-up.png +0 -0
- data/vendor/assets/images/icons/16px/happy.png +0 -0
- data/vendor/assets/images/icons/16px/home.png +0 -0
- data/vendor/assets/images/icons/16px/hot.png +0 -0
- data/vendor/assets/images/icons/16px/info.png +0 -0
- data/vendor/assets/images/icons/16px/kettle.png +0 -0
- data/vendor/assets/images/icons/16px/key.png +0 -0
- data/vendor/assets/images/icons/16px/laptop.png +0 -0
- data/vendor/assets/images/icons/16px/lock.png +0 -0
- data/vendor/assets/images/icons/16px/magnify-in.png +0 -0
- data/vendor/assets/images/icons/16px/magnify-out.png +0 -0
- data/vendor/assets/images/icons/16px/magnify.png +0 -0
- data/vendor/assets/images/icons/16px/menu.png +0 -0
- data/vendor/assets/images/icons/16px/message.png +0 -0
- data/vendor/assets/images/icons/16px/mobile.png +0 -0
- data/vendor/assets/images/icons/16px/monthly-dd.png +0 -0
- data/vendor/assets/images/icons/16px/neutral.png +0 -0
- data/vendor/assets/images/icons/16px/no-exit.png +0 -0
- data/vendor/assets/images/icons/16px/pdf.png +0 -0
- data/vendor/assets/images/icons/16px/pencil.png +0 -0
- data/vendor/assets/images/icons/16px/person-add.png +0 -0
- data/vendor/assets/images/icons/16px/person.png +0 -0
- data/vendor/assets/images/icons/16px/phone.png +0 -0
- data/vendor/assets/images/icons/16px/piggy-bank.png +0 -0
- data/vendor/assets/images/icons/16px/pin.png +0 -0
- data/vendor/assets/images/icons/16px/play.png +0 -0
- data/vendor/assets/images/icons/16px/pound-circle.png +0 -0
- data/vendor/assets/images/icons/16px/pound-note.png +0 -0
- data/vendor/assets/images/icons/16px/power.png +0 -0
- data/vendor/assets/images/icons/16px/present.png +0 -0
- data/vendor/assets/images/icons/16px/print.png +0 -0
- data/vendor/assets/images/icons/16px/quarterly-dd.png +0 -0
- data/vendor/assets/images/icons/16px/question-circle.png +0 -0
- data/vendor/assets/images/icons/16px/question.png +0 -0
- data/vendor/assets/images/icons/16px/quote.png +0 -0
- data/vendor/assets/images/icons/16px/recycle.png +0 -0
- data/vendor/assets/images/icons/16px/remove.png +0 -0
- data/vendor/assets/images/icons/16px/renewable.png +0 -0
- data/vendor/assets/images/icons/16px/results.png +0 -0
- data/vendor/assets/images/icons/16px/sad.png +0 -0
- data/vendor/assets/images/icons/16px/save.png +0 -0
- data/vendor/assets/images/icons/16px/share.png +0 -0
- data/vendor/assets/images/icons/16px/sim.png +0 -0
- data/vendor/assets/images/icons/16px/smiley.png +0 -0
- data/vendor/assets/images/icons/16px/sort.png +0 -0
- data/vendor/assets/images/icons/16px/speech-circle.png +0 -0
- data/vendor/assets/images/icons/16px/speech.png +0 -0
- data/vendor/assets/images/icons/16px/spinner 2.png +0 -0
- data/vendor/assets/images/icons/16px/spinner.png +0 -0
- data/vendor/assets/images/icons/16px/star-half.png +0 -0
- data/vendor/assets/images/icons/16px/star.png +0 -0
- data/vendor/assets/images/icons/16px/starline-half.png +0 -0
- data/vendor/assets/images/icons/16px/starline.png +0 -0
- data/vendor/assets/images/icons/16px/tablet.png +0 -0
- data/vendor/assets/images/icons/16px/talk.png +0 -0
- data/vendor/assets/images/icons/16px/tick-circle.png +0 -0
- data/vendor/assets/images/icons/16px/tick.png +0 -0
- data/vendor/assets/images/icons/16px/tv.png +0 -0
- data/vendor/assets/images/icons/16px/twitter.png +0 -0
- data/vendor/assets/images/icons/16px/ustyle.png +0 -0
- data/vendor/assets/images/icons/16px/uswitch.png +0 -0
- data/vendor/assets/images/icons/16px/variable.png +0 -0
- data/vendor/assets/images/icons/16px/warning-circle.png +0 -0
- data/vendor/assets/images/icons/16px/warning.png +0 -0
- data/vendor/assets/images/icons/16px/wifi.png +0 -0
- data/vendor/assets/images/icons/16px/wiki.png +0 -0
- data/vendor/assets/images/icons/16px/windows.png +0 -0
- data/vendor/assets/images/icons/16px/wondering.png +0 -0
- data/vendor/assets/images/icons/16px/world.png +0 -0
- data/vendor/assets/images/icons/16px/xml.png +0 -0
- data/vendor/assets/images/icons/32px/alarm.png +0 -0
- data/vendor/assets/images/icons/32px/android.png +0 -0
- data/vendor/assets/images/icons/32px/angry.png +0 -0
- data/vendor/assets/images/icons/32px/apple.png +0 -0
- data/vendor/assets/images/icons/32px/arrow-circle.png +0 -0
- data/vendor/assets/images/icons/32px/arrow-up-left.png +0 -0
- data/vendor/assets/images/icons/32px/arrow-up.png +0 -0
- data/vendor/assets/images/icons/32px/barchart.png +0 -0
- data/vendor/assets/images/icons/32px/blackberry.png +0 -0
- data/vendor/assets/images/icons/32px/book.png +0 -0
- data/vendor/assets/images/icons/32px/bookmark.png +0 -0
- data/vendor/assets/images/icons/32px/breadcrumb.png +0 -0
- data/vendor/assets/images/icons/32px/calculator.png +0 -0
- data/vendor/assets/images/icons/32px/calendar.png +0 -0
- data/vendor/assets/images/icons/32px/car.png +0 -0
- data/vendor/assets/images/icons/32px/checkbox-tick.png +0 -0
- data/vendor/assets/images/icons/32px/clock.png +0 -0
- data/vendor/assets/images/icons/32px/close.png +0 -0
- data/vendor/assets/images/icons/32px/cog.png +0 -0
- data/vendor/assets/images/icons/32px/controller.png +0 -0
- data/vendor/assets/images/icons/32px/credit-card.png +0 -0
- data/vendor/assets/images/icons/32px/cross.png +0 -0
- data/vendor/assets/images/icons/32px/desktop.png +0 -0
- data/vendor/assets/images/icons/32px/doc.png +0 -0
- data/vendor/assets/images/icons/32px/down-arrow.png +0 -0
- data/vendor/assets/images/icons/32px/dual-fuel.png +0 -0
- data/vendor/assets/images/icons/32px/electric-light.png +0 -0
- data/vendor/assets/images/icons/32px/envelope.png +0 -0
- data/vendor/assets/images/icons/32px/exit-noexit.png +0 -0
- data/vendor/assets/images/icons/32px/facebook.png +0 -0
- data/vendor/assets/images/icons/32px/filter.png +0 -0
- data/vendor/assets/images/icons/32px/fixed-variable.png +0 -0
- data/vendor/assets/images/icons/32px/gas.png +0 -0
- data/vendor/assets/images/icons/32px/gauge.png +0 -0
- data/vendor/assets/images/icons/32px/github.png +0 -0
- data/vendor/assets/images/icons/32px/google.png +0 -0
- data/vendor/assets/images/icons/32px/graph-up.png +0 -0
- data/vendor/assets/images/icons/32px/happy.png +0 -0
- data/vendor/assets/images/icons/32px/home.png +0 -0
- data/vendor/assets/images/icons/32px/hot.png +0 -0
- data/vendor/assets/images/icons/32px/info.png +0 -0
- data/vendor/assets/images/icons/32px/kettle.png +0 -0
- data/vendor/assets/images/icons/32px/key.png +0 -0
- data/vendor/assets/images/icons/32px/laptop.png +0 -0
- data/vendor/assets/images/icons/32px/lock.png +0 -0
- data/vendor/assets/images/icons/32px/magnify-in.png +0 -0
- data/vendor/assets/images/icons/32px/magnify-out.png +0 -0
- data/vendor/assets/images/icons/32px/magnify.png +0 -0
- data/vendor/assets/images/icons/32px/menu.png +0 -0
- data/vendor/assets/images/icons/32px/message.png +0 -0
- data/vendor/assets/images/icons/32px/mobile.png +0 -0
- data/vendor/assets/images/icons/32px/monthly-dd.png +0 -0
- data/vendor/assets/images/icons/32px/neutral.png +0 -0
- data/vendor/assets/images/icons/32px/no-exit.png +0 -0
- data/vendor/assets/images/icons/32px/pdf.png +0 -0
- data/vendor/assets/images/icons/32px/pencil.png +0 -0
- data/vendor/assets/images/icons/32px/person-add.png +0 -0
- data/vendor/assets/images/icons/32px/person.png +0 -0
- data/vendor/assets/images/icons/32px/phone.png +0 -0
- data/vendor/assets/images/icons/32px/piggy-bank.png +0 -0
- data/vendor/assets/images/icons/32px/pin.png +0 -0
- data/vendor/assets/images/icons/32px/play.png +0 -0
- data/vendor/assets/images/icons/32px/pound-circle.png +0 -0
- data/vendor/assets/images/icons/32px/pound-note.png +0 -0
- data/vendor/assets/images/icons/32px/power.png +0 -0
- data/vendor/assets/images/icons/32px/present.png +0 -0
- data/vendor/assets/images/icons/32px/print.png +0 -0
- data/vendor/assets/images/icons/32px/quarterly-dd.png +0 -0
- data/vendor/assets/images/icons/32px/question-circle.png +0 -0
- data/vendor/assets/images/icons/32px/question.png +0 -0
- data/vendor/assets/images/icons/32px/quote.png +0 -0
- data/vendor/assets/images/icons/32px/recycle.png +0 -0
- data/vendor/assets/images/icons/32px/remove.png +0 -0
- data/vendor/assets/images/icons/32px/renewable.png +0 -0
- data/vendor/assets/images/icons/32px/results.png +0 -0
- data/vendor/assets/images/icons/32px/sad.png +0 -0
- data/vendor/assets/images/icons/32px/save.png +0 -0
- data/vendor/assets/images/icons/32px/share.png +0 -0
- data/vendor/assets/images/icons/32px/sim.png +0 -0
- data/vendor/assets/images/icons/32px/smiley.png +0 -0
- data/vendor/assets/images/icons/32px/sort.png +0 -0
- data/vendor/assets/images/icons/32px/speech-circle.png +0 -0
- data/vendor/assets/images/icons/32px/speech.png +0 -0
- data/vendor/assets/images/icons/32px/spinner 2.png +0 -0
- data/vendor/assets/images/icons/32px/spinner.png +0 -0
- data/vendor/assets/images/icons/32px/star-half.png +0 -0
- data/vendor/assets/images/icons/32px/star.png +0 -0
- data/vendor/assets/images/icons/32px/starline-half.png +0 -0
- data/vendor/assets/images/icons/32px/starline.png +0 -0
- data/vendor/assets/images/icons/32px/tablet.png +0 -0
- data/vendor/assets/images/icons/32px/talk.png +0 -0
- data/vendor/assets/images/icons/32px/tick-circle.png +0 -0
- data/vendor/assets/images/icons/32px/tick.png +0 -0
- data/vendor/assets/images/icons/32px/tv.png +0 -0
- data/vendor/assets/images/icons/32px/twitter.png +0 -0
- data/vendor/assets/images/icons/32px/ustyle.png +0 -0
- data/vendor/assets/images/icons/32px/uswitch.png +0 -0
- data/vendor/assets/images/icons/32px/variable.png +0 -0
- data/vendor/assets/images/icons/32px/warning-circle.png +0 -0
- data/vendor/assets/images/icons/32px/warning.png +0 -0
- data/vendor/assets/images/icons/32px/wifi.png +0 -0
- data/vendor/assets/images/icons/32px/wiki.png +0 -0
- data/vendor/assets/images/icons/32px/windows.png +0 -0
- data/vendor/assets/images/icons/32px/wondering.png +0 -0
- data/vendor/assets/images/icons/32px/world.png +0 -0
- data/vendor/assets/images/icons/32px/xml.png +0 -0
- data/vendor/assets/images/icons/64px/alarm.png +0 -0
- data/vendor/assets/images/icons/64px/android.png +0 -0
- data/vendor/assets/images/icons/64px/angry.png +0 -0
- data/vendor/assets/images/icons/64px/apple.png +0 -0
- data/vendor/assets/images/icons/64px/arrow-circle.png +0 -0
- data/vendor/assets/images/icons/64px/arrow-up-left.png +0 -0
- data/vendor/assets/images/icons/64px/arrow-up.png +0 -0
- data/vendor/assets/images/icons/64px/barchart.png +0 -0
- data/vendor/assets/images/icons/64px/blackberry.png +0 -0
- data/vendor/assets/images/icons/64px/book.png +0 -0
- data/vendor/assets/images/icons/64px/bookmark.png +0 -0
- data/vendor/assets/images/icons/64px/breadcrumb.png +0 -0
- data/vendor/assets/images/icons/64px/calculator.png +0 -0
- data/vendor/assets/images/icons/64px/calendar.png +0 -0
- data/vendor/assets/images/icons/64px/car.png +0 -0
- data/vendor/assets/images/icons/64px/checkbox-tick.png +0 -0
- data/vendor/assets/images/icons/64px/clock.png +0 -0
- data/vendor/assets/images/icons/64px/close.png +0 -0
- data/vendor/assets/images/icons/64px/cog.png +0 -0
- data/vendor/assets/images/icons/64px/controller.png +0 -0
- data/vendor/assets/images/icons/64px/credit-card.png +0 -0
- data/vendor/assets/images/icons/64px/cross.png +0 -0
- data/vendor/assets/images/icons/64px/desktop.png +0 -0
- data/vendor/assets/images/icons/64px/doc.png +0 -0
- data/vendor/assets/images/icons/64px/down-arrow.png +0 -0
- data/vendor/assets/images/icons/64px/dual-fuel.png +0 -0
- data/vendor/assets/images/icons/64px/electric-light.png +0 -0
- data/vendor/assets/images/icons/64px/envelope.png +0 -0
- data/vendor/assets/images/icons/64px/exit-noexit.png +0 -0
- data/vendor/assets/images/icons/64px/facebook.png +0 -0
- data/vendor/assets/images/icons/64px/filter.png +0 -0
- data/vendor/assets/images/icons/64px/fixed-variable.png +0 -0
- data/vendor/assets/images/icons/64px/gas.png +0 -0
- data/vendor/assets/images/icons/64px/gauge.png +0 -0
- data/vendor/assets/images/icons/64px/github.png +0 -0
- data/vendor/assets/images/icons/64px/google.png +0 -0
- data/vendor/assets/images/icons/64px/graph-up.png +0 -0
- data/vendor/assets/images/icons/64px/happy.png +0 -0
- data/vendor/assets/images/icons/64px/home.png +0 -0
- data/vendor/assets/images/icons/64px/hot.png +0 -0
- data/vendor/assets/images/icons/64px/info.png +0 -0
- data/vendor/assets/images/icons/64px/kettle.png +0 -0
- data/vendor/assets/images/icons/64px/key.png +0 -0
- data/vendor/assets/images/icons/64px/laptop.png +0 -0
- data/vendor/assets/images/icons/64px/lock.png +0 -0
- data/vendor/assets/images/icons/64px/magnify-in.png +0 -0
- data/vendor/assets/images/icons/64px/magnify-out.png +0 -0
- data/vendor/assets/images/icons/64px/magnify.png +0 -0
- data/vendor/assets/images/icons/64px/menu.png +0 -0
- data/vendor/assets/images/icons/64px/message.png +0 -0
- data/vendor/assets/images/icons/64px/mobile.png +0 -0
- data/vendor/assets/images/icons/64px/monthly-dd.png +0 -0
- data/vendor/assets/images/icons/64px/neutral.png +0 -0
- data/vendor/assets/images/icons/64px/no-exit.png +0 -0
- data/vendor/assets/images/icons/64px/pdf.png +0 -0
- data/vendor/assets/images/icons/64px/pencil.png +0 -0
- data/vendor/assets/images/icons/64px/person-add.png +0 -0
- data/vendor/assets/images/icons/64px/person.png +0 -0
- data/vendor/assets/images/icons/64px/phone.png +0 -0
- data/vendor/assets/images/icons/64px/piggy-bank.png +0 -0
- data/vendor/assets/images/icons/64px/pin.png +0 -0
- data/vendor/assets/images/icons/64px/play.png +0 -0
- data/vendor/assets/images/icons/64px/pound-circle.png +0 -0
- data/vendor/assets/images/icons/64px/pound-note.png +0 -0
- data/vendor/assets/images/icons/64px/power.png +0 -0
- data/vendor/assets/images/icons/64px/present.png +0 -0
- data/vendor/assets/images/icons/64px/print.png +0 -0
- data/vendor/assets/images/icons/64px/quarterly-dd.png +0 -0
- data/vendor/assets/images/icons/64px/question-circle.png +0 -0
- data/vendor/assets/images/icons/64px/question.png +0 -0
- data/vendor/assets/images/icons/64px/quote.png +0 -0
- data/vendor/assets/images/icons/64px/recycle.png +0 -0
- data/vendor/assets/images/icons/64px/remove.png +0 -0
- data/vendor/assets/images/icons/64px/renewable.png +0 -0
- data/vendor/assets/images/icons/64px/results.png +0 -0
- data/vendor/assets/images/icons/64px/sad.png +0 -0
- data/vendor/assets/images/icons/64px/save.png +0 -0
- data/vendor/assets/images/icons/64px/share.png +0 -0
- data/vendor/assets/images/icons/64px/sim.png +0 -0
- data/vendor/assets/images/icons/64px/smiley.png +0 -0
- data/vendor/assets/images/icons/64px/sort.png +0 -0
- data/vendor/assets/images/icons/64px/speech-circle.png +0 -0
- data/vendor/assets/images/icons/64px/speech.png +0 -0
- data/vendor/assets/images/icons/64px/spinner 2.png +0 -0
- data/vendor/assets/images/icons/64px/spinner.png +0 -0
- data/vendor/assets/images/icons/64px/star-half.png +0 -0
- data/vendor/assets/images/icons/64px/star.png +0 -0
- data/vendor/assets/images/icons/64px/starline-half.png +0 -0
- data/vendor/assets/images/icons/64px/starline.png +0 -0
- data/vendor/assets/images/icons/64px/tablet.png +0 -0
- data/vendor/assets/images/icons/64px/talk.png +0 -0
- data/vendor/assets/images/icons/64px/tick-circle.png +0 -0
- data/vendor/assets/images/icons/64px/tick.png +0 -0
- data/vendor/assets/images/icons/64px/tv.png +0 -0
- data/vendor/assets/images/icons/64px/twitter.png +0 -0
- data/vendor/assets/images/icons/64px/ustyle.png +0 -0
- data/vendor/assets/images/icons/64px/uswitch.png +0 -0
- data/vendor/assets/images/icons/64px/variable.png +0 -0
- data/vendor/assets/images/icons/64px/warning-circle.png +0 -0
- data/vendor/assets/images/icons/64px/warning.png +0 -0
- data/vendor/assets/images/icons/64px/wifi.png +0 -0
- data/vendor/assets/images/icons/64px/wiki.png +0 -0
- data/vendor/assets/images/icons/64px/windows.png +0 -0
- data/vendor/assets/images/icons/64px/wondering.png +0 -0
- data/vendor/assets/images/icons/64px/world.png +0 -0
- data/vendor/assets/images/icons/64px/xml.png +0 -0
- data/vendor/assets/images/icons/alarm.svg +1 -0
- data/vendor/assets/images/icons/android.svg +1 -0
- data/vendor/assets/images/icons/angry.svg +1 -0
- data/vendor/assets/images/icons/apple.svg +1 -0
- data/vendor/assets/images/icons/arrow-circle.svg +1 -0
- data/vendor/assets/images/icons/arrow-up-left.svg +1 -0
- data/vendor/assets/images/icons/arrow-up.svg +1 -0
- data/vendor/assets/images/icons/barchart.svg +1 -0
- data/vendor/assets/images/icons/blackberry.svg +1 -0
- data/vendor/assets/images/icons/book.svg +1 -0
- data/vendor/assets/images/icons/bookmark.svg +1 -0
- data/vendor/assets/images/icons/breadcrumb.svg +1 -0
- data/vendor/assets/images/icons/calculator.svg +1 -0
- data/vendor/assets/images/icons/calendar.svg +1 -0
- data/vendor/assets/images/icons/car.svg +1 -0
- data/vendor/assets/images/icons/checkbox-tick.svg +1 -0
- data/vendor/assets/images/icons/clock.svg +1 -0
- data/vendor/assets/images/icons/close.svg +1 -0
- data/vendor/assets/images/icons/cog.svg +1 -0
- data/vendor/assets/images/icons/controller.svg +1 -0
- data/vendor/assets/images/icons/credit-card.svg +1 -0
- data/vendor/assets/images/icons/cross.svg +1 -0
- data/vendor/assets/images/icons/desktop.svg +1 -0
- data/vendor/assets/images/icons/doc.svg +1 -0
- data/vendor/assets/images/icons/down-arrow.svg +1 -0
- data/vendor/assets/images/icons/dual-fuel.svg +1 -0
- data/vendor/assets/images/icons/electric-light.svg +1 -0
- data/vendor/assets/images/icons/envelope.svg +1 -0
- data/vendor/assets/images/icons/exit-noexit.svg +1 -0
- data/vendor/assets/images/icons/facebook.svg +1 -0
- data/vendor/assets/images/icons/filter.svg +1 -0
- data/vendor/assets/images/icons/fixed-variable.svg +1 -0
- data/vendor/assets/images/icons/gas.svg +1 -0
- data/vendor/assets/images/icons/gauge.svg +1 -0
- data/vendor/assets/images/icons/github.svg +1 -0
- data/vendor/assets/images/icons/google.svg +1 -0
- data/vendor/assets/images/icons/graph-up.svg +1 -0
- data/vendor/assets/images/icons/happy.svg +1 -0
- data/vendor/assets/images/icons/home.svg +1 -0
- data/vendor/assets/images/icons/hot.svg +1 -0
- data/vendor/assets/images/icons/info.svg +1 -0
- data/vendor/assets/images/icons/kettle.svg +1 -0
- data/vendor/assets/images/icons/key.svg +1 -0
- data/vendor/assets/images/icons/laptop.svg +1 -0
- data/vendor/assets/images/icons/lock.svg +1 -0
- data/vendor/assets/images/icons/magnify-in.svg +1 -0
- data/vendor/assets/images/icons/magnify-out.svg +1 -0
- data/vendor/assets/images/icons/magnify.svg +1 -0
- data/vendor/assets/images/icons/menu.svg +1 -0
- data/vendor/assets/images/icons/message.svg +1 -0
- data/vendor/assets/images/icons/mobile.svg +1 -0
- data/vendor/assets/images/icons/monthly-dd.svg +1 -0
- data/vendor/assets/images/icons/neutral.svg +1 -0
- data/vendor/assets/images/icons/no-exit.svg +1 -0
- data/vendor/assets/images/icons/pdf.svg +1 -0
- data/vendor/assets/images/icons/pencil.svg +1 -0
- data/vendor/assets/images/icons/person-add.svg +1 -0
- data/vendor/assets/images/icons/person.svg +1 -0
- data/vendor/assets/images/icons/phone.svg +1 -0
- data/vendor/assets/images/icons/piggy-bank.svg +1 -0
- data/vendor/assets/images/icons/pin.svg +1 -0
- data/vendor/assets/images/icons/play.svg +1 -0
- data/vendor/assets/images/icons/pound-circle.svg +1 -0
- data/vendor/assets/images/icons/pound-note.svg +1 -0
- data/vendor/assets/images/icons/power.svg +1 -0
- data/vendor/assets/images/icons/present.svg +1 -0
- data/vendor/assets/images/icons/print.svg +1 -0
- data/vendor/assets/images/icons/quarterly-dd.svg +1 -0
- data/vendor/assets/images/icons/question-circle.svg +1 -0
- data/vendor/assets/images/icons/question.svg +1 -0
- data/vendor/assets/images/icons/quote.svg +1 -0
- data/vendor/assets/images/icons/recycle.svg +1 -0
- data/vendor/assets/images/icons/remove.svg +1 -0
- data/vendor/assets/images/icons/renewable.svg +1 -0
- data/vendor/assets/images/icons/results.svg +1 -0
- data/vendor/assets/images/icons/sad.svg +1 -0
- data/vendor/assets/images/icons/save.svg +1 -0
- data/vendor/assets/images/icons/share.svg +1 -0
- data/vendor/assets/images/icons/sim.svg +1 -0
- data/vendor/assets/images/icons/smiley.svg +1 -0
- data/vendor/assets/images/icons/sort.svg +1 -0
- data/vendor/assets/images/icons/speech-circle.svg +1 -0
- data/vendor/assets/images/icons/speech.svg +1 -0
- data/vendor/assets/images/icons/spinner 2.svg +1 -0
- data/vendor/assets/images/icons/spinner.svg +1 -0
- data/vendor/assets/images/icons/spinner_fallback.gif +0 -0
- data/vendor/assets/images/icons/star-half.svg +1 -0
- data/vendor/assets/images/icons/star.svg +1 -0
- data/vendor/assets/images/icons/starline-half.svg +1 -0
- data/vendor/assets/images/icons/starline.svg +1 -0
- data/vendor/assets/images/icons/tablet.svg +1 -0
- data/vendor/assets/images/icons/talk.svg +1 -0
- data/vendor/assets/images/icons/tick-circle.svg +1 -0
- data/vendor/assets/images/icons/tick.svg +1 -0
- data/vendor/assets/images/icons/tv.svg +1 -0
- data/vendor/assets/images/icons/twitter.svg +1 -0
- data/vendor/assets/images/icons/ustyle.svg +1 -0
- data/vendor/assets/images/icons/uswitch.svg +1 -0
- data/vendor/assets/images/icons/variable.svg +1 -0
- data/vendor/assets/images/icons/warning-circle.svg +1 -0
- data/vendor/assets/images/icons/warning.svg +1 -0
- data/vendor/assets/images/icons/wifi.svg +1 -0
- data/vendor/assets/images/icons/wiki.svg +1 -0
- data/vendor/assets/images/icons/windows.svg +1 -0
- data/vendor/assets/images/icons/wondering.svg +1 -0
- data/vendor/assets/images/icons/world.svg +1 -0
- data/vendor/assets/images/icons/xml.svg +1 -0
- data/vendor/assets/javascripts/ustyle/anchor.js +300 -0
- data/vendor/assets/javascripts/ustyle/backdrop.js +56 -0
- data/vendor/assets/javascripts/ustyle/classtoggler.js +58 -0
- data/vendor/assets/javascripts/ustyle/login/login.js +165 -0
- data/vendor/assets/javascripts/ustyle/login/password-helper.js +151 -0
- data/vendor/assets/javascripts/ustyle/overlay.js +125 -0
- data/vendor/assets/javascripts/ustyle/radioToggle.js +28 -0
- data/vendor/assets/javascripts/ustyle/tabs.js +120 -0
- data/vendor/assets/javascripts/ustyle/utils.js +106 -0
- data/vendor/assets/javascripts/ustyle.js +7 -0
- data/vendor/assets/stylesheets/ustyle/_all.scss +50 -0
- data/vendor/assets/stylesheets/ustyle/_content.scss +5 -0
- data/vendor/assets/stylesheets/ustyle/_global.scss +24 -0
- data/vendor/assets/stylesheets/ustyle/_icons.scss +20 -0
- data/vendor/assets/stylesheets/ustyle/articles/_base.scss +88 -0
- data/vendor/assets/stylesheets/ustyle/articles/_guide.scss +57 -0
- data/vendor/assets/stylesheets/ustyle/articles/_more.scss +31 -0
- data/vendor/assets/stylesheets/ustyle/articles/_news.scss +214 -0
- data/vendor/assets/stylesheets/ustyle/articles/_related.scss +74 -0
- data/vendor/assets/stylesheets/ustyle/basics/_extends.scss +69 -0
- data/vendor/assets/stylesheets/ustyle/basics/_font-face-ie.scss +31 -0
- data/vendor/assets/stylesheets/ustyle/basics/_font-face.scss +31 -0
- data/vendor/assets/stylesheets/ustyle/basics/_fonts.scss +27 -0
- data/vendor/assets/stylesheets/ustyle/basics/_functions.scss +78 -0
- data/vendor/assets/stylesheets/ustyle/basics/_grid.scss +86 -0
- data/vendor/assets/stylesheets/ustyle/basics/_typography.scss +123 -0
- data/vendor/assets/stylesheets/ustyle/basics/_variables.scss +188 -0
- data/vendor/assets/stylesheets/ustyle/basics/variables/_colors.scss +95 -0
- data/vendor/assets/stylesheets/ustyle/basics/variables/_forms.scss +65 -0
- data/vendor/assets/stylesheets/ustyle/basics/variables/_icons.scss +166 -0
- data/vendor/assets/stylesheets/ustyle/components/_anchor.scss +134 -0
- data/vendor/assets/stylesheets/ustyle/components/_backdrop.scss +19 -0
- data/vendor/assets/stylesheets/ustyle/components/_breadcrumbs.scss +59 -0
- data/vendor/assets/stylesheets/ustyle/components/_button.scss +184 -0
- data/vendor/assets/stylesheets/ustyle/components/_content-group.scss +33 -0
- data/vendor/assets/stylesheets/ustyle/components/_cta.scss +64 -0
- data/vendor/assets/stylesheets/ustyle/components/_featured.scss +112 -0
- data/vendor/assets/stylesheets/ustyle/components/_grid-classes.scss +52 -0
- data/vendor/assets/stylesheets/ustyle/components/_hero.scss +42 -0
- data/vendor/assets/stylesheets/ustyle/components/_links.scss +30 -0
- data/vendor/assets/stylesheets/ustyle/components/_lists-li.scss +89 -0
- data/vendor/assets/stylesheets/ustyle/components/_lists.scss +46 -0
- data/vendor/assets/stylesheets/ustyle/components/_loader.scss +142 -0
- data/vendor/assets/stylesheets/ustyle/components/_overlay.scss +183 -0
- data/vendor/assets/stylesheets/ustyle/components/_progress.scss +126 -0
- data/vendor/assets/stylesheets/ustyle/components/_tabs.scss +239 -0
- data/vendor/assets/stylesheets/ustyle/components/_tooltip.scss +244 -0
- data/vendor/assets/stylesheets/ustyle/components/_usp.scss +69 -0
- data/vendor/assets/stylesheets/ustyle/content/_base.scss +195 -0
- data/vendor/assets/stylesheets/ustyle/content/_c-header.scss +30 -0
- data/vendor/assets/stylesheets/ustyle/content/_c-social.scss +10 -0
- data/vendor/assets/stylesheets/ustyle/content/_c-tabs.scss +30 -0
- data/vendor/assets/stylesheets/ustyle/forms/_base.scss +9 -0
- data/vendor/assets/stylesheets/ustyle/forms/_fields.scss +75 -0
- data/vendor/assets/stylesheets/ustyle/forms/_input-group.scss +101 -0
- data/vendor/assets/stylesheets/ustyle/forms/_input.scss +63 -0
- data/vendor/assets/stylesheets/ustyle/forms/_radio-checkbox.scss +133 -0
- data/vendor/assets/stylesheets/ustyle/forms/_reset.scss +23 -0
- data/vendor/assets/stylesheets/ustyle/forms/_select.scss +125 -0
- data/vendor/assets/stylesheets/ustyle/forms/_textarea.scss +33 -0
- data/vendor/assets/stylesheets/ustyle/forms/_toggle.scss +125 -0
- data/vendor/assets/stylesheets/ustyle/forms/_validation.scss +104 -0
- data/vendor/assets/stylesheets/ustyle/icons/_base.scss +239 -0
- data/vendor/assets/stylesheets/ustyle/icons/_png.scss +37 -0
- data/vendor/assets/stylesheets/ustyle/icons/_svg.scss +29 -0
- data/vendor/assets/stylesheets/ustyle/login/_base.scss +81 -0
- data/vendor/assets/stylesheets/ustyle/login/_password-help.scss +61 -0
- data/vendor/assets/stylesheets/ustyle/login/_social.scss +63 -0
- data/vendor/assets/stylesheets/ustyle/mixins/_arrow.scss +51 -0
- data/vendor/assets/stylesheets/ustyle/mixins/_base.scss +8 -0
- data/vendor/assets/stylesheets/ustyle/mixins/_baseline.scss +41 -0
- data/vendor/assets/stylesheets/ustyle/mixins/_forms.scss +62 -0
- data/vendor/assets/stylesheets/ustyle/mixins/_general.scss +24 -0
- data/vendor/assets/stylesheets/ustyle/mixins/_link-colors.scss +44 -0
- data/vendor/assets/stylesheets/ustyle/mixins/_media-query.scss +116 -0
- data/vendor/assets/stylesheets/ustyle/mixins/_rgba-inline.scss +18 -0
- data/vendor/assets/stylesheets/ustyle/mixins/_typography.scss +98 -0
- data/vendor/assets/stylesheets/ustyle/tables/_base.scss +4 -0
- data/vendor/assets/stylesheets/ustyle/tables/_tables-basic.scss +72 -0
- data/vendor/assets/stylesheets/ustyle/tables/_tables-sortable.scss +72 -0
- data/vendor/assets/stylesheets/ustyle/tables/_tables-with-key-cells.scss +18 -0
- data/vendor/assets/stylesheets/ustyle/tables/_variables.scss +15 -0
- data/vendor/assets/stylesheets/ustyle/utilities/_general.scss +106 -0
- data/vendor/assets/stylesheets/ustyle/utilities/_grid.scss +13 -0
- data/vendor/assets/stylesheets/ustyle/utilities/_images.scss +34 -0
- data/vendor/assets/stylesheets/ustyle/utilities/_responsive.scss +101 -0
- data/vendor/assets/stylesheets/ustyle/utilities/_spacing.scss +74 -0
- data/vendor/assets/stylesheets/ustyle/vendor/normalize.scss +427 -0
- data/vendor/assets/stylesheets/ustyle-content.scss +2 -0
- data/vendor/assets/stylesheets/ustyle-icons.scss +1 -0
- data/vendor/assets/stylesheets/ustyle.scss +1 -0
- metadata +822 -0
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M31.9 12.412l-11.056-1.607L15.9.787l-4.944 10.018L-.1 12.412l8 7.798-1.888 11.01 9.888-5.198 9.888 5.2L23.9 20.21l8-7.798zm-16 11.14l-6.983 3.67 1.334-7.776L4.6 13.94l7.808-1.136L15.9 5.73l3.492 7.075L27.2 13.94l-5.65 5.507 1.333 7.776L15.9 23.55z"/><path fill="#333" d="M31.9 76.412l-11.056-1.607L15.9 64.787l-4.944 10.018L-.1 76.412l8 7.798-1.888 11.01 9.888-5.198 9.888 5.2L23.9 84.21l8-7.798zm-16 11.14l-6.983 3.67 1.334-7.776L4.6 77.94l7.808-1.136L15.9 69.73l3.492 7.075L27.2 77.94l-5.65 5.507 1.333 7.776L15.9 87.55z"/><path fill="#97999A" d="M31.9 140.412l-11.056-1.607-4.944-10.018-4.944 10.018L-.1 140.412l8 7.798-1.888 11.01 9.888-5.198 9.888 5.2L23.9 148.21l8-7.798zm-16 11.14l-6.983 3.67 1.334-7.776-5.65-5.507 7.81-1.14 3.49-7.08 3.5 7.07 7.81 1.135-5.65 5.506 1.336 7.777-6.983-3.67z"/><path fill="#008FE9" d="M31.9 204.412l-11.056-1.607-4.944-10.018-4.944 10.018L-.1 204.412l8 7.798-1.888 11.01 9.888-5.198 9.888 5.2L23.9 212.21l8-7.798zm-16 11.14l-6.983 3.67 1.334-7.776-5.65-5.507 7.81-1.14 3.49-7.08 3.5 7.07 7.81 1.135-5.65 5.506 1.336 7.777-6.983-3.67z"/><path fill="#FFD32F" d="M31.9 268.412l-11.056-1.607-4.944-10.018-4.944 10.018L-.1 268.412l8 7.798-1.888 11.01 9.888-5.198 9.888 5.2L23.9 276.21l8-7.798zm-16 11.14l-6.983 3.67 1.334-7.776-5.65-5.507 7.81-1.14 3.49-7.08 3.5 7.07 7.81 1.135-5.65 5.506 1.336 7.777-6.983-3.67z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M29 2.836C29 1.27 27.73 0 26.164 0H5.836C4.27 0 3 1.27 3 2.836v26.33C3 30.73 4.27 32 5.836 32h20.33C27.73 32 29 30.73 29 29.164V2.836zM15.9 30.372c-.832 0-1.512-.68-1.512-1.512 0-.83.68-1.512 1.512-1.512s1.512.68 1.512 1.512-.68 1.512-1.512 1.512zM27 26H5V2.84C5 2.395 5.71 2 6.153 2h19.494c.445 0 1.353.395 1.353.84V26z"/><path fill="#333" d="M29 66.836C29 65.27 27.73 64 26.164 64H5.836C4.27 64 3 65.27 3 66.836v26.33C3 94.73 4.27 96 5.836 96h20.33C27.73 96 29 94.73 29 93.164V66.836zM15.9 94.372c-.832 0-1.512-.68-1.512-1.512 0-.83.68-1.512 1.512-1.512s1.512.68 1.512 1.512-.68 1.512-1.512 1.512zM27 90H5V66.84c0-.445.71-.84 1.153-.84h19.494c.445 0 1.353.395 1.353.84V90z"/><path fill="#97999A" d="M29 130.836c0-1.566-1.27-2.836-2.836-2.836H5.836C4.27 128 3 129.27 3 130.836v26.33C3 158.73 4.27 160 5.836 160h20.33c1.565 0 2.835-1.27 2.835-2.836v-26.328zm-13.1 27.536c-.832 0-1.512-.68-1.512-1.512 0-.83.68-1.512 1.512-1.512s1.512.68 1.512 1.512-.68 1.512-1.512 1.512zM27 154H5v-23.16c0-.444.71-.84 1.153-.84h19.494c.444 0 1.353.395 1.353.84V154z"/><path fill="#008FE9" d="M29 194.836c0-1.566-1.27-2.836-2.836-2.836H5.836C4.27 192 3 193.27 3 194.836v26.33C3 222.73 4.27 224 5.836 224h20.33c1.565 0 2.835-1.27 2.835-2.836v-26.328zm-13.1 27.536c-.832 0-1.512-.68-1.512-1.512 0-.83.68-1.512 1.512-1.512s1.512.68 1.512 1.512-.68 1.512-1.512 1.512zM27 218H5v-23.16c0-.444.71-.84 1.153-.84h19.494c.444 0 1.353.395 1.353.84V218z"/><path fill="#1C1F4E" d="M29 258.836c0-1.566-1.27-2.836-2.836-2.836H5.836C4.27 256 3 257.27 3 258.836v26.33C3 286.73 4.27 288 5.836 288h20.33c1.565 0 2.835-1.27 2.835-2.836v-26.328zm-13.1 27.536c-.832 0-1.512-.68-1.512-1.512 0-.83.68-1.512 1.512-1.512s1.512.68 1.512 1.512-.68 1.512-1.512 1.512zM27 282H5v-23.16c0-.444.71-.84 1.153-.84h19.494c.444 0 1.353.395 1.353.84V282z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M30.172 26.82c0 1.265.828 2.36 1.828 2.895v.443c0 .04-.646.062-.953.062-1.89 0-3.618-.792-4.823-2.063-.728.194-1.513.3-2.312.3-4.418 0-8.006-3.185-8.006-7.112s3.58-7.11 7.997-7.11 7.998 3.183 7.998 7.11c0 1.537-.52 2.96-1.45 4.124-.19.41-.27.86-.27 1.35zM14.122 1.79c7.736 0 14.03 5.016 14.22 11.263-1.367-.61-2.878-.93-4.44-.93-2.655 0-5.163.928-7.06 2.615-1.968 1.75-3.052 4.095-3.052 6.606 0 1.24.265 2.44.77 3.55-.145.003-.29.006-.437.006-.754 0-1.334-.048-2.056-.14C9.01 27.815 5 28.362 2 28.443v-.748c2-.933 3.395-2.632 3.395-4.573 0-.27-.102-.537-.14-.797-3.22-2.118-5.315-5.355-5.315-8.98 0-6.385 6.33-11.557 14.184-11.557z"/><path fill="#333" d="M30.172 90.82c0 1.265.828 2.36 1.828 2.895v.443c0 .04-.646.062-.953.062-1.89 0-3.618-.792-4.823-2.063-.728.194-1.513.3-2.312.3-4.418 0-8.006-3.185-8.006-7.112s3.58-7.11 7.997-7.11 7.998 3.183 7.998 7.11c0 1.537-.52 2.96-1.45 4.124-.19.41-.27.86-.27 1.35zm-16.05-25.03c7.736 0 14.03 5.016 14.22 11.263-1.367-.61-2.878-.93-4.44-.93-2.655 0-5.163.928-7.06 2.615-1.968 1.75-3.052 4.095-3.052 6.606 0 1.24.265 2.44.77 3.55-.145.003-.29.006-.437.006-.754 0-1.334-.048-2.056-.14C9.01 91.815 5 92.362 2 92.443v-.748c2-.933 3.395-2.632 3.395-4.573 0-.27-.102-.537-.14-.797-3.22-2.118-5.315-5.355-5.315-8.98 0-6.383 6.328-11.556 14.183-11.556z"/><path fill="#97999A" d="M30.172 154.82c0 1.265.828 2.36 1.828 2.895v.443c0 .04-.646.062-.953.062-1.89 0-3.618-.792-4.823-2.063-.728.194-1.513.3-2.312.3-4.418 0-8.006-3.185-8.006-7.112s3.58-7.11 7.997-7.11 7.998 3.183 7.998 7.11c0 1.537-.52 2.96-1.45 4.124-.19.41-.27.86-.27 1.35zm-16.05-25.03c7.736 0 14.03 5.016 14.22 11.263-1.367-.61-2.878-.93-4.44-.93-2.655 0-5.163.928-7.06 2.615-1.968 1.75-3.052 4.095-3.052 6.606 0 1.24.265 2.44.77 3.55-.145.003-.29.006-.437.006-.754 0-1.334-.048-2.056-.14C9.01 155.815 5 156.362 2 156.443v-.748c2-.933 3.395-2.632 3.395-4.573 0-.27-.102-.537-.14-.797-3.218-2.118-5.314-5.354-5.314-8.98 0-6.383 6.33-11.556 14.19-11.556z"/><path fill="#008FE9" d="M30.172 218.82c0 1.265.828 2.36 1.828 2.895v.443c0 .04-.646.062-.953.062-1.89 0-3.618-.792-4.823-2.063-.728.194-1.513.3-2.312.3-4.418 0-8.006-3.185-8.006-7.112s3.58-7.11 7.997-7.11 7.998 3.183 7.998 7.11c0 1.537-.52 2.96-1.45 4.124-.19.41-.27.86-.27 1.35zm-16.05-25.03c7.736 0 14.03 5.016 14.22 11.263-1.367-.61-2.878-.93-4.44-.93-2.655 0-5.163.928-7.06 2.615-1.968 1.75-3.052 4.095-3.052 6.606 0 1.24.265 2.44.77 3.55-.145.003-.29.006-.437.006-.754 0-1.334-.048-2.056-.14C9.01 219.815 5 220.362 2 220.443v-.748c2-.933 3.395-2.632 3.395-4.573 0-.27-.102-.537-.14-.797-3.218-2.118-5.314-5.354-5.314-8.98 0-6.383 6.33-11.556 14.19-11.556z"/><path fill="#1C1F4E" d="M30.172 282.82c0 1.265.828 2.36 1.828 2.895v.443c0 .04-.646.062-.953.062-1.89 0-3.618-.792-4.823-2.063-.728.194-1.513.3-2.312.3-4.418 0-8.006-3.185-8.006-7.112s3.58-7.11 7.997-7.11 7.998 3.183 7.998 7.11c0 1.537-.52 2.96-1.45 4.124-.19.41-.27.86-.27 1.35zm-16.05-25.03c7.736 0 14.03 5.016 14.22 11.263-1.367-.61-2.878-.93-4.44-.93-2.655 0-5.163.928-7.06 2.615-1.968 1.75-3.052 4.095-3.052 6.606 0 1.24.265 2.44.77 3.55-.145.003-.29.006-.437.006-.754 0-1.334-.048-2.056-.14C9.01 283.815 5 284.362 2 284.443v-.748c2-.933 3.395-2.632 3.395-4.573 0-.27-.102-.537-.14-.797-3.218-2.118-5.314-5.354-5.314-8.98 0-6.383 6.33-11.556 14.19-11.556z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M15.9.004c-8.836 0-16 7.163-16 16s7.164 16 16 16c8.837 0 16-7.163 16-16s-7.163-16-16-16zm-3.347 24L6.4 17.784l2.978-3.012 3.174 3.21 9.87-9.978 2.977 3.01-12.85 12.99z"/><path fill="#333" d="M15.9 64.004c-8.836 0-16 7.163-16 16s7.164 16 16 16c8.837 0 16-7.163 16-16s-7.163-16-16-16zm-3.347 24L6.4 81.784l2.978-3.012 3.174 3.21 9.87-9.978 2.977 3.01-12.85 12.99z"/><path fill="#97999A" d="M15.9 128.004c-8.836 0-16 7.163-16 16s7.164 16 16 16c8.837 0 16-7.163 16-16s-7.163-16-16-16zm-3.347 24l-6.153-6.22 2.978-3.012 3.174 3.21 9.87-9.978 2.977 3.01-12.85 12.99z"/><path fill="#008FE9" d="M15.9 192.004c-8.836 0-16 7.163-16 16s7.164 16 16 16c8.837 0 16-7.163 16-16s-7.163-16-16-16zm-3.347 24l-6.153-6.22 2.978-3.012 3.174 3.21 9.87-9.978 2.977 3.01-12.85 12.99z"/><path fill="#1C1F4E" d="M15.9 256.004c-8.836 0-16 7.163-16 16s7.164 16 16 16c8.837 0 16-7.163 16-16s-7.163-16-16-16zm-3.347 24l-6.153-6.22 2.978-3.012 3.174 3.21 9.87-9.978 2.977 3.01-12.85 12.99z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M11.42 27.004L3 18.45l4.075-4.14 4.345 4.412L24.925 5.004 29 9.144z"/><path fill="#333" d="M11.42 91.004L3 82.45l4.075-4.14 4.345 4.412 13.505-13.718L29 73.144z"/><path fill="#97999A" d="M11.42 155.004L3 146.45l4.075-4.14 4.345 4.412 13.505-13.718 4.075 4.14z"/><path fill="#008FE9" d="M11.42 219.004L3 210.45l4.075-4.14 4.345 4.412 13.505-13.718 4.075 4.14z"/><path fill="#2AAA5B" d="M11.42 283.004L3 274.45l4.075-4.14 4.345 4.412 13.505-13.718 4.075 4.14z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path d="M32 25V2H0v23h12v1.78c-1 .08-1.81.27-2.5.37C7.89 27.39 6.73 29 6.73 30h18.34c0-1-1.06-2.61-2.67-2.84-.69-.1-1.4-.29-2.4-.37V25h12zM3 22V5h26v17H3zm4-11h3v7h2v-7h3V9H7m12.9 7l-2.04-7H15.9l3.06 9h1.94l3-9h-2" fill="#FFF"/><path d="M32 89V66H0v23h12v1.78c-1 .08-1.81.27-2.5.37C7.89 91.39 6.73 93 6.73 94h18.34c0-1-1.06-2.61-2.67-2.84-.69-.1-1.4-.29-2.4-.37V89h12zM3 86V69h26v17H3zm4-11h3v7h2v-7h3v-2H7m12.9 7l-2.04-7H15.9l3.06 9h1.94l3-9h-2" fill="#333"/><path d="M32 153v-23H0v23h12v1.78c-1 .08-1.81.27-2.5.37-1.61.24-2.77 1.85-2.77 2.85h18.34c0-1-1.06-2.61-2.67-2.84-.69-.1-1.4-.29-2.4-.37V153h12zm-29-3v-17h26v17H3zm4-11h3v7h2v-7h3v-2H7m12.9 7l-2.04-7H15.9l3.06 9h1.94l3-9h-2" fill="#97999A"/><path d="M32 217v-23H0v23h12v1.78c-1 .08-1.81.27-2.5.37-1.61.24-2.77 1.85-2.77 2.85h18.34c0-1-1.06-2.61-2.67-2.84-.69-.1-1.4-.29-2.4-.37V217h12zm-29-3v-17h26v17H3zm4-11h3v7h2v-7h3v-2H7m12.9 7l-2.04-7H15.9l3.06 9h1.94l3-9h-2" fill="#008FE9"/><path d="M32 281v-23H0v23h12v1.78c-1 .08-1.81.27-2.5.37-1.61.24-2.77 1.85-2.77 2.85h18.34c0-1-1.06-2.61-2.67-2.84-.69-.1-1.4-.29-2.4-.37V281h12zm-29-3v-17h26v17H3zm4-11h3v7h2v-7h3v-2H7m12.9 7l-2.04-7H15.9l3.06 9h1.94l3-9h-2" fill="#1C1F4E"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M15.9.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm9.195 11.284c.01.203.014.408.014.614 0 6.27-4.78 13.5-13.5 13.5-2.68 0-5.18-.786-7.28-2.133.37.04.75.06 1.13.06 2.22 0 4.263-.76 5.89-2.03-2.08-.04-3.83-1.41-4.43-3.3.29.05.582.08.89.08.43 0 .85-.058 1.25-.166-2.17-.436-3.81-2.354-3.81-4.65v-.06c.64.353 1.373.57 2.15.59-1.27-.85-2.105-2.3-2.105-3.948 0-.87.232-1.684.64-2.385 2.34 2.87 5.836 4.76 9.78 4.96-.08-.35-.124-.71-.124-1.08 0-2.62 2.126-4.746 4.746-4.746 1.365 0 2.6.58 3.463 1.5 1.08-.21 2.096-.605 3.013-1.15-.354 1.11-1.107 2.04-2.086 2.627.96-.115 1.875-.37 2.726-.747-.635.95-1.44 1.785-2.367 2.454z"/><path fill="#333" d="M15.9 64.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm9.195 11.284c.01.203.014.408.014.614 0 6.27-4.78 13.5-13.5 13.5-2.68 0-5.18-.786-7.28-2.133.37.04.75.06 1.13.06 2.22 0 4.263-.76 5.89-2.03-2.08-.04-3.83-1.41-4.43-3.3.29.05.582.08.89.08.43 0 .85-.058 1.25-.166-2.17-.436-3.81-2.354-3.81-4.65v-.06c.64.353 1.373.57 2.15.59-1.272-.85-2.11-2.303-2.11-3.95 0-.87.234-1.683.64-2.384 2.34 2.87 5.838 4.76 9.78 4.96-.08-.35-.122-.71-.122-1.08 0-2.62 2.125-4.746 4.745-4.746 1.364 0 2.597.576 3.462 1.5 1.08-.21 2.095-.608 3.012-1.15-.355 1.11-1.108 2.04-2.087 2.624.96-.116 1.873-.37 2.724-.748-.634.95-1.44 1.787-2.366 2.456z"/><path fill="#97999A" d="M15.9 128.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm9.195 11.284c.01.203.014.408.014.614 0 6.27-4.78 13.5-13.5 13.5-2.68 0-5.18-.786-7.28-2.133.37.04.75.06 1.13.06 2.22 0 4.263-.76 5.89-2.03-2.08-.04-3.83-1.41-4.43-3.3.29.05.582.08.89.08.43 0 .85-.058 1.25-.166-2.17-.436-3.81-2.354-3.81-4.65v-.06c.64.353 1.373.57 2.15.59-1.272-.85-2.11-2.303-2.11-3.95 0-.87.234-1.683.64-2.384 2.34 2.87 5.838 4.76 9.78 4.96-.08-.35-.122-.71-.122-1.08 0-2.62 2.125-4.746 4.745-4.746 1.364 0 2.597.576 3.462 1.5 1.08-.21 2.095-.608 3.012-1.15-.355 1.11-1.108 2.04-2.087 2.624.96-.116 1.873-.37 2.724-.748-.634.95-1.44 1.787-2.366 2.456z"/><path fill="#008FE9" d="M15.9 192.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm9.195 11.284c.01.203.014.408.014.614 0 6.27-4.78 13.5-13.5 13.5-2.68 0-5.18-.786-7.28-2.133.37.04.75.06 1.13.06 2.22 0 4.263-.76 5.89-2.03-2.08-.04-3.83-1.41-4.43-3.3.29.05.582.08.89.08.43 0 .85-.058 1.25-.166-2.17-.436-3.81-2.354-3.81-4.65v-.06c.64.353 1.373.57 2.15.59-1.272-.85-2.11-2.303-2.11-3.95 0-.87.234-1.683.64-2.384 2.34 2.87 5.838 4.76 9.78 4.96-.08-.35-.122-.71-.122-1.08 0-2.62 2.125-4.746 4.745-4.746 1.364 0 2.597.576 3.462 1.5 1.08-.21 2.095-.608 3.012-1.15-.355 1.11-1.108 2.04-2.087 2.624.96-.116 1.873-.37 2.724-.748-.634.95-1.44 1.787-2.366 2.456z"/><path fill="#00ACED" d="M15.9 256.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm9.195 11.284c.01.203.014.408.014.614 0 6.27-4.78 13.5-13.5 13.5-2.68 0-5.18-.787-7.28-2.133.37.04.75.06 1.13.06 2.22 0 4.263-.76 5.89-2.03-2.08-.04-3.83-1.41-4.43-3.3.29.05.582.08.89.08.43 0 .85-.058 1.25-.166-2.17-.436-3.81-2.354-3.81-4.65v-.06c.64.353 1.373.57 2.15.59-1.272-.85-2.11-2.303-2.11-3.95 0-.87.234-1.684.64-2.384 2.34 2.87 5.838 4.76 9.78 4.96-.08-.35-.122-.71-.122-1.08 0-2.62 2.125-4.746 4.745-4.746 1.364 0 2.597.576 3.462 1.5 1.08-.21 2.095-.608 3.012-1.15-.355 1.11-1.108 2.04-2.087 2.624.96-.116 1.873-.37 2.724-.748-.634.952-1.44 1.787-2.366 2.456z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg baseProfile="tiny" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path fill="#548DCA" d="M15.1 14.1l-4.2 4.4 2.5.3"/><path fill="#437CBE" d="M15.1 14.1l1.8 5.2-3.5-.5"/><path fill="#4983C3" d="M15.1 14.1l1.8-1.1v6.3"/><path fill="#437CBE" d="M16.9 13l3.3 2.9-3.3 3.4"/><path fill="#568FCB" d="M16.9 13l3-2.4.3 5.3"/><path fill="#9BC6EB" d="M19.9 10.6l1.7 7.4-1.4-2.1"/><path fill="#68A0D6" d="M21.6 18l-4.7 1.3 3.3-3.4"/><path fill="#80B2E0" d="M21.6 18v6.4l-2.7-1.9"/><path fill="#5A94CE" d="M18.9 22.5l-2-3.2 4.7-1.3"/><path fill="#679FD6" d="M16.9 19.3l-4.3 8.2 3.3-1.2"/><path fill="#558FCB" d="M16.9 19.3l-1 7 3-3.8"/><path fill="#8FBDE6" d="M18.9 22.5l-1.7 5-1.3-1.2"/><path fill="#7DB1E0" d="M18.9 22.5l2.7 1.9-4.4 3.1"/><path fill="#417CBE" d="M16.9 19.3l-3.5-.5-3.2 6.9"/><path fill="#3D73B8" d="M16.9 19.3l-6.7 6.4 2.4 1.8"/><path fill="#558FCB" d="M10.9 18.5l-.7 7.2 3.2-6.9"/><path fill="#548DCA" d="M10.9 18.5L8 26.6l2.2-.9"/><path fill="#427BBD" d="M8 26.6l.7 3 1.5-3.9"/><path fill="#3D73B8" d="M10.2 25.7l.6 4.4-2.1-.5"/><path fill="#386FB4" d="M10.2 25.7l2.4 1.8-1.8 2.6"/><path fill="#427BBD" d="M12.6 27.5l-1.8 2.6 2.7-.4"/><path fill="#649ED5" d="M12.6 27.5l3.3-1.2-2.4 3.4"/><path fill="#87B8E4" d="M15.9 26.3l-.8 3-1.6.4"/><path fill="#93C1E8" d="M15.9 26.3l1.3 1.2-2.1 1.8"/><path fill="#5B95CF" d="M8.7 29.6l2 2.4.1-1.9"/><path fill="#568FCB" d="M10.8 30.1l2.7-.4-.8 2.1"/><path fill="#5E98D1" d="M10.8 30.1l-.1 1.9 2-.2"/><path fill="#8DBCE6" d="M12.7 31.8l2.4-2.5-1.6.4"/><path fill="#90BDE6" d="M12.7 31.8l1.4-.2 1-2.3"/><path fill="#A2CAEC" d="M14.1 31.6l1.3-2.1-.3-.2"/><path fill="#A1C9EC" d="M17.2 27.5l-1.8 2-.3-.2"/><path fill="#84B6E2" d="M10.7 32l-1.2-1-.8-1.4"/><path fill="#82B3E1" d="M8 26.6l.3 2.1.4.9"/><path fill="#558FCB" d="M10.9 18.5l3.6-5.7.6 1.3"/><path fill="#5B95CF" d="M14.5 12.8L10.8 15l.1 3.5"/><path fill="#72A9DB" d="M10.8 15l3.6-3.9.1 1.7"/><path fill="#5894CF" d="M19.9 10.6l-3.8.8.8 1.6"/><path fill="#7AAEDF" d="M19.9 10.6l-1.4-1.7-2.4 2.5"/><path fill="#95C0E7" d="M18.5 8.9l-3.4 1.4-.7.8 1.7.3"/><path fill="#70A8DB" d="M18.5 8.9l-4.7-3 1.3 4.4"/><path fill="#629DD5" d="M18.5 8.9l5.4-2.7-4 4.4"/><path fill="#99D1F3" d="M23.9 6.2L21 10l-1.1.6"/><path fill="#599BD4" d="M23.9 6.2l-1.6 5.3L21 10"/><path fill="#7FBBE7" d="M22.3 11.5l-2.4-.9L21 10"/><path fill="#78AEDE" d="M19.9 10.6l2.4.9-.7 6.5"/><path fill="#92C1E8" d="M22.3 11.5l1 5.2-1.7 1.3"/><path fill="#A1CAED" d="M23.3 16.7l-.3 4.8-1.4-3.5"/><path fill="#90BDE6" d="M21.6 18l1.4 3.5-1.4 2.9"/><path fill="#9BC6EB" d="M26.3 15.8l-3 .9 3.6 4"/><path fill="#95C1E8" d="M26.9 20.7l-3.9.8.3-4.8"/><path fill="#9CC6EA" d="M26.9 20.7l-.9 4.2-3-3.4"/><path fill="#93C1E8" d="M23 21.5l3 3.4-2.3 2.1"/><path fill="#93C1E8" d="M23 21.5l.7 5.5-2-3"/><path fill="#91BFE7" d="M21.4 24.5l2.3 2.5-2-3-.1.4"/><path fill="#98C4EA" d="M23.3 16.7l3-.9-3.8-3.4"/><path fill="#AFD3F0" d="M26.3 15.8l-2.6-4.4-1.2 1"/><path fill="#ABD0EF" d="M23.7 11.4l-1.3-.2-.1.3.2.9"/><path fill="#4E5861" d="M14.7 8.9l-.8 1.5 3 2.6"/><path fill="#020304" d="M7.6 0l1.5 3.5 2.2 3.9 2.7 3-1.5-3.6-2.8-3.4"/><path fill="#3F4040" d="M7.6 0l2.5 2.8 2.4 4-2.8-3.4"/><path fill="#111E2E" d="M12.6 10.3l2.5 3.9-1.1-3.8h-.2"/><path fill="#1B2837" d="M11.3 7.4l1.3 2.9 1.4.1"/><path fill="#585D61" d="M14.7 8.9l-2.2-2.1 1.5 3.6"/><path fill="#848687" d="M10.1 2.8l2.2 3.3 2.4 2.8-2.2-2.1"/><path fill="#183553" d="M14 10.4l2.9 2.6-1.8 1.2-1.1-3.8"/><path fill="#8B9DB0" d="M15.1 9.7l1 1.6.8 1.7-1-1.8"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path d="M29.9 19.33c-.04-1.43 0-19.326 0-19.326h-9.04v18.72c0 .728.052 1.61-.33 2.404-.17.357-.407.696-.786 1l3.097 1.683c.11-.4.3-.76.57-1.09l.71.51c-.36.48-.55.97-.55 1.458 0 .55.288.87.64.87h.016c.413 0 .597-.243.84-1.275.276-1.132.68-1.713 1.57-1.713h.014c1 0 1.597.79 1.597 1.913 0 .818-.28 1.59-.855 2.233l-.67-.566c.443-.513.695-1.033.695-1.69 0-.58-.276-.95-.674-.95h-.013c-.38 0-.59.214-.82 1.21-.274 1.14-.61 1.78-1.597 1.78h-.017c-.763 0-1.33-.53-1.5-1.317l-1.825 2.23c.315 1.44.954 1.83.954 1.83l9.99-.007c-1.248-.935-1.883-5.82-2-9.9zM22.58 5.46h2.164c-.375-.26-.704-.636-.704-1.263 0-.91.612-1.438 1.545-1.438h2.578v.92h-2.295c-.627 0-.987.31-.987.86 0 .534.38.91 1.01.91h2.28v.924h-5.59v-.92zm.925 10.224h-.88v-.994h.88v.994zm4.69 2.875l-2.762.9 2.76.91v.82l-4.07 1.31v-.95l2.77-.81-2.785-.898v-.796l2.785-.895-2.77-.826v-.93l4.07 1.32v.836zm-4.07-2.92v-.93h4.04v.925h-4.04zm2.922-2.4H24.92v.51h-.796v-.51h-1.11v-.93h1.11v-1.08h.796v1.085h1.982c.36 0 .505-.185.505-.498 0-.21-.046-.39-.138-.58h.75c.13.23.202.48.202.832 0 .68-.298 1.16-1.185 1.16zm-.88-2.54h-.015c-1.147 0-2.112-.89-2.112-2.108 0-.757.283-1.23.696-1.614l.62.58c-.3.284-.505.582-.505 1.04 0 .674.59 1.17 1.29 1.17h.02c.72 0 1.295-.496 1.295-1.208 0-.438-.2-.76-.497-1.05l.55-.558c.445.398.76.864.76 1.652 0 1.2-.942 2.09-2.09 2.09zm-12.22 9.213l.73 3.614s-.53.064-.707.073c-3.788.19-5.162-2.42-5.162-6.83V.004H0v18.08c0 7.97 3.153 11.906 10.03 11.906 2.196 0 4.032-.38 5.63-1.18l.596 3.19 6.133-7.49-8.45-4.6z" fill="#fff"/><path d="M29.9 83.33c-.04-1.43 0-19.326 0-19.326h-9.04v18.72c0 .728.052 1.61-.33 2.404-.17.357-.407.696-.786 1l3.097 1.683c.11-.4.3-.76.57-1.09l.71.51c-.36.48-.55.97-.55 1.458 0 .55.288.87.64.87h.016c.413 0 .597-.243.84-1.275.276-1.132.68-1.713 1.57-1.713h.014c1 0 1.597.79 1.597 1.913 0 .818-.28 1.59-.855 2.233l-.67-.566c.443-.513.695-1.033.695-1.69 0-.58-.276-.95-.674-.95h-.013c-.38 0-.59.214-.82 1.21-.274 1.14-.61 1.78-1.597 1.78h-.017c-.763 0-1.33-.53-1.5-1.317l-1.825 2.23c.315 1.44.954 1.83.954 1.83l9.99-.007c-1.248-.935-1.883-5.82-2-9.9zm-7.32-13.87h2.164c-.375-.26-.704-.636-.704-1.263 0-.91.612-1.438 1.545-1.438h2.578v.92h-2.295c-.627 0-.987.31-.987.86 0 .534.38.91 1.01.91h2.28v.924h-5.59v-.925zm.925 10.224h-.88v-.994h.88v.994zm4.69 2.875l-2.762.9 2.76.91v.82l-4.07 1.31v-.95l2.77-.81-2.785-.898v-.796l2.785-.895-2.77-.826v-.93l4.07 1.32v.836zm-4.07-2.92v-.93h4.04v.925h-4.04zm2.922-2.4H24.92v.51h-.796v-.51h-1.11v-.93h1.11v-1.08h.796v1.085h1.982c.36 0 .505-.185.505-.498 0-.21-.046-.39-.138-.58h.75c.13.23.202.48.202.832 0 .68-.298 1.16-1.185 1.16zm-.88-2.54h-.015c-1.147 0-2.112-.89-2.112-2.108 0-.757.283-1.23.696-1.614l.62.58c-.3.284-.505.582-.505 1.04 0 .674.59 1.17 1.29 1.17h.02c.72 0 1.295-.496 1.295-1.208 0-.438-.2-.76-.497-1.05l.55-.558c.445.398.76.864.76 1.652 0 1.2-.942 2.09-2.09 2.09zm-12.22 9.213l.73 3.614s-.53.064-.707.073c-3.788.19-5.162-2.42-5.162-6.83V64H0v18.08c0 7.97 3.153 11.905 10.03 11.905 2.196 0 4.032-.378 5.63-1.18l.596 3.19 6.133-7.485-8.45-4.6z" fill="#333"/><path d="M29.9 147.33c-.04-1.43 0-19.326 0-19.326h-9.04v18.72c0 .728.052 1.61-.33 2.404-.17.357-.407.696-.786 1l3.097 1.683c.11-.4.3-.76.57-1.09l.71.51c-.36.48-.55.97-.55 1.458 0 .55.288.87.64.87h.016c.413 0 .597-.243.84-1.275.276-1.132.68-1.713 1.57-1.713h.014c1 0 1.597.79 1.597 1.913 0 .818-.28 1.59-.855 2.233l-.67-.566c.443-.513.695-1.033.695-1.69 0-.58-.276-.95-.674-.95h-.013c-.38 0-.59.214-.82 1.21-.274 1.14-.61 1.78-1.597 1.78h-.017c-.763 0-1.33-.53-1.5-1.317l-1.825 2.23c.315 1.44.954 1.83.954 1.83l9.99-.007c-1.248-.935-1.883-5.82-2-9.9zm-7.32-13.87h2.164c-.375-.26-.704-.636-.704-1.263 0-.91.612-1.438 1.545-1.438h2.578v.92h-2.295c-.627 0-.987.31-.987.86 0 .534.38.91 1.01.91h2.28v.924h-5.59v-.925zm.925 10.224h-.88v-.995h.88v.99zm4.69 2.875l-2.762.9 2.76.91v.82l-4.07 1.31v-.95l2.77-.81-2.785-.898v-.796l2.785-.895-2.77-.826v-.936l4.07 1.324v.835zm-4.07-2.92v-.93h4.04v.925h-4.04zm2.922-2.4H24.92v.51h-.796v-.51h-1.11v-.93h1.11v-1.088h.796v1.086h1.982c.36 0 .505-.185.505-.498 0-.21-.046-.39-.138-.576h.75c.13.23.202.48.202.833 0 .68-.298 1.162-1.185 1.162zm-.88-2.54h-.015c-1.147 0-2.112-.89-2.112-2.108 0-.757.283-1.23.696-1.614l.62.58c-.3.284-.505.582-.505 1.04 0 .674.59 1.17 1.29 1.17h.02c.72 0 1.295-.496 1.295-1.208 0-.438-.2-.76-.497-1.05l.55-.558c.445.398.76.864.76 1.652 0 1.2-.942 2.09-2.09 2.09zm-12.22 9.213l.73 3.614s-.53.064-.707.073c-3.788.19-5.162-2.42-5.162-6.83V128H0v18.08c0 7.97 3.153 11.905 10.03 11.905 2.196 0 4.032-.374 5.63-1.176l.596 3.19 6.133-7.49-8.45-4.6z" fill="#97999A"/><path d="M29.9 211.33c-.04-1.43 0-19.326 0-19.326h-9.04v18.72c0 .728.052 1.61-.33 2.404-.17.357-.407.696-.786 1l3.097 1.683c.11-.4.3-.76.57-1.09l.71.51c-.36.48-.55.97-.55 1.458 0 .55.288.87.64.87h.016c.413 0 .597-.243.84-1.275.276-1.132.68-1.713 1.57-1.713h.014c1 0 1.597.79 1.597 1.913 0 .818-.28 1.59-.855 2.233l-.67-.566c.443-.513.695-1.033.695-1.69 0-.58-.276-.95-.674-.95h-.013c-.38 0-.59.214-.82 1.21-.274 1.14-.61 1.78-1.597 1.78h-.017c-.763 0-1.33-.53-1.5-1.317l-1.825 2.23c.315 1.44.954 1.83.954 1.83l9.99-.007c-1.248-.935-1.883-5.82-2-9.9zm-7.32-13.87h2.164c-.375-.26-.704-.636-.704-1.263 0-.91.612-1.438 1.545-1.438h2.578v.92h-2.295c-.627 0-.987.31-.987.86 0 .534.38.91 1.01.91h2.28v.924h-5.59v-.925zm.925 10.224h-.88v-.995h.88v.99zm4.69 2.875l-2.762.9 2.76.91v.82l-4.07 1.31v-.95l2.77-.81-2.785-.898v-.796l2.785-.895-2.77-.826v-.936l4.07 1.324v.835zm-4.07-2.92v-.93h4.04v.925h-4.04zm2.922-2.4H24.92v.51h-.796v-.51h-1.11v-.93h1.11v-1.088h.796v1.086h1.982c.36 0 .505-.185.505-.498 0-.21-.046-.39-.138-.576h.75c.13.23.202.48.202.833 0 .68-.298 1.162-1.185 1.162zm-.88-2.54h-.015c-1.147 0-2.112-.89-2.112-2.108 0-.757.283-1.23.696-1.614l.62.58c-.3.284-.505.582-.505 1.04 0 .674.59 1.17 1.29 1.17h.02c.72 0 1.295-.496 1.295-1.208 0-.438-.2-.76-.497-1.05l.55-.558c.445.398.76.864.76 1.652 0 1.2-.942 2.09-2.09 2.09zm-12.22 9.213l.73 3.614s-.53.064-.707.073c-3.788.19-5.162-2.42-5.162-6.83V192H0v18.08c0 7.97 3.153 11.905 10.03 11.905 2.196 0 4.032-.374 5.63-1.176l.596 3.19 6.133-7.49-8.45-4.6z" fill="#008FE9"/><path d="M29.9 275.33c-.04-1.43 0-19.326 0-19.326h-9.04v18.72c0 .728.052 1.61-.33 2.404-.17.357-.407.696-.786 1l3.097 1.683c.11-.4.3-.76.57-1.09l.71.51c-.36.48-.55.97-.55 1.458 0 .55.288.87.64.87h.016c.413 0 .597-.243.84-1.275.276-1.132.68-1.713 1.57-1.713h.014c1 0 1.597.79 1.597 1.913 0 .818-.28 1.59-.855 2.233l-.67-.566c.443-.513.695-1.033.695-1.69 0-.58-.276-.95-.674-.95h-.013c-.38 0-.59.214-.82 1.21-.274 1.14-.61 1.78-1.597 1.78h-.017c-.763 0-1.33-.53-1.5-1.317l-1.825 2.23c.315 1.44.954 1.83.954 1.83l9.99-.007c-1.248-.935-1.883-5.82-2-9.9zm-7.32-13.87h2.164c-.375-.26-.704-.636-.704-1.263 0-.91.612-1.438 1.545-1.438h2.578v.92h-2.295c-.627 0-.987.31-.987.86 0 .534.38.91 1.01.91h2.28v.924h-5.59v-.925zm.925 10.224h-.88v-.995h.88v.99zm4.69 2.875l-2.762.9 2.76.91v.82l-4.07 1.31v-.95l2.77-.81-2.785-.898v-.796l2.785-.895-2.77-.826v-.936l4.07 1.324v.835zm-4.07-2.92v-.93h4.04v.925h-4.04zm2.922-2.4H24.92v.51h-.796v-.51h-1.11v-.93h1.11v-1.088h.796v1.086h1.982c.36 0 .505-.185.505-.498 0-.21-.046-.39-.138-.576h.75c.13.23.202.48.202.833 0 .68-.298 1.162-1.185 1.162zm-.88-2.54h-.015c-1.147 0-2.112-.89-2.112-2.108 0-.757.283-1.23.696-1.614l.62.58c-.3.284-.505.582-.505 1.04 0 .674.59 1.17 1.29 1.17h.02c.72 0 1.295-.496 1.295-1.208 0-.438-.2-.76-.497-1.05l.55-.558c.445.398.76.864.76 1.652 0 1.2-.942 2.09-2.09 2.09zm-12.22 9.213l.73 3.614s-.53.064-.707.073c-3.788.19-5.162-2.42-5.162-6.83V256H0v18.08c0 7.97 3.153 11.905 10.03 11.905 2.196 0 4.032-.374 5.63-1.176l.596 3.19 6.133-7.49-8.45-4.6z" fill="#174695"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path d="M30.856 22.435c-.09-.217-.3-.435-.535-.435H26v-8.958c0-.32-.79-1.042-1.11-1.042h-6.52c-.154 0-.196.292-.305.4-.11.11-.065.488-.065.642V22h-5.062c-.234 0-.446.218-.535.435-.09.216-.04.542.126.707l8.69 8.692c.11.11.25.17.41.17.15 0 .3-.06.41-.17l8.69-8.692c.16-.166.21-.49.12-.707zm-17.02-2.832c.11-.108.164-.483.164-.637V10h4.863c.234 0 .446-.214.535-.43.09-.218.04-.54-.126-.706l-8.69-8.69c-.11-.11-.257-.17-.41-.17-.155 0-.302.06-.41.17L1.07 8.864c-.166.167-.215.49-.126.705.09.21.3.43.536.43H6v8.96c0 .32.592 1.03.912 1.03h6.52c.152 0 .295-.29.403-.4z" fill="#fff"/><path d="M30.856 86.435c-.09-.217-.3-.435-.535-.435H26v-8.958c0-.32-.79-1.042-1.11-1.042h-6.52c-.154 0-.196.292-.305.4-.11.11-.065.488-.065.642V86h-5.062c-.234 0-.446.218-.535.435-.09.216-.04.542.126.707l8.69 8.692c.11.11.25.17.41.17.15 0 .3-.06.41-.17l8.69-8.692c.16-.166.21-.49.12-.707zm-17.02-2.832c.11-.108.164-.483.164-.637V74h4.863c.234 0 .446-.214.535-.43.09-.218.04-.54-.126-.706l-8.69-8.69c-.11-.11-.257-.17-.41-.17-.155 0-.302.06-.41.17l-8.692 8.69c-.166.167-.215.49-.126.705.09.21.3.43.536.43H6v8.96c0 .32.592 1.03.912 1.03h6.52c.152 0 .295-.29.403-.4z" fill="#333"/><path d="M30.856 150.435c-.09-.217-.3-.435-.535-.435H26v-8.958c0-.32-.79-1.042-1.11-1.042h-6.52c-.154 0-.196.292-.305.4-.11.11-.065.488-.065.642V150h-5.062c-.234 0-.446.218-.535.435-.09.216-.04.542.126.707l8.69 8.692c.11.11.25.17.41.17.15 0 .3-.06.41-.17l8.69-8.692c.16-.166.21-.49.12-.707zm-17.02-2.832c.11-.11.164-.483.164-.637V138h4.863c.234 0 .446-.214.535-.43.09-.218.04-.54-.126-.706l-8.69-8.69c-.11-.11-.257-.17-.41-.17-.155 0-.302.06-.41.17l-8.692 8.69c-.166.167-.215.49-.126.705.09.21.3.43.536.43H6v8.96c0 .32.592 1.03.912 1.03h6.52c.152 0 .295-.29.403-.4z" fill="#97999A"/><path d="M30.856 214.435c-.09-.217-.3-.435-.535-.435H26v-8.958c0-.32-.79-1.042-1.11-1.042h-6.52c-.154 0-.196.292-.305.4-.11.11-.065.488-.065.642V214h-5.062c-.234 0-.446.218-.535.435-.09.216-.04.542.126.707l8.69 8.692c.11.11.25.17.41.17.15 0 .3-.06.41-.17l8.69-8.692c.16-.166.21-.49.12-.707zm-17.02-2.832c.11-.11.164-.483.164-.637V202h4.863c.234 0 .446-.214.535-.43.09-.218.04-.54-.126-.706l-8.69-8.69c-.11-.11-.257-.17-.41-.17-.155 0-.302.06-.41.17l-8.692 8.69c-.166.167-.215.49-.126.705.09.21.3.43.536.43H6v8.96c0 .32.592 1.03.912 1.03h6.52c.152 0 .295-.29.403-.4z" fill="#008FE9"/><path d="M30.856 278.435c-.09-.217-.3-.435-.535-.435H26v-8.958c0-.32-.79-1.042-1.11-1.042h-6.52c-.154 0-.196.292-.305.4-.11.11-.065.488-.065.642V278h-5.062c-.234 0-.446.218-.535.435-.09.216-.04.542.126.707l8.69 8.692c.11.11.25.17.41.17.15 0 .3-.06.41-.17l8.69-8.692c.16-.166.21-.49.12-.707zm-17.02-2.832c.11-.11.164-.483.164-.637V266h4.863c.234 0 .446-.214.535-.43.09-.218.04-.54-.126-.706l-8.69-8.69c-.11-.11-.257-.17-.41-.17-.155 0-.302.06-.41.17l-8.692 8.69c-.166.167-.215.49-.126.705.09.21.3.43.536.43H6v8.96c0 .32.592 1.03.912 1.03h6.52c.152 0 .295-.29.403-.4z" fill="#1C1F4E"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg baseProfile="tiny" xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M16 0C7.2 0 0 7.2 0 16s7.2 16 16 16 16-7.2 16-16S24.8 0 16 0zm2.1 5l-.4 14h-3.4L14 5h4.1zM16 26.9c-1.5 0-2.4-1-2.4-2.5 0-1.4 1-2.5 2.4-2.5s2.4 1 2.4 2.5c0 1.4-1 2.5-2.4 2.5z"/><path fill="#333" d="M16 64C7.2 64 0 71.2 0 80s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm2.1 5l-.4 14h-3.4L14 69h4.1zM16 90.9c-1.5 0-2.4-1-2.4-2.5 0-1.4 1-2.5 2.4-2.5s2.4 1 2.4 2.5c0 1.4-1 2.5-2.4 2.5z"/><path fill="#97999A" d="M16 128c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm2.1 5l-.4 14h-3.4l-.3-14h4.1zM16 154.9c-1.5 0-2.4-1-2.4-2.5 0-1.4 1-2.5 2.4-2.5s2.4 1 2.4 2.5c0 1.4-1 2.5-2.4 2.5z"/><path fill="#008FE9" d="M16 192c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm2.1 5l-.4 14h-3.4l-.3-14h4.1zM16 218.9c-1.5 0-2.4-1-2.4-2.5 0-1.4 1-2.5 2.4-2.5s2.4 1 2.4 2.5c0 1.4-1 2.5-2.4 2.5z"/><path fill="#1C1F4E" d="M16 256c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm2.1 5l-.4 14h-3.4l-.3-14h4.1zM16 282.9c-1.5 0-2.4-1-2.4-2.5 0-1.4 1-2.5 2.4-2.5s2.4 1 2.4 2.5c0 1.4-1 2.5-2.4 2.5z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path d="M18.45 21l.5-21h-5.9l.503 21zm-2.473 3.79c-2.012 0-3.477 1.498-3.477 3.606 0 2.11 1.327 3.608 3.477 3.608 2.06 0 3.523-1.5 3.523-3.608s-1.463-3.607-3.523-3.607z" fill="#fff"/><path d="M18.45 85l.5-21h-5.9l.503 21zm-2.473 3.79c-2.012 0-3.477 1.498-3.477 3.606 0 2.11 1.327 3.608 3.477 3.608 2.06 0 3.523-1.5 3.523-3.608s-1.463-3.607-3.523-3.607z" fill="#333"/><path d="M18.45 149l.5-21h-5.9l.503 21zm-2.473 3.79c-2.012 0-3.477 1.498-3.477 3.606 0 2.11 1.327 3.608 3.477 3.608 2.06 0 3.523-1.5 3.523-3.608s-1.463-3.607-3.523-3.607z" fill="#97999A"/><path d="M18.45 213l.5-21h-5.9l.503 21zm-2.473 3.79c-2.012 0-3.477 1.498-3.477 3.606 0 2.11 1.327 3.608 3.477 3.608 2.06 0 3.523-1.5 3.523-3.608s-1.463-3.607-3.523-3.607z" fill="#008FE9"/><path d="M18.45 277l.5-21h-5.9l.503 21zm-2.473 3.79c-2.012 0-3.477 1.498-3.477 3.606 0 2.11 1.327 3.608 3.477 3.608 2.06 0 3.523-1.5 3.523-3.608s-1.463-3.607-3.523-3.607z" fill="#1C1F4E"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><g fill="#FFF"><path d="M30.58 11.44c-.56 0-1.12-.22-1.54-.66-3.33-3.49-7.81-5.41-12.61-5.41-4.78 0-9.25 1.91-12.58 5.37-.81.85-2.16.87-3 .06-.84-.8-.86-2.15-.05-3 4.14-4.3 9.69-6.67 15.64-6.67 5.97 0 11.54 2.39 15.68 6.72.81.85.78 2.19-.07 3-.41.4-.94.59-1.47.59zm-4 5.49c-.55 0-1.09-.21-1.51-.63-2.3-2.32-5.37-3.59-8.63-3.59-3.25 0-6.3 1.27-8.6 3.56-.83.83-2.17.83-3 0-.83-.83-.83-2.18 0-3 3.1-3.1 7.22-4.81 11.6-4.81 4.4 0 8.54 1.72 11.65 4.85.83.83.82 2.18-.01 3-.42.41-.96.62-1.5.62zm-4.46 5.92c-.58 0-1.16-.23-1.57-.7-1.07-1.18-2.53-1.83-4.11-1.83-1.57 0-3.02.64-4.08 1.8-.79.86-2.14.92-3 .13s-.92-2.14-.13-3c1.86-2.02 4.49-3.18 7.21-3.18 2.75 0 5.4 1.18 7.26 3.22.79.87.72 2.21-.15 3-.41.38-.92.56-1.43.56z"/><circle cx="16.59" cy="27.38" r="3.49"/></g><g fill="#333"><path d="M30.58 75.44c-.56 0-1.12-.22-1.54-.66-3.33-3.49-7.81-5.41-12.61-5.41-4.78 0-9.25 1.91-12.58 5.37-.81.85-2.16.87-3 .06-.85-.81-.87-2.16-.06-3 4.14-4.3 9.69-6.67 15.64-6.67 5.97 0 11.54 2.39 15.68 6.72.81.85.78 2.19-.07 3-.4.4-.93.59-1.46.59zm-4 5.49c-.55 0-1.09-.21-1.51-.63-2.3-2.32-5.37-3.59-8.63-3.59-3.25 0-6.3 1.27-8.6 3.56-.83.83-2.17.83-3 0-.83-.83-.83-2.18 0-3 3.1-3.1 7.22-4.81 11.6-4.81 4.4 0 8.54 1.72 11.65 4.85.83.83.82 2.18-.01 3-.42.41-.96.62-1.5.62zm-4.46 5.92c-.58 0-1.16-.23-1.57-.7-1.07-1.18-2.53-1.83-4.11-1.83-1.57 0-3.02.64-4.08 1.8-.79.86-2.14.92-3 .13s-.92-2.14-.13-3c1.86-2.02 4.49-3.18 7.21-3.18 2.75 0 5.4 1.18 7.26 3.22.79.87.72 2.21-.15 3-.41.38-.92.56-1.43.56z"/><circle cx="16.59" cy="91.38" r="3.49"/></g><g fill="#97999A"><path d="M30.58 139.44c-.56 0-1.12-.22-1.54-.66-3.33-3.49-7.81-5.41-12.61-5.41-4.78 0-9.25 1.91-12.58 5.37-.81.85-2.16.87-3 .06-.85-.81-.87-2.16-.06-3 4.14-4.3 9.69-6.67 15.64-6.67 5.97 0 11.54 2.39 15.68 6.72.81.85.78 2.19-.07 3-.4.4-.93.59-1.46.59zm-4 5.49c-.55 0-1.09-.21-1.51-.63-2.3-2.32-5.37-3.59-8.63-3.59-3.25 0-6.3 1.27-8.6 3.56-.83.83-2.17.83-3 0-.83-.83-.83-2.18 0-3 3.1-3.1 7.22-4.81 11.6-4.81 4.4 0 8.54 1.72 11.65 4.85.83.83.82 2.18-.01 3-.42.41-.96.62-1.5.62zm-4.46 5.92c-.58 0-1.16-.23-1.57-.7-1.07-1.18-2.53-1.83-4.11-1.83-1.57 0-3.02.64-4.08 1.8-.79.86-2.14.92-3 .13s-.92-2.14-.13-3c1.86-2.02 4.49-3.18 7.21-3.18 2.75 0 5.4 1.18 7.26 3.22.79.87.72 2.21-.15 3-.41.38-.92.56-1.43.56z"/><circle cx="16.59" cy="155.38" r="3.49"/></g><g fill="#008FE9"><path d="M30.58 203.44c-.56 0-1.12-.22-1.54-.66-3.33-3.49-7.81-5.41-12.61-5.41-4.78 0-9.25 1.91-12.58 5.37-.81.85-2.16.87-3 .06-.85-.81-.87-2.16-.06-3 4.14-4.3 9.69-6.67 15.64-6.67 5.97 0 11.54 2.39 15.68 6.72.81.85.78 2.19-.07 3-.4.4-.93.59-1.46.59zm-4 5.49c-.55 0-1.09-.21-1.51-.63-2.3-2.32-5.37-3.59-8.63-3.59-3.25 0-6.3 1.27-8.6 3.56-.83.83-2.17.83-3 0-.83-.83-.83-2.18 0-3 3.1-3.1 7.22-4.81 11.6-4.81 4.4 0 8.54 1.72 11.65 4.85.83.83.82 2.18-.01 3-.42.41-.96.62-1.5.62zm-4.46 5.92c-.58 0-1.16-.23-1.57-.7-1.07-1.18-2.53-1.83-4.11-1.83-1.57 0-3.02.64-4.08 1.8-.79.86-2.14.92-3 .13s-.92-2.14-.13-3c1.86-2.02 4.49-3.18 7.21-3.18 2.75 0 5.4 1.18 7.26 3.22.79.87.72 2.21-.15 3-.41.38-.92.56-1.43.56z"/><circle cx="16.59" cy="219.38" r="3.49"/></g><g fill="#1C1F4E"><path d="M30.58 267.44c-.56 0-1.12-.22-1.54-.66-3.33-3.49-7.81-5.41-12.61-5.41-4.78 0-9.25 1.91-12.58 5.37-.81.85-2.16.87-3 .06-.85-.81-.87-2.16-.06-3 4.14-4.3 9.69-6.67 15.64-6.67 5.97 0 11.54 2.39 15.68 6.72.81.85.78 2.19-.07 3-.4.4-.93.59-1.46.59zm-4 5.49c-.55 0-1.09-.21-1.51-.63-2.3-2.32-5.37-3.59-8.63-3.59-3.25 0-6.3 1.27-8.6 3.56-.83.83-2.17.83-3 0-.83-.83-.83-2.18 0-3 3.1-3.1 7.22-4.81 11.6-4.81 4.4 0 8.54 1.72 11.65 4.85.83.83.82 2.18-.01 3-.42.41-.96.62-1.5.62zm-4.46 5.92c-.58 0-1.16-.23-1.57-.7-1.07-1.18-2.53-1.83-4.11-1.83-1.57 0-3.02.64-4.08 1.8-.79.86-2.14.92-3 .13s-.92-2.14-.13-3c1.86-2.02 4.49-3.18 7.21-3.18 2.75 0 5.4 1.18 7.26 3.22.79.87.72 2.21-.15 3-.41.38-.92.56-1.43.56z"/><circle cx="16.59" cy="283.38" r="3.49"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path d="M5.715 21.8c.407-.027.82-.047 1.24-.047 3.33 0 6.397.938 8.002 2.45.007.006.017.008.025.015.11.1.232.185.372.246.01.004.02.005.03.01.016.006.032.008.05.014.152.055.31.09.467.09.16 0 .32-.034.47-.09l.05-.016c.01-.004.02-.005.03-.01.14-.06.26-.144.37-.242.01-.007.02-.01.03-.017 1.61-1.51 4.67-2.45 8-2.45.42 0 .84.02 1.24.048.38.02.98-.1 1.26-.36s.66-.62.66-1V3.58c0-.727-.78-1.32-1.5-1.377-.47-.03-1.06-.05-1.542-.05-3.516 0-6.81.9-9 2.44-2.186-1.54-5.452-2.44-8.97-2.44-.49 0-1.1.028-1.57.06-.72.05-1.415.65-1.415 1.374v16.85c0 .38.28.746.56 1.007.278.26.77.386 1.156.366zM17 6.98c2-1.29 5-2.076 8-2.082V19c-3 .005-6 .588-8 1.617V6.98zM7 4.898c3 .007 6 .794 8 2.082v13.636c-2-1.03-5-1.612-8-1.617V4.89zm23.5-.324c-.803 0-1.5.65-1.5 1.455v17.96c-1-.02-3.488-.03-3.644-.03-3.717 0-7.14.95-9.454 2.574-2.312-1.628-5.64-2.578-9.358-2.578C6.39 23.97 4 23.98 3 24V6.03c0-.804-.697-1.456-1.5-1.456S0 5.226 0 6.03v19.45c0 .402.12.787.414 1.062.294.276.67.415 1.07.39.4-.027 4.225-.053 4.977-.053 3.52 0 6.76.99 8.45 2.59.01.01.03.01.04.02.13.11.27.2.42.26.02 0 .03.003.05.01.16.06.325.09.494.09.17 0 .335-.034.495-.092l.043-.01c.15-.06.29-.154.42-.266.01-.01.027-.012.038-.023 1.698-1.6 4.94-2.59 8.457-2.59.75 0 4.59.026 4.99.052.413.03.85-.11 1.145-.388.296-.278.513-.664.513-1.068V6.03c0-.804-.696-1.456-1.5-1.456z" fill="#fff"/><path d="M5.715 85.8c.407-.027.82-.047 1.24-.047 3.33 0 6.397.938 8.002 2.45.007.006.017.008.025.015.11.1.232.185.372.246.01.004.02.005.03.01.016.006.032.008.05.014.152.055.31.09.467.09.16 0 .32-.034.47-.09l.05-.016c.01-.004.02-.005.03-.01.14-.06.26-.144.37-.242.01-.007.02-.01.03-.017 1.61-1.51 4.67-2.45 8-2.45.42 0 .84.02 1.24.048.38.02.98-.1 1.26-.36s.66-.62.66-1V67.58c0-.723-.78-1.32-1.5-1.373-.47-.03-1.06-.053-1.542-.053-3.516 0-6.81.9-9 2.44-2.186-1.54-5.452-2.44-8.97-2.44-.49 0-1.1.024-1.57.057-.72.05-1.414.65-1.414 1.376v16.85c0 .383.28.747.56 1.008.278.26.77.388 1.156.368zM17 70.98c2-1.29 5-2.076 8-2.082V83c-3 .005-6 .588-8 1.617V70.98zM7 68.898c3 .007 6 .794 8 2.082v13.636c-2-1.03-5-1.612-8-1.617V68.89zm23.5-.324c-.803 0-1.5.65-1.5 1.455v17.96c-1-.02-3.488-.03-3.644-.03-3.717 0-7.14.95-9.454 2.574-2.312-1.628-5.64-2.578-9.358-2.578C6.39 87.97 4 87.98 3 88V70.03c0-.804-.697-1.456-1.5-1.456S0 69.224 0 70.03v19.45c0 .402.12.787.414 1.062.294.276.67.415 1.07.39.4-.027 4.225-.053 4.977-.053 3.52 0 6.76.99 8.45 2.59.01.01.03.01.04.02.13.11.27.2.42.26.02 0 .03.003.05.01.16.06.325.09.494.09.17 0 .335-.034.495-.092l.043-.01c.15-.06.29-.154.42-.266.01-.01.027-.012.038-.023 1.698-1.6 4.94-2.59 8.457-2.59.75 0 4.59.026 4.99.052.413.03.85-.11 1.145-.388.296-.278.513-.664.513-1.068V70.03c0-.804-.696-1.456-1.5-1.456z" fill="#333"/><path d="M5.715 149.8c.407-.027.82-.047 1.24-.047 3.33 0 6.397.938 8.002 2.45.007.006.017.008.025.015.11.1.232.185.372.246.01.004.02.005.03.01.016.006.032.008.05.014.152.055.31.09.467.09.16 0 .32-.034.47-.09l.05-.016c.01-.004.02-.005.03-.01.14-.06.26-.144.37-.242.01-.007.02-.01.03-.017 1.61-1.51 4.67-2.45 8-2.45.42 0 .84.02 1.24.048.38.02.98-.1 1.26-.36s.66-.62.66-1v-16.86c0-.722-.78-1.32-1.5-1.372-.47-.032-1.06-.056-1.543-.056-3.517 0-6.812.9-9 2.44-2.187-1.54-5.453-2.44-8.97-2.44-.49 0-1.1.024-1.57.057-.72.05-1.414.65-1.414 1.373v16.855c0 .384.28.748.56 1.01.278.26.77.385 1.156.365zM17 134.98c2-1.29 5-2.076 8-2.082V147c-3 .005-6 .588-8 1.617V134.98zm-10-2.082c3 .007 6 .794 8 2.082v13.636c-2-1.03-5-1.612-8-1.617v-14.11zm23.5-.324c-.803 0-1.5.65-1.5 1.455v17.96c-1-.02-3.488-.03-3.644-.03-3.717 0-7.14.95-9.454 2.575-2.312-1.627-5.64-2.577-9.358-2.577-.155 0-2.545.01-3.545.03v-17.97c0-.803-.7-1.455-1.5-1.455-.81 0-1.5.65-1.5 1.454v19.45c0 .4.12.787.41 1.06.29.278.67.417 1.07.39.4-.025 4.22-.05 4.97-.05 3.514 0 6.75.992 8.444 2.59.01.01.023.014.035.024.127.115.265.206.417.267.015.008.03.01.044.016.16.06.326.094.495.094.17 0 .334-.034.494-.09l.045-.015c.15-.06.29-.156.42-.268.01-.01.027-.012.038-.023 1.695-1.597 4.936-2.59 8.454-2.59.75 0 4.59.027 4.99.05.412.036.85-.11 1.144-.383.296-.274.513-.66.513-1.063v-19.45c0-.803-.697-1.455-1.5-1.455z" fill="#97999A"/><path d="M5.715 213.8c.407-.027.82-.047 1.24-.047 3.33 0 6.397.938 8.002 2.45.007.006.017.008.025.015.11.1.232.185.372.246.01.004.02.005.03.01.016.006.032.008.05.014.152.055.31.09.467.09.16 0 .32-.034.47-.09l.05-.016c.01-.004.02-.005.03-.01.14-.06.26-.144.37-.242.01-.007.02-.01.03-.017 1.61-1.51 4.67-2.45 8-2.45.42 0 .84.02 1.24.048.38.02.98-.1 1.26-.36s.66-.62.66-1v-16.86c0-.722-.78-1.32-1.5-1.372-.47-.032-1.06-.056-1.543-.056-3.517 0-6.812.9-9 2.44-2.187-1.54-5.453-2.44-8.97-2.44-.49 0-1.1.024-1.57.057-.72.05-1.414.65-1.414 1.373v16.855c0 .384.28.748.56 1.01.278.26.77.385 1.156.365zM17 198.98c2-1.29 5-2.076 8-2.082V211c-3 .005-6 .588-8 1.617V198.98zm-10-2.082c3 .007 6 .794 8 2.082v13.636c-2-1.03-5-1.612-8-1.617v-14.11zm23.5-.324c-.803 0-1.5.65-1.5 1.455v17.96c-1-.02-3.488-.03-3.644-.03-3.717 0-7.14.95-9.454 2.575-2.312-1.627-5.64-2.577-9.358-2.577-.155 0-2.545.01-3.545.03v-17.97c0-.803-.7-1.455-1.5-1.455-.81 0-1.5.65-1.5 1.454v19.45c0 .4.12.787.41 1.06.29.278.67.417 1.07.39.4-.025 4.22-.05 4.97-.05 3.514 0 6.75.992 8.444 2.59.01.01.023.014.035.024.127.115.265.206.417.267.015.008.03.01.044.016.16.06.326.094.495.094.17 0 .334-.034.494-.09l.045-.015c.15-.06.29-.156.42-.268.01-.01.027-.012.038-.023 1.695-1.597 4.936-2.59 8.454-2.59.75 0 4.59.027 4.99.05.412.036.85-.11 1.144-.383.296-.274.513-.66.513-1.063v-19.45c0-.803-.697-1.455-1.5-1.455z" fill="#008FE9"/><path d="M5.715 277.8c.407-.027.82-.047 1.24-.047 3.33 0 6.397.938 8.002 2.45.007.006.017.008.025.015.11.1.232.185.372.246.01.004.02.005.03.01.016.006.032.008.05.014.152.055.31.09.467.09.16 0 .32-.034.47-.09l.05-.016c.01-.004.02-.005.03-.01.14-.06.26-.144.37-.242.01-.007.02-.01.03-.017 1.61-1.51 4.67-2.45 8-2.45.42 0 .84.02 1.24.048.38.02.98-.1 1.26-.36s.66-.62.66-1v-16.86c0-.722-.78-1.32-1.5-1.372-.47-.032-1.06-.056-1.543-.056-3.517 0-6.812.9-9 2.44-2.187-1.54-5.453-2.44-8.97-2.44-.49 0-1.1.024-1.57.057-.72.05-1.414.65-1.414 1.373v16.855c0 .384.28.748.56 1.01.278.26.77.385 1.156.365zM17 262.98c2-1.29 5-2.076 8-2.082V275c-3 .005-6 .588-8 1.617V262.98zm-10-2.082c3 .007 6 .794 8 2.082v13.636c-2-1.03-5-1.612-8-1.617v-14.11zm23.5-.324c-.803 0-1.5.65-1.5 1.455v17.96c-1-.02-3.488-.03-3.644-.03-3.717 0-7.14.95-9.454 2.575-2.312-1.627-5.64-2.577-9.358-2.577-.155 0-2.545.01-3.545.03v-17.97c0-.803-.7-1.455-1.5-1.455-.81 0-1.5.65-1.5 1.454v19.45c0 .4.12.787.41 1.06.29.278.67.417 1.07.39.4-.025 4.22-.05 4.97-.05 3.514 0 6.75.992 8.444 2.59.01.01.023.014.035.024.127.115.265.206.417.267.015.008.03.01.044.016.16.06.326.094.495.094.17 0 .334-.034.494-.09l.045-.015c.15-.06.29-.156.42-.268.01-.01.027-.012.038-.023 1.695-1.597 4.936-2.59 8.454-2.59.75 0 4.59.027 4.99.05.412.036.85-.11 1.144-.383.296-.274.513-.66.513-1.063v-19.45c0-.803-.697-1.455-1.5-1.455z" fill="#1C1F4E"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M-.088 14.937L-.1 4.535l12.8-1.738v12.14H-.088zm14.922-12.45L31.896.004v14.933H14.834V2.487zM31.9 17.07l-.004 14.934-17.062-2.4V17.07H31.9zM12.7 29.333L-.09 27.58V17.07H12.7v12.262z"/><path fill="#333" d="M-.088 78.937L-.1 68.535l12.8-1.738v12.14H-.088zm14.922-12.45l17.062-2.483v14.933H14.834v-12.45zM31.9 81.07l-.004 14.934-17.062-2.4V81.07H31.9zM12.7 93.333L-.09 91.58V81.07H12.7v12.262z"/><path fill="#97999A" d="M-.088 142.937L-.1 132.535l12.8-1.738v12.14H-.088zm14.922-12.45l17.062-2.483v14.933H14.834v-12.45zM31.9 145.07l-.004 14.934-17.062-2.4V145.07H31.9zm-19.2 12.262L-.09 155.58v-10.51H12.7v12.262z"/><path fill="#008FE9" d="M-.088 206.937L-.1 196.535l12.8-1.738v12.14H-.088zm14.922-12.45l17.062-2.483v14.933H14.834v-12.45zM31.9 209.07l-.004 14.934-17.062-2.4V209.07H31.9zm-19.2 12.262L-.09 219.58v-10.51H12.7v12.262z"/><path fill="#1C1F4E" d="M-.088 270.937L-.1 260.535l12.8-1.738v12.14H-.088zm14.922-12.45l17.062-2.483v14.933H14.834v-12.45zM31.9 273.07l-.004 14.934-17.062-2.4V273.07H31.9zm-19.2 12.262L-.09 283.58v-10.51H12.7v12.262z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><g fill="#fff"><path d="M16 .004c-8.836 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm0 29c-7.16 0-12.985-5.832-12.985-13s5.825-13 12.985-13c7.16 0 12.985 5.832 12.985 13s-5.825 13-12.985 13z"/><ellipse cx="10.53" cy="12.77" rx="2.513" ry="2.5"/><ellipse cx="21.47" cy="12.77" rx="2.513" ry="2.5"/><path d="M20.274 19.442l-9.095 2.016c-.68.15-1.11.82-.96 1.493.13.58.63.98 1.22.98.09 0 .18-.01.274-.03l9.095-2.01c.677-.15 1.104-.82.955-1.49-.15-.66-.81-1.093-1.5-.95z"/></g><g fill="#333"><path d="M16 64.004c-8.836 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm0 29c-7.16 0-12.985-5.832-12.985-13s5.825-13 12.985-13c7.16 0 12.985 5.832 12.985 13s-5.825 13-12.985 13z"/><ellipse cx="10.53" cy="76.77" rx="2.513" ry="2.5"/><ellipse cx="21.47" cy="76.77" rx="2.513" ry="2.5"/><path d="M20.274 83.442l-9.095 2.016c-.68.15-1.11.82-.96 1.493.13.58.63.98 1.22.98.09 0 .18-.01.274-.03l9.095-2.01c.677-.15 1.104-.82.955-1.49-.15-.66-.81-1.093-1.5-.95z"/></g><g fill="#97999A"><path d="M16 128.004c-8.836 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm0 29c-7.16 0-12.985-5.832-12.985-13s5.825-13 12.985-13c7.16 0 12.985 5.832 12.985 13s-5.825 13-12.985 13z"/><ellipse cx="10.53" cy="140.77" rx="2.513" ry="2.5"/><ellipse cx="21.47" cy="140.77" rx="2.513" ry="2.5"/><path d="M20.274 147.442l-9.095 2.016c-.68.15-1.11.82-.96 1.493.13.58.63.98 1.22.98.09 0 .18-.01.274-.03l9.095-2.01c.677-.15 1.104-.82.955-1.49-.15-.66-.81-1.093-1.5-.95z"/></g><g fill="#008FE9"><path d="M16 192.004c-8.836 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm0 29c-7.16 0-12.985-5.832-12.985-13s5.825-13 12.985-13c7.16 0 12.985 5.832 12.985 13s-5.825 13-12.985 13z"/><ellipse cx="10.53" cy="204.77" rx="2.513" ry="2.5"/><ellipse cx="21.47" cy="204.77" rx="2.513" ry="2.5"/><path d="M20.274 211.442l-9.095 2.016c-.68.15-1.11.82-.96 1.493.13.58.63.98 1.22.98.09 0 .18-.01.274-.03l9.095-2.01c.677-.15 1.104-.82.955-1.49-.15-.66-.81-1.093-1.5-.95z"/></g><g fill="#1C1F4E"><path d="M16 256.004c-8.836 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm0 29c-7.16 0-12.985-5.832-12.985-13s5.825-13 12.985-13c7.16 0 12.985 5.832 12.985 13s-5.825 13-12.985 13z"/><ellipse cx="10.53" cy="268.77" rx="2.513" ry="2.5"/><ellipse cx="21.47" cy="268.77" rx="2.513" ry="2.5"/><path d="M20.274 275.442l-9.095 2.016c-.68.15-1.11.82-.96 1.493.13.58.63.98 1.22.98.09 0 .18-.01.274-.03l9.095-2.01c.677-.15 1.104-.82.955-1.49-.15-.66-.81-1.093-1.5-.95z"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M16 .004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.164-16-16-16zm0 29c-4.083 0-7.727-1.9-10.11-4.86-.112-.578-.002-1.133.298-1.265.377-.17.167-.71.167-1.09s.25-.84.42-1.34-.713-1.208-1.132-1.583-1.173-1.126-1.13-1.626c.04-.5-.504-1.166-.713-1.5-.127-.2-.39-1.21-.58-1.98.32-1.84 1.016-3.556 2.026-5.047.386-.27.25-.26 1.088-.69.974-.5 1.54-.314 1.947-.5.41-.19.79-1.158 1.1-1.564.32-.406 1.92-1.5 1.51-.906-.41.594-.44 1.375-.15 1.25.288-.125.57-.344 1.29-.56.72-.22 1.57-.19 1.95-.564.377-.372 1.633-.903 2.23-.903s2.105-.47 2.356-.376c.25.096 1.13.19.817.75-.314.564-.754.877-1.602.97-.845.09-1.002.12-1.505.78-.5.653-.312 1.53-.532 1.97-.22.434-1.632.62-2.135.62s-.91.063-1.067.25c-.156.19-.91 1.25-.66 1.376s.943.375 1.32.31c.377-.06 2.356-.967 2.89-1.154.534-.187 1.947.5 2.576.94.63.44 1.07.5 1.634.53.566.03.315.626.315 1.126s-.03.53-1.005.593c-.972.06-1.192.188-1.663.344-.47.156-.788.094-1.417-.22-.63-.31-1.35-.53-2.42-.593s-1.54.44-1.915.72c-.38.28-.66.346-1.038.596-.38.25-.976.844-.976 1.094s.25.062.03.75c-.22.69-.185 1 .286 1.75.47.75.347 1.312 1.82 1.375 1.48.062 1.605-.156 2.108-.125.505.03.316.25.6.374.283.124.69.03.69.53s.347 1.19.692 1.97c.346.78-.314 1.905-.126 2.31.19.407.66 1 1.004 1.78.346.783 1.005.72 1.73.314 1.286-.75 3.013-3.657 3.013-4.407s.282-1.69 1.13-2.47c.85-.78 1.005-2.653 1.005-2.653.503-.813.534-2.876.534-2.97 0-.094 0-.594.563-.688.562-.096 1.41.47 1.662 1.44.25.97.817 1.47.817.904s-.313-3.53.127-2.97c.148.185.43.485.74.752.25 1.004.397 2.046.397 3.124 0 7.17-5.825 13-12.985 13z"/><path fill="#333" d="M16 64.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.164-16-16-16zm0 29c-4.083 0-7.727-1.9-10.11-4.86-.112-.578-.002-1.133.298-1.265.377-.17.167-.71.167-1.09s.25-.84.42-1.34-.713-1.208-1.132-1.583-1.173-1.126-1.13-1.626c.04-.5-.504-1.166-.713-1.5-.127-.2-.39-1.21-.58-1.98.32-1.84 1.016-3.556 2.026-5.047.386-.27.25-.26 1.088-.69.974-.5 1.54-.314 1.947-.5.41-.19.79-1.158 1.1-1.564.32-.406 1.92-1.5 1.51-.906-.41.594-.44 1.375-.15 1.25.288-.125.57-.344 1.29-.56.72-.22 1.57-.19 1.95-.564.377-.372 1.633-.903 2.23-.903s2.105-.47 2.356-.376c.25.096 1.13.19.817.75-.314.564-.754.877-1.602.97-.846.095-1.003.126-1.506.78-.503.658-.314 1.53-.534 1.97-.22.44-1.633.626-2.136.626s-.91.06-1.07.25c-.154.19-.91 1.25-.66 1.374s.945.375 1.32.312c.38-.063 2.358-.97 2.89-1.157.536-.187 1.95.5 2.578.94.627.44 1.067.5 1.632.53.56.032.31.626.31 1.126s-.03.53-1.005.6c-.976.062-1.196.19-1.667.344-.47.154-.785.092-1.414-.22-.63-.31-1.353-.53-2.42-.595s-1.54.437-1.917.72c-.378.28-.66.342-1.037.592-.38.25-.975.843-.975 1.093s.25.064.03.75-.186 1 .285 1.75c.47.75.345 1.314 1.82 1.377 1.477.06 1.603-.158 2.106-.127.504.03.315.25.598.376.28.124.69.03.69.53s.345 1.188.69 1.97c.346.78-.314 1.905-.126 2.31.188.407.66 1 1.005 1.78.345.78 1.004.72 1.727.31 1.29-.75 3.016-3.653 3.016-4.403s.28-1.69 1.13-2.47c.85-.78 1.003-2.657 1.003-2.657.503-.81.534-2.875.534-2.97 0-.093 0-.593.564-.687.57-.093 1.418.47 1.67 1.44.25.97.82 1.47.82.906s-.316-3.53.124-2.97c.144.186.426.486.74.753.246 1.002.393 2.044.393 3.122 0 7.17-5.825 13-12.985 13z"/><path fill="#97999A" d="M16 128.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.164-16-16-16zm0 29c-4.083 0-7.727-1.9-10.11-4.86-.112-.578-.002-1.133.298-1.265.377-.17.167-.71.167-1.09s.25-.84.42-1.34-.713-1.208-1.132-1.583-1.173-1.126-1.13-1.626c.04-.5-.504-1.166-.713-1.5-.127-.2-.39-1.21-.58-1.98.32-1.84 1.016-3.556 2.026-5.047.386-.27.25-.26 1.088-.69.974-.5 1.54-.314 1.947-.5.41-.19.79-1.158 1.1-1.564.32-.406 1.92-1.5 1.51-.906-.41.594-.44 1.375-.15 1.25.288-.125.57-.344 1.29-.56.72-.22 1.57-.19 1.95-.564.377-.372 1.633-.903 2.23-.903s2.105-.47 2.356-.376c.25.096 1.13.19.817.75-.314.564-.754.877-1.602.97-.846.095-1.003.126-1.506.78-.503.658-.314 1.53-.534 1.97-.22.44-1.633.626-2.136.626s-.91.06-1.07.25c-.154.19-.91 1.25-.66 1.374s.945.375 1.32.312c.38-.063 2.358-.97 2.89-1.157.536-.187 1.95.5 2.578.94.627.44 1.067.5 1.632.53.56.032.31.626.31 1.126s-.03.53-1.005.6c-.976.062-1.196.19-1.667.344-.47.154-.785.092-1.414-.22-.63-.31-1.353-.53-2.42-.595s-1.54.437-1.917.72c-.378.28-.66.342-1.037.592-.38.25-.975.843-.975 1.093s.25.064.03.75-.186 1 .285 1.75c.47.75.345 1.314 1.82 1.377 1.477.06 1.603-.158 2.106-.127.504.03.315.25.598.376.28.124.69.03.69.53s.345 1.188.69 1.97c.346.78-.314 1.905-.126 2.31.188.407.66 1 1.005 1.78.345.78 1.004.72 1.727.31 1.29-.75 3.016-3.653 3.016-4.403s.28-1.69 1.13-2.47c.85-.78 1.003-2.657 1.003-2.657.503-.81.534-2.875.534-2.97 0-.093 0-.593.564-.687.57-.093 1.418.47 1.67 1.44.25.97.82 1.47.82.906s-.316-3.53.124-2.97c.144.186.426.486.74.753.246 1.002.393 2.044.393 3.122 0 7.17-5.825 13-12.985 13z"/><path fill="#008FE9" d="M16 192.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.164-16-16-16zm0 29c-4.083 0-7.727-1.9-10.11-4.86-.112-.578-.002-1.133.298-1.265.377-.17.167-.71.167-1.09s.25-.84.42-1.34-.713-1.208-1.132-1.583-1.173-1.126-1.13-1.626c.04-.5-.504-1.166-.713-1.5-.127-.2-.39-1.21-.58-1.98.32-1.84 1.016-3.556 2.026-5.047.386-.27.25-.26 1.088-.69.974-.5 1.54-.314 1.947-.5.41-.19.79-1.158 1.1-1.564.32-.406 1.92-1.5 1.51-.906-.41.594-.44 1.375-.15 1.25.288-.125.57-.344 1.29-.56.72-.22 1.57-.19 1.95-.564.377-.372 1.633-.903 2.23-.903s2.105-.47 2.356-.376c.25.096 1.13.19.817.75-.314.564-.754.877-1.602.97-.846.095-1.003.126-1.506.78-.503.658-.314 1.53-.534 1.97-.22.44-1.633.626-2.136.626s-.91.06-1.07.25c-.154.19-.91 1.25-.66 1.374s.945.375 1.32.312c.38-.063 2.358-.97 2.89-1.157.536-.187 1.95.5 2.578.94.627.44 1.067.5 1.632.53.56.032.31.626.31 1.126s-.03.53-1.005.6c-.976.062-1.196.19-1.667.344-.47.154-.785.092-1.414-.22-.63-.31-1.353-.53-2.42-.595s-1.54.437-1.917.72c-.378.28-.66.342-1.037.592-.38.25-.975.843-.975 1.093s.25.064.03.75-.186 1 .285 1.75c.47.75.345 1.314 1.82 1.377 1.477.06 1.603-.158 2.106-.127.504.03.315.25.598.376.28.124.69.03.69.53s.345 1.188.69 1.97c.346.78-.314 1.905-.126 2.31.188.407.66 1 1.005 1.78.345.78 1.004.72 1.727.31 1.29-.75 3.016-3.653 3.016-4.403s.28-1.69 1.13-2.47c.85-.78 1.003-2.657 1.003-2.657.503-.81.534-2.875.534-2.97 0-.093 0-.593.564-.687.57-.093 1.418.47 1.67 1.44.25.97.82 1.47.82.906s-.316-3.53.124-2.97c.144.186.426.486.74.753.246 1.002.393 2.044.393 3.122 0 7.17-5.825 13-12.985 13z"/><path fill="#1C1F4E" d="M16 256.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.164-16-16-16zm0 29c-4.083 0-7.727-1.9-10.11-4.86-.112-.578-.002-1.133.298-1.265.377-.17.167-.71.167-1.09s.25-.84.42-1.34-.713-1.208-1.132-1.583-1.173-1.126-1.13-1.626c.04-.5-.504-1.166-.713-1.5-.127-.2-.39-1.21-.58-1.98.32-1.84 1.016-3.556 2.026-5.047.386-.27.25-.26 1.088-.69.974-.5 1.54-.314 1.947-.5.41-.19.79-1.158 1.1-1.564.32-.406 1.92-1.5 1.51-.906-.41.594-.44 1.375-.15 1.25.288-.125.57-.344 1.29-.56.72-.22 1.57-.19 1.95-.564.377-.372 1.633-.903 2.23-.903s2.105-.47 2.356-.376c.25.096 1.13.19.817.75-.314.564-.754.877-1.602.97-.846.095-1.003.126-1.506.78-.503.658-.314 1.53-.534 1.97-.22.44-1.633.626-2.136.626s-.91.06-1.07.25c-.154.19-.91 1.25-.66 1.374s.945.375 1.32.312c.38-.063 2.358-.97 2.89-1.157.536-.187 1.95.5 2.578.94.627.44 1.067.5 1.632.53.56.032.31.626.31 1.126s-.03.53-1.005.6c-.976.062-1.196.19-1.667.344-.47.154-.785.092-1.414-.22-.63-.31-1.353-.53-2.42-.595s-1.54.437-1.917.72c-.378.28-.66.342-1.037.592-.38.25-.975.843-.975 1.093s.25.064.03.75-.186 1 .285 1.75c.47.75.345 1.314 1.82 1.377 1.477.06 1.603-.158 2.106-.127.504.03.315.25.598.376.28.124.69.03.69.53s.345 1.188.69 1.97c.346.78-.314 1.905-.126 2.31.188.407.66 1 1.005 1.78.345.78 1.004.72 1.727.31 1.29-.75 3.016-3.653 3.016-4.403s.28-1.69 1.13-2.47c.85-.78 1.003-2.657 1.003-2.657.503-.81.534-2.875.534-2.97 0-.093 0-.593.564-.687.57-.093 1.418.47 1.67 1.44.25.97.82 1.47.82.906s-.316-3.53.124-2.97c.144.186.426.486.74.753.246 1.002.393 2.044.393 3.122 0 7.17-5.825 13-12.985 13z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M23.12 12.004h-4.228L15.9 16.41l-2.992-4.406H8.68l5.07 7.577-5.72 8.43h8.195v-2.86h-1.892L15.9 22.8l3.48 5.204h4.39l-5.718-8.423 5.068-7.57zm5.013-5.768l-4.465-4.464C22.696.8 20.775.004 19.4.004h-15c-1.375 0-2.5 1.125-2.5 2.5v27c0 1.375 1.125 2.5 2.5 2.5h23c1.375 0 2.5-1.125 2.5-2.5v-19c0-1.375-.795-3.296-1.767-4.268zM26.718 7.65c.098.098.195.218.29.354H21.9V2.896c.136.095.256.192.354.29l4.464 4.464zM27.9 29.504c0 .27-.23.5-.5.5h-23c-.27 0-.5-.23-.5-.5v-27c0-.27.23-.5.5-.5h15c.15 0 .32.02.5.053v7.947h7.947c.034.18.053.35.053.5v19z"/><path fill="#333" d="M23.12 76.004h-4.228L15.9 80.41l-2.992-4.406H8.68l5.07 7.577-5.72 8.43h8.195v-2.86h-1.892L15.9 86.8l3.48 5.204h4.39l-5.718-8.423 5.068-7.57zm5.013-5.768l-4.465-4.464c-.972-.972-2.893-1.768-4.268-1.768h-15c-1.375 0-2.5 1.125-2.5 2.5v27c0 1.375 1.125 2.5 2.5 2.5h23c1.375 0 2.5-1.125 2.5-2.5v-19c0-1.375-.795-3.296-1.767-4.268zm-1.415 1.414c.098.098.195.218.29.354H21.9v-5.108c.136.095.256.192.354.29l4.464 4.464zM27.9 93.504c0 .27-.23.5-.5.5h-23c-.27 0-.5-.23-.5-.5v-27c0-.27.23-.5.5-.5h15c.15 0 .32.02.5.053v7.947h7.947c.034.18.053.35.053.5v19z"/><path fill="#97999A" d="M23.12 140.004h-4.228L15.9 144.41l-2.992-4.406H8.68l5.07 7.577-5.72 8.43h8.196v-2.86h-1.892l1.566-2.35 3.483 5.21h4.39l-5.72-8.423 5.068-7.57zm5.013-5.768l-4.465-4.464c-.972-.972-2.893-1.768-4.268-1.768h-15c-1.375 0-2.5 1.125-2.5 2.5v27c0 1.375 1.125 2.5 2.5 2.5h23c1.375 0 2.5-1.125 2.5-2.5v-19c0-1.375-.795-3.296-1.767-4.268zm-1.415 1.414c.098.098.195.218.29.354H21.9v-5.108c.136.095.256.192.354.29l4.464 4.464zm1.182 21.854c0 .27-.23.5-.5.5h-23c-.27 0-.5-.23-.5-.5v-27c0-.27.23-.5.5-.5h15c.15 0 .32.02.5.053v7.947h7.947c.034.18.053.35.053.5v19z"/><path fill="#008FE9" d="M23.12 204.004h-4.228L15.9 208.41l-2.992-4.406H8.68l5.07 7.577-5.72 8.43h8.196v-2.86h-1.892l1.566-2.35 3.483 5.21h4.39l-5.72-8.423 5.068-7.57zm5.013-5.768l-4.465-4.464c-.972-.972-2.893-1.768-4.268-1.768h-15c-1.375 0-2.5 1.125-2.5 2.5v27c0 1.375 1.125 2.5 2.5 2.5h23c1.375 0 2.5-1.125 2.5-2.5v-19c0-1.375-.795-3.296-1.767-4.268zm-1.415 1.414c.098.098.195.218.29.354H21.9v-5.108c.136.095.256.192.354.29l4.464 4.464zm1.182 21.854c0 .27-.23.5-.5.5h-23c-.27 0-.5-.23-.5-.5v-27c0-.27.23-.5.5-.5h15c.15 0 .32.02.5.053v7.947h7.947c.034.18.053.35.053.5v19z"/><path fill="#1C1F4E" d="M23.12 268.004h-4.228L15.9 272.41l-2.992-4.406H8.68l5.07 7.577-5.72 8.43h8.196v-2.86h-1.892l1.566-2.35 3.483 5.21h4.39l-5.72-8.423 5.068-7.57zm5.013-5.768l-4.465-4.464c-.972-.972-2.893-1.768-4.268-1.768h-15c-1.375 0-2.5 1.125-2.5 2.5v27c0 1.375 1.125 2.5 2.5 2.5h23c1.375 0 2.5-1.125 2.5-2.5v-19c0-1.375-.795-3.296-1.767-4.268zm-1.415 1.414c.098.098.195.218.29.354H21.9v-5.108c.136.095.256.192.354.29l4.464 4.464zm1.182 21.854c0 .27-.23.5-.5.5h-23c-.27 0-.5-.23-.5-.5v-27c0-.27.23-.5.5-.5h15c.15 0 .32.02.5.053v7.947h7.947c.034.18.053.35.053.5v19z"/></svg>
|
@@ -0,0 +1,300 @@
|
|
1
|
+
var createContext;
|
2
|
+
var ref = this.Utils;
|
3
|
+
var merge = ref.merge;
|
4
|
+
var addClass = ref.addClass;
|
5
|
+
var hasClass = ref.hasClass;
|
6
|
+
var setOptions = ref.setOptions;
|
7
|
+
var removeClass = ref.removeClass;
|
8
|
+
var transformKey = ref.transformKey;
|
9
|
+
|
10
|
+
var indexOf = [].indexOf || function(item) {
|
11
|
+
for (var i = 0, l = this.length; i < l; i++) {
|
12
|
+
if (i in this && this[i] === item) {
|
13
|
+
return i;
|
14
|
+
}
|
15
|
+
} return -1;
|
16
|
+
};
|
17
|
+
|
18
|
+
createContext = function(options) {
|
19
|
+
var Anchor;
|
20
|
+
return Anchor = (function() {
|
21
|
+
var documentYBoundary;
|
22
|
+
var getXBounds;
|
23
|
+
var getYBounds;
|
24
|
+
|
25
|
+
Anchor.prototype.defaults = {
|
26
|
+
classPrefix: "us-anchor",
|
27
|
+
openEvent: "click",
|
28
|
+
showClose: true,
|
29
|
+
isAjax: false
|
30
|
+
};
|
31
|
+
|
32
|
+
function Anchor(options) {
|
33
|
+
var ref1 = this.options = setOptions(options, this.defaults);
|
34
|
+
var ref2;
|
35
|
+
this.target = ref1.target;
|
36
|
+
this.classPrefix = ref1.classPrefix;
|
37
|
+
|
38
|
+
if (this.target === null) {
|
39
|
+
return;
|
40
|
+
}
|
41
|
+
|
42
|
+
this._boundEvents = [];
|
43
|
+
this._closeTargets = [];
|
44
|
+
ref2 = this.create(),
|
45
|
+
this.anchor = ref2.anchor,
|
46
|
+
this.arrow = ref2.arrow,
|
47
|
+
this.content = ref2.content;
|
48
|
+
this.setEvents(this.anchor);
|
49
|
+
this.watchWindow();
|
50
|
+
}
|
51
|
+
|
52
|
+
Anchor.prototype.setEvents = function(anchor) {
|
53
|
+
var toggle = (function(_this) {
|
54
|
+
return function(event) {
|
55
|
+
event.preventDefault();
|
56
|
+
event.stopPropagation();
|
57
|
+
if (!_this.isOpen()) {
|
58
|
+
return _this.show(anchor);
|
59
|
+
} else {
|
60
|
+
return _this.hide(anchor);
|
61
|
+
}
|
62
|
+
};
|
63
|
+
})(this);
|
64
|
+
|
65
|
+
var hide = (function(_this) {
|
66
|
+
return function(event) {
|
67
|
+
var ref1;
|
68
|
+
if (!_this.isOpen()) {
|
69
|
+
return;
|
70
|
+
}
|
71
|
+
|
72
|
+
if (ref1 = event.target, indexOf.call(_this._closeTargets, ref1) >= 0) {
|
73
|
+
event.preventDefault();
|
74
|
+
event.stopPropagation();
|
75
|
+
_this.hide(anchor);
|
76
|
+
}
|
77
|
+
|
78
|
+
if (event.target === anchor || anchor.contains(event.target)) {
|
79
|
+
return;
|
80
|
+
}
|
81
|
+
|
82
|
+
if (event.target === _this.target || _this.target.contains(event.target)) {
|
83
|
+
return;
|
84
|
+
}
|
85
|
+
|
86
|
+
return _this.hide(anchor);
|
87
|
+
};
|
88
|
+
})(this);
|
89
|
+
|
90
|
+
this._on(this.target, this.options.openEvent, toggle);
|
91
|
+
|
92
|
+
return this._on(document, this.options.openEvent, hide);
|
93
|
+
};
|
94
|
+
|
95
|
+
Anchor.prototype._on = function(element, event, handler) {
|
96
|
+
this._boundEvents.push({
|
97
|
+
element: element,
|
98
|
+
event: event,
|
99
|
+
handler: handler
|
100
|
+
});
|
101
|
+
|
102
|
+
return element.addEventListener(event, handler, false);
|
103
|
+
};
|
104
|
+
|
105
|
+
Anchor.prototype.show = function(anchor) {
|
106
|
+
var ref1;
|
107
|
+
var ref2;
|
108
|
+
|
109
|
+
var fire = (function(_this) {
|
110
|
+
return function() {
|
111
|
+
_this.content.appendChild(_this.options.content);
|
112
|
+
|
113
|
+
if (!anchor.parentNode) {
|
114
|
+
document.body.appendChild(anchor);
|
115
|
+
}
|
116
|
+
|
117
|
+
addClass(anchor, _this.classPrefix + "--open");
|
118
|
+
setTimeout(function() {
|
119
|
+
return addClass(anchor, _this.classPrefix + "--after-open");
|
120
|
+
});
|
121
|
+
|
122
|
+
return _this.setPosition();
|
123
|
+
};
|
124
|
+
})(this);
|
125
|
+
|
126
|
+
if (this.options.isAjax) {
|
127
|
+
return (ref1 = this.options.onOpen) != null ? ref1.call().done(function() {
|
128
|
+
return fire();
|
129
|
+
}) : void 0;
|
130
|
+
} else {
|
131
|
+
fire();
|
132
|
+
return (ref2 = this.options.onOpen) != null ? ref2.call() : void 0;
|
133
|
+
}
|
134
|
+
};
|
135
|
+
|
136
|
+
Anchor.prototype.hide = function(anchor) {
|
137
|
+
var ref1;
|
138
|
+
removeClass(anchor, this.classPrefix + "--open");
|
139
|
+
removeClass(anchor, this.classPrefix + "--after-open");
|
140
|
+
return (ref1 = this.options.onClose) != null ? ref1.call() : void 0;
|
141
|
+
};
|
142
|
+
|
143
|
+
Anchor.prototype.isOpen = function() {
|
144
|
+
return hasClass(this.anchor, this.classPrefix + "--open");
|
145
|
+
};
|
146
|
+
|
147
|
+
Anchor.prototype.create = function() {
|
148
|
+
var anchor;
|
149
|
+
var anchorCss;
|
150
|
+
var closeButton;
|
151
|
+
var arrow = document.createElement("div");
|
152
|
+
var content = document.createElement("div");
|
153
|
+
var arrowInner = document.createElement("div");
|
154
|
+
|
155
|
+
addClass(content, this.classPrefix + "__content");
|
156
|
+
addClass(arrowInner, this.classPrefix + "__arrow-inner");
|
157
|
+
addClass(arrow, this.classPrefix + "__arrow");
|
158
|
+
arrow.appendChild(arrowInner);
|
159
|
+
content.appendChild(arrow);
|
160
|
+
|
161
|
+
if (this.options.showClose) {
|
162
|
+
closeButton = document.createElement("a");
|
163
|
+
closeButton.href = "#";
|
164
|
+
addClass(closeButton, this.classPrefix + "__close-button");
|
165
|
+
content.appendChild(closeButton);
|
166
|
+
this._closeTargets.push(closeButton);
|
167
|
+
}
|
168
|
+
|
169
|
+
anchor = document.createElement("div");
|
170
|
+
addClass(anchor, this.classPrefix);
|
171
|
+
anchorCss = anchor.style;
|
172
|
+
anchorCss.position = "absolute";
|
173
|
+
anchorCss.zIndex = "9999";
|
174
|
+
anchorCss.top = "0px";
|
175
|
+
anchorCss.left = "0px";
|
176
|
+
anchor.appendChild(content);
|
177
|
+
addClass(document.documentElement, this.classPrefix + "--ready");
|
178
|
+
|
179
|
+
return {
|
180
|
+
anchor: anchor,
|
181
|
+
arrow: arrow,
|
182
|
+
content: content
|
183
|
+
};
|
184
|
+
};
|
185
|
+
|
186
|
+
Anchor.prototype.setPosition = function() {
|
187
|
+
var style;
|
188
|
+
var bottomOffset;
|
189
|
+
var transformXOrigin;
|
190
|
+
var transformYOrigin;
|
191
|
+
var leftOffset = getXBounds(this.target, this.anchor, this.arrow);
|
192
|
+
var targetBounds = this.target.getBoundingClientRect();
|
193
|
+
|
194
|
+
if (documentYBoundary(targetBounds, this.anchor)) {
|
195
|
+
addClass(this.anchor, this.classPrefix + "--bottom");
|
196
|
+
removeClass(this.anchor, this.classPrefix + "--top");
|
197
|
+
transformYOrigin = "calc(100% + 12px)";
|
198
|
+
bottomOffset = getYBounds(this.target, this.anchor, this.arrow);
|
199
|
+
} else {
|
200
|
+
addClass(this.anchor, this.classPrefix + "--top");
|
201
|
+
removeClass(this.anchor, this.classPrefix + "--bottom");
|
202
|
+
transformYOrigin = "-12px";
|
203
|
+
bottomOffset = getYBounds(this.target, this.anchor, this.arrow);
|
204
|
+
}
|
205
|
+
|
206
|
+
style = "translateX(" + (Math.round(leftOffset)) + "px) ";
|
207
|
+
style += "translateY(" + (Math.round(bottomOffset)) + "px)";
|
208
|
+
|
209
|
+
if (transformKey !== "msTransform") {
|
210
|
+
style += " translateZ(0)";
|
211
|
+
}
|
212
|
+
|
213
|
+
this.anchor.style[transformKey] = style;
|
214
|
+
transformXOrigin = (targetBounds.left - this.anchor.getBoundingClientRect().left) + (this.target.offsetWidth / 2);
|
215
|
+
this.arrow.style.left = transformXOrigin + "px";
|
216
|
+
return this.content.style[transformKey + "Origin"] = transformXOrigin + "px " + transformYOrigin;
|
217
|
+
};
|
218
|
+
|
219
|
+
getXBounds = function(target, anchor, arrow) {
|
220
|
+
var targetBounds = target.getBoundingClientRect();
|
221
|
+
var calculatedWidth = targetBounds.left + (anchor.offsetWidth / 2) + (target.offsetWidth / 2);
|
222
|
+
var centerPoint = targetBounds.left + target.offsetWidth / 2;
|
223
|
+
|
224
|
+
if (document.body.offsetWidth < calculatedWidth) {
|
225
|
+
return document.body.offsetWidth - anchor.offsetWidth;
|
226
|
+
} else if (centerPoint - anchor.offsetWidth / 2 < 0) {
|
227
|
+
return 0;
|
228
|
+
} else {
|
229
|
+
return targetBounds.left - (anchor.offsetWidth / 2) + (target.offsetWidth / 2);
|
230
|
+
}
|
231
|
+
};
|
232
|
+
|
233
|
+
getYBounds = function(target, anchor, arrow) {
|
234
|
+
var targetBounds = target.getBoundingClientRect();
|
235
|
+
|
236
|
+
if (documentYBoundary(targetBounds, anchor)) {
|
237
|
+
return targetBounds.top - (anchor.offsetHeight - window.pageYOffset) + arrow.offsetHeight - target.offsetHeight;
|
238
|
+
} else {
|
239
|
+
return targetBounds.top + arrow.offsetHeight + target.offsetHeight + window.pageYOffset;
|
240
|
+
}
|
241
|
+
};
|
242
|
+
|
243
|
+
documentYBoundary = function(target, anchor) {
|
244
|
+
if (target.top < anchor.offsetHeight) {
|
245
|
+
return;
|
246
|
+
}
|
247
|
+
|
248
|
+
return (window.innerHeight - target.top) < anchor.offsetHeight;
|
249
|
+
};
|
250
|
+
|
251
|
+
Anchor.prototype.watchWindow = function() {
|
252
|
+
var event;
|
253
|
+
var i;
|
254
|
+
var len;
|
255
|
+
var ref1 = ["resize", "scroll", "touchmove"];
|
256
|
+
var results = [];
|
257
|
+
|
258
|
+
for (i = 0, len = ref1.length; i < len; i++) {
|
259
|
+
event = ref1[i];
|
260
|
+
results.push(window.addEventListener(event, (function(_this) {
|
261
|
+
return function(event) {
|
262
|
+
var lastFired;
|
263
|
+
var maxWait;
|
264
|
+
var now;
|
265
|
+
var throttle;
|
266
|
+
var timer;
|
267
|
+
|
268
|
+
if (!_this.isOpen()) {
|
269
|
+
return;
|
270
|
+
}
|
271
|
+
|
272
|
+
now = +(new Date);
|
273
|
+
throttle = 16;
|
274
|
+
maxWait = throttle * 3;
|
275
|
+
|
276
|
+
if (!timer) {
|
277
|
+
if (now - lastFired > maxWait) {
|
278
|
+
_this.setPosition();
|
279
|
+
lastFired = now;
|
280
|
+
}
|
281
|
+
|
282
|
+
return timer = setTimeout(function(o) {
|
283
|
+
timer = null;
|
284
|
+
lastFired = +(new Date);
|
285
|
+
return _this.setPosition();
|
286
|
+
}, throttle);
|
287
|
+
}
|
288
|
+
};
|
289
|
+
})(this), false));
|
290
|
+
}
|
291
|
+
|
292
|
+
return results;
|
293
|
+
};
|
294
|
+
|
295
|
+
return Anchor;
|
296
|
+
|
297
|
+
})();
|
298
|
+
};
|
299
|
+
|
300
|
+
window.Anchor = createContext();
|
@@ -0,0 +1,56 @@
|
|
1
|
+
window.Backdrop = (function() {
|
2
|
+
var holds = 0;
|
3
|
+
var backdrop = null;
|
4
|
+
var createBackdrop;
|
5
|
+
|
6
|
+
function Backdrop() {
|
7
|
+
backdrop = document.querySelector(".us-backdrop");
|
8
|
+
if (backdrop == null) {
|
9
|
+
backdrop = createBackdrop();
|
10
|
+
}
|
11
|
+
}
|
12
|
+
|
13
|
+
Backdrop.prototype.element = backdrop;
|
14
|
+
|
15
|
+
createBackdrop = function() {
|
16
|
+
backdrop = document.createElement("div");
|
17
|
+
Utils.addClass(backdrop, "us-backdrop");
|
18
|
+
return document.body.appendChild(backdrop);
|
19
|
+
};
|
20
|
+
|
21
|
+
Backdrop.prototype.retain = function() {
|
22
|
+
var onFrame;
|
23
|
+
holds++;
|
24
|
+
if (holds === 1) {
|
25
|
+
Utils.addClass(backdrop, "us-backdrop--visible");
|
26
|
+
onFrame = function() {
|
27
|
+
if (holds >= 1) {
|
28
|
+
return Utils.addClass(backdrop, "us-backdrop--active");
|
29
|
+
}
|
30
|
+
};
|
31
|
+
|
32
|
+
return Utils.requestAnimationFrame.call(window, onFrame);
|
33
|
+
}
|
34
|
+
};
|
35
|
+
|
36
|
+
Backdrop.prototype.release = function() {
|
37
|
+
var onFrame;
|
38
|
+
if (holds === 1) {
|
39
|
+
Utils.removeClass(backdrop, "us-backdrop--active");
|
40
|
+
onFrame = function() {
|
41
|
+
return setTimeout(function() {
|
42
|
+
if (holds === 0) {
|
43
|
+
return Utils.removeClass(backdrop, "us-backdrop--visible");
|
44
|
+
}
|
45
|
+
}, 300);
|
46
|
+
};
|
47
|
+
|
48
|
+
Utils.requestAnimationFrame.call(window, onFrame);
|
49
|
+
}
|
50
|
+
|
51
|
+
return holds = Math.max(0, holds - 1);
|
52
|
+
};
|
53
|
+
|
54
|
+
return Backdrop;
|
55
|
+
|
56
|
+
})();
|
@@ -0,0 +1,58 @@
|
|
1
|
+
window.ClassToggler = (function() {
|
2
|
+
var defaults;
|
3
|
+
|
4
|
+
defaults = {
|
5
|
+
containerClass: null,
|
6
|
+
$target: null,
|
7
|
+
activeClass: "active",
|
8
|
+
inactiveClass: null,
|
9
|
+
toggleOn: "click"
|
10
|
+
};
|
11
|
+
|
12
|
+
function ClassToggler(options) {
|
13
|
+
this.options = Utils.setOptions(options, defaults);
|
14
|
+
if (this.options.$target) {
|
15
|
+
this.addEventListeners();
|
16
|
+
} else {
|
17
|
+
console.trace("ClassToggle", this.options);
|
18
|
+
}
|
19
|
+
}
|
20
|
+
|
21
|
+
ClassToggler.prototype.addEventListeners = function() {
|
22
|
+
return this.options.$target.on(this.options.toggleOn, (function(_this) {
|
23
|
+
return function(e) {
|
24
|
+
var $togglableElement = _this.options.containerClass ? $(e.target).closest(_this.options.containerClass) : $(e.delegateTarget);
|
25
|
+
if (_this.isActive($togglableElement)) {
|
26
|
+
return _this.hide($togglableElement, e);
|
27
|
+
} else {
|
28
|
+
return _this.show($togglableElement, e);
|
29
|
+
}
|
30
|
+
};
|
31
|
+
})(this));
|
32
|
+
};
|
33
|
+
|
34
|
+
ClassToggler.prototype.isActive = function($togglableElement) {
|
35
|
+
return $togglableElement.hasClass(this.options.activeClass);
|
36
|
+
};
|
37
|
+
|
38
|
+
ClassToggler.prototype.show = function($togglableElement, e) {
|
39
|
+
var base;
|
40
|
+
if (typeof (base = this.options).onShow === "function") {
|
41
|
+
base.onShow($togglableElement, e);
|
42
|
+
}
|
43
|
+
|
44
|
+
return $togglableElement.addClass(this.options.activeClass);
|
45
|
+
};
|
46
|
+
|
47
|
+
ClassToggler.prototype.hide = function($togglableElement, e) {
|
48
|
+
var base;
|
49
|
+
if (typeof (base = this.options).onHide === "function") {
|
50
|
+
base.onHide($togglableElement, e);
|
51
|
+
}
|
52
|
+
|
53
|
+
return $togglableElement.removeClass(this.options.activeClass);
|
54
|
+
};
|
55
|
+
|
56
|
+
return ClassToggler;
|
57
|
+
|
58
|
+
})();
|