TokiCLI 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/CHANGELOG.md +7 -0
- data/README.md +56 -10
- data/TokiCLI.gemspec +5 -2
- data/lib/API/dbapi.rb +104 -67
- data/lib/API/helpers.rb +47 -3
- data/lib/TokiCLI/app.rb +88 -12
- data/lib/TokiCLI/version.rb +1 -1
- data/lib/TokiCLI/view.rb +5 -1
- data/lib/TokiServer/Gemfile +6 -0
- data/lib/TokiServer/README.md +37 -0
- data/lib/TokiServer/bower.json +8 -0
- data/lib/TokiServer/bower_components/fastclick/.bower.json +23 -0
- data/lib/TokiServer/bower_components/fastclick/LICENSE +22 -0
- data/lib/TokiServer/bower_components/fastclick/README.md +133 -0
- data/lib/TokiServer/bower_components/fastclick/bower.json +13 -0
- data/lib/TokiServer/bower_components/fastclick/lib/fastclick.js +790 -0
- data/lib/TokiServer/bower_components/foundation/.bower.json +30 -0
- data/lib/TokiServer/bower_components/foundation/bower.json +20 -0
- data/lib/TokiServer/bower_components/foundation/css/foundation.css +4860 -0
- data/lib/TokiServer/bower_components/foundation/css/normalize.css +320 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation.js +5543 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation.min.js +3 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.abide.js +299 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.accordion.js +59 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.alert.js +43 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.clearing.js +534 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.dropdown.js +311 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.equalizer.js +74 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.interchange.js +331 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.joyride.js +843 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.js +611 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.magellan.js +178 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.offcanvas.js +108 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.orbit.js +610 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.reveal.js +437 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.slider.js +199 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.tab.js +167 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.tooltip.js +298 -0
- data/lib/TokiServer/bower_components/foundation/js/foundation/foundation.topbar.js +425 -0
- data/lib/TokiServer/bower_components/foundation/js/vendor/fastclick.js +9 -0
- data/lib/TokiServer/bower_components/foundation/js/vendor/jquery.cookie.js +8 -0
- data/lib/TokiServer/bower_components/foundation/js/vendor/jquery.js +26 -0
- data/lib/TokiServer/bower_components/foundation/js/vendor/modernizr.js +8 -0
- data/lib/TokiServer/bower_components/foundation/js/vendor/placeholder.js +2 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation.scss +45 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/_functions.scss +101 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/_settings.scss +1289 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_accordion.scss +53 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_alert-boxes.scss +126 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_block-grid.scss +132 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_breadcrumbs.scss +127 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_button-groups.scss +108 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_buttons.scss +222 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_clearing.scss +247 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_dropdown-buttons.scss +129 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_dropdown.scss +248 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_flex-video.scss +51 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_forms.scss +498 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_global.scss +429 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_grid.scss +260 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_inline-lists.scss +57 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_joyride.scss +220 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_keystrokes.scss +61 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_labels.scss +104 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_magellan.scss +34 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_offcanvas.scss +355 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_orbit.scss +423 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_pagination.scss +150 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_panels.scss +90 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_pricing-tables.scss +150 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_progress-bars.scss +79 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_range-slider.scss +148 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_reveal-new.scss +0 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_reveal.scss +216 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_side-nav.scss +115 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_split-buttons.scss +191 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_sub-nav.scss +125 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_switch.scss +294 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_tables.scss +129 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_tabs.scss +109 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_thumbs.scss +68 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_tooltips.scss +140 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_top-bar.scss +644 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_type.scss +511 -0
- data/lib/TokiServer/bower_components/foundation/scss/foundation/components/_visibility.scss +408 -0
- data/lib/TokiServer/bower_components/foundation/scss/normalize.scss +425 -0
- data/lib/TokiServer/bower_components/jquery-placeholder/.bower.json +17 -0
- data/lib/TokiServer/bower_components/jquery-placeholder/.gitattributes +1 -0
- data/lib/TokiServer/bower_components/jquery-placeholder/.gitignore +1 -0
- data/lib/TokiServer/bower_components/jquery-placeholder/LICENSE-MIT.txt +20 -0
- data/lib/TokiServer/bower_components/jquery-placeholder/README.md +76 -0
- data/lib/TokiServer/bower_components/jquery-placeholder/bower.json +5 -0
- data/lib/TokiServer/bower_components/jquery-placeholder/demo.html +55 -0
- data/lib/TokiServer/bower_components/jquery-placeholder/jquery.placeholder.js +185 -0
- data/lib/TokiServer/bower_components/jquery-placeholder/tests/index.html +32 -0
- data/lib/TokiServer/bower_components/jquery-placeholder/tests/tests.js +134 -0
- data/lib/TokiServer/bower_components/jquery.cookie/.bower.json +28 -0
- data/lib/TokiServer/bower_components/jquery.cookie/jquery.cookie.js +117 -0
- data/lib/TokiServer/bower_components/jquery/.bower.json +37 -0
- data/lib/TokiServer/bower_components/jquery/MIT-LICENSE.txt +21 -0
- data/lib/TokiServer/bower_components/jquery/bower.json +27 -0
- data/lib/TokiServer/bower_components/jquery/dist/jquery.js +9190 -0
- data/lib/TokiServer/bower_components/jquery/dist/jquery.min.js +5 -0
- data/lib/TokiServer/bower_components/jquery/dist/jquery.min.map +1 -0
- data/lib/TokiServer/bower_components/jquery/src/ajax.js +806 -0
- data/lib/TokiServer/bower_components/jquery/src/ajax/jsonp.js +89 -0
- data/lib/TokiServer/bower_components/jquery/src/ajax/load.js +75 -0
- data/lib/TokiServer/bower_components/jquery/src/ajax/parseJSON.js +13 -0
- data/lib/TokiServer/bower_components/jquery/src/ajax/parseXML.js +28 -0
- data/lib/TokiServer/bower_components/jquery/src/ajax/script.js +64 -0
- data/lib/TokiServer/bower_components/jquery/src/ajax/var/nonce.js +5 -0
- data/lib/TokiServer/bower_components/jquery/src/ajax/var/rquery.js +3 -0
- data/lib/TokiServer/bower_components/jquery/src/ajax/xhr.js +135 -0
- data/lib/TokiServer/bower_components/jquery/src/attributes.js +11 -0
- data/lib/TokiServer/bower_components/jquery/src/attributes/attr.js +143 -0
- data/lib/TokiServer/bower_components/jquery/src/attributes/classes.js +158 -0
- data/lib/TokiServer/bower_components/jquery/src/attributes/prop.js +96 -0
- data/lib/TokiServer/bower_components/jquery/src/attributes/support.js +35 -0
- data/lib/TokiServer/bower_components/jquery/src/attributes/val.js +163 -0
- data/lib/TokiServer/bower_components/jquery/src/callbacks.js +205 -0
- data/lib/TokiServer/bower_components/jquery/src/core.js +498 -0
- data/lib/TokiServer/bower_components/jquery/src/core/access.js +60 -0
- data/lib/TokiServer/bower_components/jquery/src/core/init.js +123 -0
- data/lib/TokiServer/bower_components/jquery/src/core/parseHTML.js +39 -0
- data/lib/TokiServer/bower_components/jquery/src/core/ready.js +97 -0
- data/lib/TokiServer/bower_components/jquery/src/core/var/rsingleTag.js +4 -0
- data/lib/TokiServer/bower_components/jquery/src/css.js +451 -0
- data/lib/TokiServer/bower_components/jquery/src/css/addGetHookIf.js +24 -0
- data/lib/TokiServer/bower_components/jquery/src/css/curCSS.js +57 -0
- data/lib/TokiServer/bower_components/jquery/src/css/defaultDisplay.js +70 -0
- data/lib/TokiServer/bower_components/jquery/src/css/hiddenVisibleSelectors.js +15 -0
- data/lib/TokiServer/bower_components/jquery/src/css/support.js +91 -0
- data/lib/TokiServer/bower_components/jquery/src/css/swap.js +28 -0
- data/lib/TokiServer/bower_components/jquery/src/css/var/cssExpand.js +3 -0
- data/lib/TokiServer/bower_components/jquery/src/css/var/getStyles.js +5 -0
- data/lib/TokiServer/bower_components/jquery/src/css/var/isHidden.js +13 -0
- data/lib/TokiServer/bower_components/jquery/src/css/var/rmargin.js +3 -0
- data/lib/TokiServer/bower_components/jquery/src/css/var/rnumnonpx.js +5 -0
- data/lib/TokiServer/bower_components/jquery/src/data.js +179 -0
- data/lib/TokiServer/bower_components/jquery/src/data/Data.js +181 -0
- data/lib/TokiServer/bower_components/jquery/src/data/accepts.js +20 -0
- data/lib/TokiServer/bower_components/jquery/src/data/var/data_priv.js +5 -0
- data/lib/TokiServer/bower_components/jquery/src/data/var/data_user.js +5 -0
- data/lib/TokiServer/bower_components/jquery/src/deferred.js +149 -0
- data/lib/TokiServer/bower_components/jquery/src/deprecated.js +13 -0
- data/lib/TokiServer/bower_components/jquery/src/dimensions.js +50 -0
- data/lib/TokiServer/bower_components/jquery/src/effects.js +649 -0
- data/lib/TokiServer/bower_components/jquery/src/effects/Tween.js +114 -0
- data/lib/TokiServer/bower_components/jquery/src/effects/animatedSelector.js +13 -0
- data/lib/TokiServer/bower_components/jquery/src/event.js +868 -0
- data/lib/TokiServer/bower_components/jquery/src/event/alias.js +39 -0
- data/lib/TokiServer/bower_components/jquery/src/event/support.js +9 -0
- data/lib/TokiServer/bower_components/jquery/src/exports/amd.js +24 -0
- data/lib/TokiServer/bower_components/jquery/src/exports/global.js +32 -0
- data/lib/TokiServer/bower_components/jquery/src/intro.js +44 -0
- data/lib/TokiServer/bower_components/jquery/src/jquery.js +36 -0
- data/lib/TokiServer/bower_components/jquery/src/manipulation.js +582 -0
- data/lib/TokiServer/bower_components/jquery/src/manipulation/_evalUrl.js +18 -0
- data/lib/TokiServer/bower_components/jquery/src/manipulation/support.js +31 -0
- data/lib/TokiServer/bower_components/jquery/src/manipulation/var/rcheckableType.js +3 -0
- data/lib/TokiServer/bower_components/jquery/src/offset.js +204 -0
- data/lib/TokiServer/bower_components/jquery/src/outro.js +1 -0
- data/lib/TokiServer/bower_components/jquery/src/queue.js +142 -0
- data/lib/TokiServer/bower_components/jquery/src/queue/delay.js +22 -0
- data/lib/TokiServer/bower_components/jquery/src/selector-native.js +172 -0
- data/lib/TokiServer/bower_components/jquery/src/selector-sizzle.js +14 -0
- data/lib/TokiServer/bower_components/jquery/src/selector.js +1 -0
- data/lib/TokiServer/bower_components/jquery/src/serialize.js +111 -0
- data/lib/TokiServer/bower_components/jquery/src/sizzle/dist/sizzle.js +2044 -0
- data/lib/TokiServer/bower_components/jquery/src/sizzle/dist/sizzle.min.js +3 -0
- data/lib/TokiServer/bower_components/jquery/src/sizzle/dist/sizzle.min.map +1 -0
- data/lib/TokiServer/bower_components/jquery/src/traversing.js +200 -0
- data/lib/TokiServer/bower_components/jquery/src/traversing/findFilter.js +100 -0
- data/lib/TokiServer/bower_components/jquery/src/traversing/var/rneedsContext.js +6 -0
- data/lib/TokiServer/bower_components/jquery/src/var/arr.js +3 -0
- data/lib/TokiServer/bower_components/jquery/src/var/class2type.js +4 -0
- data/lib/TokiServer/bower_components/jquery/src/var/concat.js +5 -0
- data/lib/TokiServer/bower_components/jquery/src/var/hasOwn.js +5 -0
- data/lib/TokiServer/bower_components/jquery/src/var/indexOf.js +5 -0
- data/lib/TokiServer/bower_components/jquery/src/var/pnum.js +3 -0
- data/lib/TokiServer/bower_components/jquery/src/var/push.js +5 -0
- data/lib/TokiServer/bower_components/jquery/src/var/rnotwhite.js +3 -0
- data/lib/TokiServer/bower_components/jquery/src/var/slice.js +5 -0
- data/lib/TokiServer/bower_components/jquery/src/var/strundefined.js +3 -0
- data/lib/TokiServer/bower_components/jquery/src/var/support.js +4 -0
- data/lib/TokiServer/bower_components/jquery/src/var/toString.js +5 -0
- data/lib/TokiServer/bower_components/jquery/src/wrap.js +78 -0
- data/lib/TokiServer/bower_components/modernizr/.bower.json +14 -0
- data/lib/TokiServer/bower_components/modernizr/.editorconfig +10 -0
- data/lib/TokiServer/bower_components/modernizr/.gitignore +2 -0
- data/lib/TokiServer/bower_components/modernizr/.travis.yml +6 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/a-download.js +8 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/audio-audiodata-api.js +4 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/audio-webaudio-api.js +4 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/battery-api.js +8 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/battery-level.js +11 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/blob-constructor.js +10 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/canvas-todataurl-type.js +28 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/contenteditable.js +9 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/contentsecuritypolicy.js +10 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/contextmenu.js +11 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/cookies.js +15 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/cors.js +3 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-backgroundposition-shorthand.js +19 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-backgroundposition-xy.js +15 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-backgroundrepeat.js +31 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-backgroundsizecover.js +10 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-boxsizing.js +9 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-calc.js +12 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-cubicbezierrange.js +8 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-displayrunin.js +18 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-displaytable.js +27 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-filters.js +7 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-hyphens.js +205 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-lastchild.js +11 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-mask.js +12 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-mediaqueries.js +3 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-objectfit.js +6 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-overflow-scrolling.js +9 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-pointerevents.js +25 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-positionsticky.js +13 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-regions.js +55 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-remunit.js +19 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-resize.js +8 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-scrollbars.js +19 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-shapes.js +4 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-subpixelfont.js +23 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-supports.js +6 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-userselect.js +10 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-vhunit.js +14 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-vmaxunit.js +14 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-vminunit.js +14 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/css-vwunit.js +14 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/custom-protocol-handler.js +10 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/dart.js +6 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/dataview-api.js +4 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/dom-classlist.js +4 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/dom-createElement-attrs.js +11 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/dom-dataset.js +9 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/dom-microdata.js +4 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/elem-datalist.js +12 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/elem-details.js +25 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/elem-output.js +4 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/elem-progress-meter.js +11 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/elem-ruby.js +53 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/elem-time.js +4 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/elem-track.js +11 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/emoji.js +11 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/es5-strictmode.js +7 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/event-deviceorientation-motion.js +11 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/exif-orientation.js +32 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/file-api.js +12 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/file-filesystem.js +9 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/forms-fileinput.js +13 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/forms-formattribute.js +29 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/forms-inputnumber-l10n.js +32 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/forms-placeholder.js +10 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/forms-speechinput.js +19 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/forms-validation.js +62 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/fullscreen-api.js +10 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/gamepad.js +12 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/getusermedia.js +5 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/ie8compat.js +12 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/iframe-sandbox.js +5 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/iframe-seamless.js +5 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/iframe-srcdoc.js +5 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/img-apng.js +26 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/img-webp.js +20 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/json.js +7 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/lists-reversed.js +6 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/mathml.js +23 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/network-connection.js +22 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/network-eventsource.js +5 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/network-xhr2.js +13 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/notification.js +10 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/performance.js +5 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/pointerlock-api.js +4 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/quota-management-api.js +11 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/requestanimationframe.js +7 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/script-async.js +3 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/script-defer.js +3 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/style-scoped.js +6 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/svg-filters.js +13 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/unicode.js +32 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/url-data-uri.js +26 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/userdata.js +7 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/vibration.js +4 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/web-intents.js +6 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/webgl-extensions.js +42 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/websockets-binary.js +20 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/window-framed.js +8 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/workers-blobworkers.js +66 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/workers-dataworkers.js +34 -0
- data/lib/TokiServer/bower_components/modernizr/feature-detects/workers-sharedworkers.js +3 -0
- data/lib/TokiServer/bower_components/modernizr/grunt.js +69 -0
- data/lib/TokiServer/bower_components/modernizr/media/Modernizr 2 Logo.ai +292 -1
- data/lib/TokiServer/bower_components/modernizr/media/Modernizr 2 Logo.eps +0 -0
- data/lib/TokiServer/bower_components/modernizr/media/Modernizr 2 Logo.pdf +292 -1
- data/lib/TokiServer/bower_components/modernizr/media/Modernizr 2 Logo.png +0 -0
- data/lib/TokiServer/bower_components/modernizr/media/Modernizr 2 Logo.svg +35 -0
- data/lib/TokiServer/bower_components/modernizr/modernizr.js +1406 -0
- data/lib/TokiServer/bower_components/modernizr/readme.md +28 -0
- data/lib/TokiServer/bower_components/modernizr/test/basic.html +65 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse.html +1451 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/Windsong-webfont.eot +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/Windsong-webfont.otf +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/Windsong-webfont.svg +147 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/Windsong-webfont.ttf +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/Windsong-webfont.woff +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/alpha.png +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/apng_test.png +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/before-after.png +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/form_validation.html +15 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/ga.js +43 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/green5x5.png +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/hashchange.html +16 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/jquery.min.js +18 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/mathml.html +120 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/mathml_ref.png +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/modernizr-1.7.min.js +2 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/png_alpha_result.png +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/pushstate.html +40 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/red30x30.png +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/ruby.png +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/stroked-text.png +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/style.css +168 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/svg-html-blur.png +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/svg-img.svg +5 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/svg-img.svg.1 +5 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/svg_blur.png +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/table.png +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/text-shadow1.png +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/text-shadow2.png +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/windsong_font.png +0 -0
- data/lib/TokiServer/bower_components/modernizr/test/caniuse_files/xhtml.html +14 -0
- data/lib/TokiServer/bower_components/modernizr/test/index.html +104 -0
- data/lib/TokiServer/bower_components/modernizr/test/js/basic.html +65 -0
- data/lib/TokiServer/bower_components/modernizr/test/js/dumpdata.js +75 -0
- data/lib/TokiServer/bower_components/modernizr/test/js/lib/detect-global.js +153 -0
- data/lib/TokiServer/bower_components/modernizr/test/js/lib/jquery-1.7b2.js +9279 -0
- data/lib/TokiServer/bower_components/modernizr/test/js/lib/jsonselect.js +279 -0
- data/lib/TokiServer/bower_components/modernizr/test/js/lib/polyfills.js +96 -0
- data/lib/TokiServer/bower_components/modernizr/test/js/lib/uaparser.js +215 -0
- data/lib/TokiServer/bower_components/modernizr/test/js/setup.js +44 -0
- data/lib/TokiServer/bower_components/modernizr/test/js/unit-caniuse.js +191 -0
- data/lib/TokiServer/bower_components/modernizr/test/js/unit.js +669 -0
- data/lib/TokiServer/bower_components/modernizr/test/qunit/qunit.css +231 -0
- data/lib/TokiServer/bower_components/modernizr/test/qunit/qunit.js +1932 -0
- data/lib/TokiServer/bower_components/modernizr/test/qunit/run-qunit.js +72 -0
- data/lib/TokiServer/config.rb +25 -0
- data/lib/TokiServer/humans.txt +8 -0
- data/lib/TokiServer/itunesicon.rb +60 -0
- data/lib/TokiServer/js/app.js +3 -0
- data/lib/TokiServer/public/stylesheets/app.css +8094 -0
- data/lib/TokiServer/robots.txt +4 -0
- data/lib/TokiServer/scss/_settings.scss +1240 -0
- data/lib/TokiServer/scss/app.scss +102 -0
- data/lib/TokiServer/tokiserver.rb +377 -0
- data/lib/TokiServer/views/apps_total.erb +28 -0
- data/lib/TokiServer/views/error.erb +25 -0
- data/lib/TokiServer/views/index.erb +191 -0
- data/lib/TokiServer/views/layout.erb +20 -0
- data/lib/TokiServer/views/name_log.erb +50 -0
- data/lib/TokiServer/views/name_split.erb +37 -0
- data/lib/TokiServer/views/name_total.erb +34 -0
- metadata +416 -4
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Modernizr v2.8.2
|
|
3
|
+
* www.modernizr.com
|
|
4
|
+
*
|
|
5
|
+
* Copyright (c) Faruk Ates, Paul Irish, Alex Sexton
|
|
6
|
+
* Available under the BSD and MIT licenses: www.modernizr.com/license/
|
|
7
|
+
*/
|
|
8
|
+
window.Modernizr=function(a,b,c){function d(a){t.cssText=a}function e(a,b){return d(x.join(a+";")+(b||""))}function f(a,b){return typeof a===b}function g(a,b){return!!~(""+a).indexOf(b)}function h(a,b){for(var d in a){var e=a[d];if(!g(e,"-")&&t[e]!==c)return"pfx"==b?e:!0}return!1}function i(a,b,d){for(var e in a){var g=b[a[e]];if(g!==c)return d===!1?a[e]:f(g,"function")?g.bind(d||b):g}return!1}function j(a,b,c){var d=a.charAt(0).toUpperCase()+a.slice(1),e=(a+" "+z.join(d+" ")+d).split(" ");return f(b,"string")||f(b,"undefined")?h(e,b):(e=(a+" "+A.join(d+" ")+d).split(" "),i(e,b,c))}function k(){o.input=function(c){for(var d=0,e=c.length;e>d;d++)E[c[d]]=!!(c[d]in u);return E.list&&(E.list=!(!b.createElement("datalist")||!a.HTMLDataListElement)),E}("autocomplete autofocus list placeholder max min multiple pattern required step".split(" ")),o.inputtypes=function(a){for(var d,e,f,g=0,h=a.length;h>g;g++)u.setAttribute("type",e=a[g]),d="text"!==u.type,d&&(u.value=v,u.style.cssText="position:absolute;visibility:hidden;",/^range$/.test(e)&&u.style.WebkitAppearance!==c?(q.appendChild(u),f=b.defaultView,d=f.getComputedStyle&&"textfield"!==f.getComputedStyle(u,null).WebkitAppearance&&0!==u.offsetHeight,q.removeChild(u)):/^(search|tel)$/.test(e)||(d=/^(url|email)$/.test(e)?u.checkValidity&&u.checkValidity()===!1:u.value!=v)),D[a[g]]=!!d;return D}("search tel url email datetime date month week time datetime-local number range color".split(" "))}var l,m,n="2.8.2",o={},p=!0,q=b.documentElement,r="modernizr",s=b.createElement(r),t=s.style,u=b.createElement("input"),v=":)",w={}.toString,x=" -webkit- -moz- -o- -ms- ".split(" "),y="Webkit Moz O ms",z=y.split(" "),A=y.toLowerCase().split(" "),B={svg:"http://www.w3.org/2000/svg"},C={},D={},E={},F=[],G=F.slice,H=function(a,c,d,e){var f,g,h,i,j=b.createElement("div"),k=b.body,l=k||b.createElement("body");if(parseInt(d,10))for(;d--;)h=b.createElement("div"),h.id=e?e[d]:r+(d+1),j.appendChild(h);return f=["­",'<style id="s',r,'">',a,"</style>"].join(""),j.id=r,(k?j:l).innerHTML+=f,l.appendChild(j),k||(l.style.background="",l.style.overflow="hidden",i=q.style.overflow,q.style.overflow="hidden",q.appendChild(l)),g=c(j,a),k?j.parentNode.removeChild(j):(l.parentNode.removeChild(l),q.style.overflow=i),!!g},I=function(b){var c=a.matchMedia||a.msMatchMedia;if(c)return c(b)&&c(b).matches||!1;var d;return H("@media "+b+" { #"+r+" { position: absolute; } }",function(b){d="absolute"==(a.getComputedStyle?getComputedStyle(b,null):b.currentStyle).position}),d},J=function(){function a(a,e){e=e||b.createElement(d[a]||"div"),a="on"+a;var g=a in e;return g||(e.setAttribute||(e=b.createElement("div")),e.setAttribute&&e.removeAttribute&&(e.setAttribute(a,""),g=f(e[a],"function"),f(e[a],"undefined")||(e[a]=c),e.removeAttribute(a))),e=null,g}var d={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return a}(),K={}.hasOwnProperty;m=f(K,"undefined")||f(K.call,"undefined")?function(a,b){return b in a&&f(a.constructor.prototype[b],"undefined")}:function(a,b){return K.call(a,b)},Function.prototype.bind||(Function.prototype.bind=function(a){var b=this;if("function"!=typeof b)throw new TypeError;var c=G.call(arguments,1),d=function(){if(this instanceof d){var e=function(){};e.prototype=b.prototype;var f=new e,g=b.apply(f,c.concat(G.call(arguments)));return Object(g)===g?g:f}return b.apply(a,c.concat(G.call(arguments)))};return d}),C.flexbox=function(){return j("flexWrap")},C.flexboxlegacy=function(){return j("boxDirection")},C.canvas=function(){var a=b.createElement("canvas");return!(!a.getContext||!a.getContext("2d"))},C.canvastext=function(){return!(!o.canvas||!f(b.createElement("canvas").getContext("2d").fillText,"function"))},C.webgl=function(){return!!a.WebGLRenderingContext},C.touch=function(){var c;return"ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch?c=!0:H(["@media (",x.join("touch-enabled),("),r,")","{#modernizr{top:9px;position:absolute}}"].join(""),function(a){c=9===a.offsetTop}),c},C.geolocation=function(){return"geolocation"in navigator},C.postmessage=function(){return!!a.postMessage},C.websqldatabase=function(){return!!a.openDatabase},C.indexedDB=function(){return!!j("indexedDB",a)},C.hashchange=function(){return J("hashchange",a)&&(b.documentMode===c||b.documentMode>7)},C.history=function(){return!(!a.history||!history.pushState)},C.draganddrop=function(){var a=b.createElement("div");return"draggable"in a||"ondragstart"in a&&"ondrop"in a},C.websockets=function(){return"WebSocket"in a||"MozWebSocket"in a},C.rgba=function(){return d("background-color:rgba(150,255,150,.5)"),g(t.backgroundColor,"rgba")},C.hsla=function(){return d("background-color:hsla(120,40%,100%,.5)"),g(t.backgroundColor,"rgba")||g(t.backgroundColor,"hsla")},C.multiplebgs=function(){return d("background:url(https://),url(https://),red url(https://)"),/(url\s*\(.*?){3}/.test(t.background)},C.backgroundsize=function(){return j("backgroundSize")},C.borderimage=function(){return j("borderImage")},C.borderradius=function(){return j("borderRadius")},C.boxshadow=function(){return j("boxShadow")},C.textshadow=function(){return""===b.createElement("div").style.textShadow},C.opacity=function(){return e("opacity:.55"),/^0.55$/.test(t.opacity)},C.cssanimations=function(){return j("animationName")},C.csscolumns=function(){return j("columnCount")},C.cssgradients=function(){var a="background-image:",b="gradient(linear,left top,right bottom,from(#9f9),to(white));",c="linear-gradient(left top,#9f9, white);";return d((a+"-webkit- ".split(" ").join(b+a)+x.join(c+a)).slice(0,-a.length)),g(t.backgroundImage,"gradient")},C.cssreflections=function(){return j("boxReflect")},C.csstransforms=function(){return!!j("transform")},C.csstransforms3d=function(){var a=!!j("perspective");return a&&"webkitPerspective"in q.style&&H("@media (transform-3d),(-webkit-transform-3d){#modernizr{left:9px;position:absolute;height:3px;}}",function(b){a=9===b.offsetLeft&&3===b.offsetHeight}),a},C.csstransitions=function(){return j("transition")},C.fontface=function(){var a;return H('@font-face {font-family:"font";src:url("https://")}',function(c,d){var e=b.getElementById("smodernizr"),f=e.sheet||e.styleSheet,g=f?f.cssRules&&f.cssRules[0]?f.cssRules[0].cssText:f.cssText||"":"";a=/src/i.test(g)&&0===g.indexOf(d.split(" ")[0])}),a},C.generatedcontent=function(){var a;return H(["#",r,"{font:0/0 a}#",r,':after{content:"',v,'";visibility:hidden;font:3px/1 a}'].join(""),function(b){a=b.offsetHeight>=3}),a},C.video=function(){var a=b.createElement("video"),c=!1;try{(c=!!a.canPlayType)&&(c=new Boolean(c),c.ogg=a.canPlayType('video/ogg; codecs="theora"').replace(/^no$/,""),c.h264=a.canPlayType('video/mp4; codecs="avc1.42E01E"').replace(/^no$/,""),c.webm=a.canPlayType('video/webm; codecs="vp8, vorbis"').replace(/^no$/,""))}catch(d){}return c},C.audio=function(){var a=b.createElement("audio"),c=!1;try{(c=!!a.canPlayType)&&(c=new Boolean(c),c.ogg=a.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/,""),c.mp3=a.canPlayType("audio/mpeg;").replace(/^no$/,""),c.wav=a.canPlayType('audio/wav; codecs="1"').replace(/^no$/,""),c.m4a=(a.canPlayType("audio/x-m4a;")||a.canPlayType("audio/aac;")).replace(/^no$/,""))}catch(d){}return c},C.localstorage=function(){try{return localStorage.setItem(r,r),localStorage.removeItem(r),!0}catch(a){return!1}},C.sessionstorage=function(){try{return sessionStorage.setItem(r,r),sessionStorage.removeItem(r),!0}catch(a){return!1}},C.webworkers=function(){return!!a.Worker},C.applicationcache=function(){return!!a.applicationCache},C.svg=function(){return!!b.createElementNS&&!!b.createElementNS(B.svg,"svg").createSVGRect},C.inlinesvg=function(){var a=b.createElement("div");return a.innerHTML="<svg/>",(a.firstChild&&a.firstChild.namespaceURI)==B.svg},C.smil=function(){return!!b.createElementNS&&/SVGAnimate/.test(w.call(b.createElementNS(B.svg,"animate")))},C.svgclippaths=function(){return!!b.createElementNS&&/SVGClipPath/.test(w.call(b.createElementNS(B.svg,"clipPath")))};for(var L in C)m(C,L)&&(l=L.toLowerCase(),o[l]=C[L](),F.push((o[l]?"":"no-")+l));return o.input||k(),o.addTest=function(a,b){if("object"==typeof a)for(var d in a)m(a,d)&&o.addTest(d,a[d]);else{if(a=a.toLowerCase(),o[a]!==c)return o;b="function"==typeof b?b():b,"undefined"!=typeof p&&p&&(q.className+=" "+(b?"":"no-")+a),o[a]=b}return o},d(""),s=u=null,function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=s.elements;return"string"==typeof a?a.split(" "):a}function e(a){var b=r[a[p]];return b||(b={},q++,a[p]=q,r[q]=b),b}function f(a,c,d){if(c||(c=b),k)return c.createElement(a);d||(d=e(c));var f;return f=d.cache[a]?d.cache[a].cloneNode():o.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!f.canHaveChildren||n.test(a)||f.tagUrn?f:d.frag.appendChild(f)}function g(a,c){if(a||(a=b),k)return a.createDocumentFragment();c=c||e(a);for(var f=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)f.createElement(h[g]);return f}function h(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return s.shivMethods?f(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(s,b.frag)}function i(a){a||(a=b);var d=e(a);return!s.shivCSS||j||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),k||h(a,d),a}var j,k,l="3.7.0",m=a.html5||{},n=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,o=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,p="_html5shiv",q=0,r={};!function(){try{var a=b.createElement("a");a.innerHTML="<xyz></xyz>",j="hidden"in a,k=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){j=!0,k=!0}}();var s={elements:m.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video",version:l,shivCSS:m.shivCSS!==!1,supportsUnknownElements:k,shivMethods:m.shivMethods!==!1,type:"default",shivDocument:i,createElement:f,createDocumentFragment:g};a.html5=s,i(b)}(this,b),o._version=n,o._prefixes=x,o._domPrefixes=A,o._cssomPrefixes=z,o.mq=I,o.hasEvent=J,o.testProp=function(a){return h([a])},o.testAllProps=j,o.testStyles=H,o.prefixed=function(a,b,c){return b?j(a,b,c):j(a,"pfx")},q.className=q.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(p?" js "+F.join(" "):""),o}(this,this.document);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! http://mths.be/placeholder v2.0.8 by @mathias */
|
|
2
|
+
!function(a,b,c){function d(a){var b={},d=/^jQuery\d+$/;return c.each(a.attributes,function(a,c){c.specified&&!d.test(c.name)&&(b[c.name]=c.value)}),b}function e(a,b){var d=this,e=c(d);if(d.value==e.attr("placeholder")&&e.hasClass("placeholder"))if(e.data("placeholder-password")){if(e=e.hide().next().show().attr("id",e.removeAttr("id").data("placeholder-id")),a===!0)return e[0].value=b;e.focus()}else d.value="",e.removeClass("placeholder"),d==g()&&d.select()}function f(){var a,b=this,f=c(b),g=this.id;if(""==b.value){if("password"==b.type){if(!f.data("placeholder-textinput")){try{a=f.clone().attr({type:"text"})}catch(h){a=c("<input>").attr(c.extend(d(this),{type:"text"}))}a.removeAttr("name").data({"placeholder-password":f,"placeholder-id":g}).bind("focus.placeholder",e),f.data({"placeholder-textinput":a,"placeholder-id":g}).before(a)}f=f.removeAttr("id").hide().prev().attr("id",g).show()}f.addClass("placeholder"),f[0].value=f.attr("placeholder")}else f.removeClass("placeholder")}function g(){try{return b.activeElement}catch(a){}}var h,i,j="[object OperaMini]"==Object.prototype.toString.call(a.operamini),k="placeholder"in b.createElement("input")&&!j,l="placeholder"in b.createElement("textarea")&&!j,m=c.fn,n=c.valHooks,o=c.propHooks;k&&l?(i=m.placeholder=function(){return this},i.input=i.textarea=!0):(i=m.placeholder=function(){var a=this;return a.filter((k?"textarea":":input")+"[placeholder]").not(".placeholder").bind({"focus.placeholder":e,"blur.placeholder":f}).data("placeholder-enabled",!0).trigger("blur.placeholder"),a},i.input=k,i.textarea=l,h={get:function(a){var b=c(a),d=b.data("placeholder-password");return d?d[0].value:b.data("placeholder-enabled")&&b.hasClass("placeholder")?"":a.value},set:function(a,b){var d=c(a),h=d.data("placeholder-password");return h?h[0].value=b:d.data("placeholder-enabled")?(""==b?(a.value=b,a!=g()&&f.call(a)):d.hasClass("placeholder")?e.call(a,!0,b)||(a.value=b):a.value=b,d):a.value=b}},k||(n.input=h,o.value=h),l||(n.textarea=h,o.value=h),c(function(){c(b).delegate("form","submit.placeholder",function(){var a=c(".placeholder",this).each(e);setTimeout(function(){a.each(f)},10)})}),c(a).bind("beforeunload.placeholder",function(){c(".placeholder").each(function(){this.value=""})}))}(this,document,jQuery);
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// Foundation by ZURB
|
|
2
|
+
// foundation.zurb.com
|
|
3
|
+
// Licensed under MIT Open Source
|
|
4
|
+
|
|
5
|
+
// Make sure the charset is set appropriately
|
|
6
|
+
@charset "UTF-8";
|
|
7
|
+
|
|
8
|
+
// Behold, here are all the Foundation components.
|
|
9
|
+
@import
|
|
10
|
+
"foundation/components/grid",
|
|
11
|
+
"foundation/components/accordion",
|
|
12
|
+
"foundation/components/alert-boxes",
|
|
13
|
+
"foundation/components/block-grid",
|
|
14
|
+
"foundation/components/breadcrumbs",
|
|
15
|
+
"foundation/components/button-groups",
|
|
16
|
+
"foundation/components/buttons",
|
|
17
|
+
"foundation/components/clearing",
|
|
18
|
+
"foundation/components/dropdown",
|
|
19
|
+
"foundation/components/dropdown-buttons",
|
|
20
|
+
"foundation/components/flex-video",
|
|
21
|
+
"foundation/components/forms",
|
|
22
|
+
"foundation/components/inline-lists",
|
|
23
|
+
"foundation/components/joyride",
|
|
24
|
+
"foundation/components/keystrokes",
|
|
25
|
+
"foundation/components/labels",
|
|
26
|
+
"foundation/components/magellan",
|
|
27
|
+
"foundation/components/orbit",
|
|
28
|
+
"foundation/components/pagination",
|
|
29
|
+
"foundation/components/panels",
|
|
30
|
+
"foundation/components/pricing-tables",
|
|
31
|
+
"foundation/components/progress-bars",
|
|
32
|
+
"foundation/components/range-slider",
|
|
33
|
+
"foundation/components/reveal",
|
|
34
|
+
"foundation/components/side-nav",
|
|
35
|
+
"foundation/components/split-buttons",
|
|
36
|
+
"foundation/components/sub-nav",
|
|
37
|
+
"foundation/components/switch",
|
|
38
|
+
"foundation/components/tables",
|
|
39
|
+
"foundation/components/tabs",
|
|
40
|
+
"foundation/components/thumbs",
|
|
41
|
+
"foundation/components/tooltips",
|
|
42
|
+
"foundation/components/top-bar",
|
|
43
|
+
"foundation/components/type",
|
|
44
|
+
"foundation/components/offcanvas",
|
|
45
|
+
"foundation/components/visibility";
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
// Foundation by ZURB
|
|
2
|
+
// foundation.zurb.com
|
|
3
|
+
// Licensed under MIT Open Source
|
|
4
|
+
|
|
5
|
+
// This is the default html and body font-size for the base rem value.
|
|
6
|
+
$rem-base: 16px !default;
|
|
7
|
+
|
|
8
|
+
// IMPORT ONCE
|
|
9
|
+
// We use this to prevent styles from being loaded multiple times for compenents that rely on other components.
|
|
10
|
+
$modules: () !default;
|
|
11
|
+
@mixin exports($name) {
|
|
12
|
+
@if (index($modules, $name) == false) {
|
|
13
|
+
$modules: append($modules, $name);
|
|
14
|
+
@content;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
//
|
|
19
|
+
// @functions
|
|
20
|
+
//
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
// RANGES
|
|
24
|
+
// We use these functions to define ranges for various things, like media queries.
|
|
25
|
+
@function lower-bound($range){
|
|
26
|
+
@if length($range) <= 0 {
|
|
27
|
+
@return 0;
|
|
28
|
+
}
|
|
29
|
+
@return nth($range,1);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
@function upper-bound($range) {
|
|
33
|
+
@if length($range) < 2 {
|
|
34
|
+
@return 999999999999;
|
|
35
|
+
}
|
|
36
|
+
@return nth($range, 2);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// STRIP UNIT
|
|
40
|
+
// It strips the unit of measure and returns it
|
|
41
|
+
@function strip-unit($num) {
|
|
42
|
+
@return $num / ($num * 0 + 1);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// CONVERT TO REM
|
|
46
|
+
@function convert-to-rem($value, $base-value: $rem-base) {
|
|
47
|
+
$value: strip-unit($value) / strip-unit($base-value) * 1rem;
|
|
48
|
+
@if ($value == 0rem) { $value: 0; } // Turn 0rem into 0
|
|
49
|
+
@return $value;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@function data($attr) {
|
|
53
|
+
@if $namespace {
|
|
54
|
+
@return '[data-' + $namespace + '-' + $attr + ']';
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
@return '[data-' + $attr + ']';
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// REM CALC
|
|
61
|
+
|
|
62
|
+
// New Syntax, allows to optionally calculate on a different base value to counter compounding effect of rem's.
|
|
63
|
+
// Call with 1, 2, 3 or 4 parameters, 'px' is not required but supported:
|
|
64
|
+
//
|
|
65
|
+
// rem-calc(10 20 30px 40);
|
|
66
|
+
//
|
|
67
|
+
// Space delimited, if you want to delimit using comma's, wrap it in another pair of brackets
|
|
68
|
+
//
|
|
69
|
+
// rem-calc((10, 20, 30, 40px));
|
|
70
|
+
//
|
|
71
|
+
// Optionally call with a different base (eg: 8px) to calculate rem.
|
|
72
|
+
//
|
|
73
|
+
// rem-calc(16px 32px 48px, 8px);
|
|
74
|
+
//
|
|
75
|
+
// If you require to comma separate your list
|
|
76
|
+
//
|
|
77
|
+
// rem-calc((16px, 32px, 48), 8px);
|
|
78
|
+
|
|
79
|
+
@function rem-calc($values, $base-value: $rem-base) {
|
|
80
|
+
$max: length($values);
|
|
81
|
+
|
|
82
|
+
@if $max == 1 { @return convert-to-rem(nth($values, 1), $base-value); }
|
|
83
|
+
|
|
84
|
+
$remValues: ();
|
|
85
|
+
@for $i from 1 through $max {
|
|
86
|
+
$remValues: append($remValues, convert-to-rem(nth($values, $i), $base-value));
|
|
87
|
+
}
|
|
88
|
+
@return $remValues;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// OLD EM CALC
|
|
92
|
+
// Deprecated: We'll drop support for this in 5.1.0, use rem-calc()
|
|
93
|
+
@function emCalc($values){
|
|
94
|
+
@return rem-calc($values);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
// OLD EM CALC
|
|
98
|
+
// Deprecated: We'll drop support for this in 5.1.0, use rem-calc()
|
|
99
|
+
@function em-calc($values){
|
|
100
|
+
@return rem-calc($values);
|
|
101
|
+
}
|
|
@@ -0,0 +1,1289 @@
|
|
|
1
|
+
// Foundation by ZURB
|
|
2
|
+
// foundation.zurb.com
|
|
3
|
+
// Licensed under MIT Open Source
|
|
4
|
+
|
|
5
|
+
//
|
|
6
|
+
// FOUNDATION SETTINGS
|
|
7
|
+
//
|
|
8
|
+
|
|
9
|
+
// This is the default html and body font-size for the base rem value.
|
|
10
|
+
// $rem-base: 16px;
|
|
11
|
+
|
|
12
|
+
// Allows the use of rem-calc() or lower-bound() in your settings
|
|
13
|
+
@import "foundation/functions";
|
|
14
|
+
|
|
15
|
+
// $experimental: true;
|
|
16
|
+
|
|
17
|
+
// The default font-size is set to 100% of the browser style sheet (usually 16px)
|
|
18
|
+
// for compatibility with browser-based text zoom or user-set defaults.
|
|
19
|
+
|
|
20
|
+
// Since the typical default browser font-size is 16px, that makes the calculation for grid size.
|
|
21
|
+
// If you want your base font-size to be different and not have it affect the grid breakpoints,
|
|
22
|
+
// set $rem-base to $base-font-size and make sure $base-font-size is a px value.
|
|
23
|
+
// $base-font-size: 100%;
|
|
24
|
+
|
|
25
|
+
// The $base-font-size is 100% while $base-line-height is 150%
|
|
26
|
+
// $base-line-height: 150%;
|
|
27
|
+
|
|
28
|
+
// We use this to control whether or not CSS classes come through in the gem files.
|
|
29
|
+
// $include-html-classes: true;
|
|
30
|
+
// $include-print-styles: true;
|
|
31
|
+
// $include-html-global-classes: $include-html-classes;
|
|
32
|
+
|
|
33
|
+
// Grid
|
|
34
|
+
|
|
35
|
+
// $include-html-grid-classes: $include-html-classes;
|
|
36
|
+
// $include-xl-html-grid-classes: false;
|
|
37
|
+
|
|
38
|
+
// $row-width: rem-calc(1000);
|
|
39
|
+
// $total-columns: 12;
|
|
40
|
+
|
|
41
|
+
// Global
|
|
42
|
+
|
|
43
|
+
// We use these to control various global styles
|
|
44
|
+
// $body-bg: #fff;
|
|
45
|
+
// $body-font-color: #222;
|
|
46
|
+
// $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
|
47
|
+
// $body-font-weight: $font-weight-normal;
|
|
48
|
+
// $body-font-style: normal;
|
|
49
|
+
|
|
50
|
+
// We use this to control font-smoothing
|
|
51
|
+
// $font-smoothing: antialiased;
|
|
52
|
+
|
|
53
|
+
// We use these to control text direction settings
|
|
54
|
+
// $text-direction: ltr;
|
|
55
|
+
// $opposite-direction: right;
|
|
56
|
+
// $default-float: left;
|
|
57
|
+
|
|
58
|
+
// We use these as default colors throughout
|
|
59
|
+
// $primary-color: #008CBA;
|
|
60
|
+
// $secondary-color: #e7e7e7;
|
|
61
|
+
// $alert-color: #f04124;
|
|
62
|
+
// $success-color: #43AC6A;
|
|
63
|
+
// $warning-color: #f08a24;
|
|
64
|
+
// $info-color: #a0d3e8;
|
|
65
|
+
|
|
66
|
+
// We use these to make sure border radius matches unless we want it different.
|
|
67
|
+
// $global-radius: 3px;
|
|
68
|
+
// $global-rounded: 1000px;
|
|
69
|
+
|
|
70
|
+
// We use these to control inset shadow shiny edges and depressions.
|
|
71
|
+
// $shiny-edge-size: 0 1px 0;
|
|
72
|
+
// $shiny-edge-color: rgba(#fff, .5);
|
|
73
|
+
// $shiny-edge-active-color: rgba(#000, .2);
|
|
74
|
+
|
|
75
|
+
// $column-gutter: rem-calc(30);
|
|
76
|
+
|
|
77
|
+
// Media Query Ranges
|
|
78
|
+
// $small-range: (0em, 40em);
|
|
79
|
+
// $medium-range: (40.063em, 64em);
|
|
80
|
+
// $large-range: (64.063em, 90em);
|
|
81
|
+
// $xlarge-range: (90.063em, 120em);
|
|
82
|
+
// $xxlarge-range: (120.063em, 99999999em);
|
|
83
|
+
|
|
84
|
+
// $screen: "only screen";
|
|
85
|
+
|
|
86
|
+
// $landscape: "#{$screen} and (orientation: landscape)";
|
|
87
|
+
// $portrait: "#{$screen} and (orientation: portrait)";
|
|
88
|
+
|
|
89
|
+
// $small-up: $screen;
|
|
90
|
+
// $small-only: "#{$screen} and (max-width: #{upper-bound($small-range)})";
|
|
91
|
+
|
|
92
|
+
// $medium-up: "#{$screen} and (min-width:#{lower-bound($medium-range)})";
|
|
93
|
+
// $medium-only: "#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})";
|
|
94
|
+
|
|
95
|
+
// $large-up: "#{$screen} and (min-width:#{lower-bound($large-range)})";
|
|
96
|
+
// $large-only: "#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})";
|
|
97
|
+
|
|
98
|
+
// $xlarge-up: "#{$screen} and (min-width:#{lower-bound($xlarge-range)})";
|
|
99
|
+
// $xlarge-only: "#{$screen} and (min-width:#{lower-bound($xlarge-range)}) and (max-width:#{upper-bound($xlarge-range)})";
|
|
100
|
+
|
|
101
|
+
// $xxlarge-up: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)})";
|
|
102
|
+
// $xxlarge-only: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)}) and (max-width:#{upper-bound($xxlarge-range)})";
|
|
103
|
+
|
|
104
|
+
// Legacy
|
|
105
|
+
// $small: $medium-up;
|
|
106
|
+
// $medium: $medium-up;
|
|
107
|
+
// $large: $large-up;
|
|
108
|
+
|
|
109
|
+
//We use this as cursors values for enabling the option of having custom cursors in the whole site's stylesheet
|
|
110
|
+
// $cursor-crosshair-value: crosshair;
|
|
111
|
+
// $cursor-default-value: default;
|
|
112
|
+
// $cursor-pointer-value: pointer;
|
|
113
|
+
// $cursor-help-value: help;
|
|
114
|
+
// $cursor-text-value: text;
|
|
115
|
+
|
|
116
|
+
//
|
|
117
|
+
// TYPOGRAPHY
|
|
118
|
+
//
|
|
119
|
+
|
|
120
|
+
// $include-html-type-classes: $include-html-classes;
|
|
121
|
+
|
|
122
|
+
// We use these to control header font styles
|
|
123
|
+
// $header-font-family: $body-font-family;
|
|
124
|
+
// $header-font-weight: $font-weight-normal;
|
|
125
|
+
// $header-font-style: normal;
|
|
126
|
+
// $header-font-color: #222;
|
|
127
|
+
// $header-line-height: 1.4;
|
|
128
|
+
// $header-top-margin: .2rem;
|
|
129
|
+
// $header-bottom-margin: .5rem;
|
|
130
|
+
// $header-text-rendering: optimizeLegibility;
|
|
131
|
+
|
|
132
|
+
// We use these to control header font sizes
|
|
133
|
+
// $h1-font-size: rem-calc(44);
|
|
134
|
+
// $h2-font-size: rem-calc(37);
|
|
135
|
+
// $h3-font-size: rem-calc(27);
|
|
136
|
+
// $h4-font-size: rem-calc(23);
|
|
137
|
+
// $h5-font-size: rem-calc(18);
|
|
138
|
+
// $h6-font-size: 1rem;
|
|
139
|
+
|
|
140
|
+
// These control how subheaders are styled.
|
|
141
|
+
// $subheader-line-height: 1.4;
|
|
142
|
+
// $subheader-font-color: scale-color($header-font-color, $lightness: 35%);
|
|
143
|
+
// $subheader-font-weight: $font-weight-normal;
|
|
144
|
+
// $subheader-top-margin: .2rem;
|
|
145
|
+
// $subheader-bottom-margin: .5rem;
|
|
146
|
+
|
|
147
|
+
// A general <small> styling
|
|
148
|
+
// $small-font-size: 60%;
|
|
149
|
+
// $small-font-color: scale-color($header-font-color, $lightness: 35%);
|
|
150
|
+
|
|
151
|
+
// We use these to style paragraphs
|
|
152
|
+
// $paragraph-font-family: inherit;
|
|
153
|
+
// $paragraph-font-weight: $font-weight-normal;
|
|
154
|
+
// $paragraph-font-size: 1rem;
|
|
155
|
+
// $paragraph-line-height: 1.6;
|
|
156
|
+
// $paragraph-margin-bottom: rem-calc(20);
|
|
157
|
+
// $paragraph-aside-font-size: rem-calc(14);
|
|
158
|
+
// $paragraph-aside-line-height: 1.35;
|
|
159
|
+
// $paragraph-aside-font-style: italic;
|
|
160
|
+
// $paragraph-text-rendering: optimizeLegibility;
|
|
161
|
+
|
|
162
|
+
// We use these to style <code> tags
|
|
163
|
+
// $code-color: scale-color($alert-color, $lightness: -27%);
|
|
164
|
+
// $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
|
|
165
|
+
// $code-font-weight: $font-weight-bold;
|
|
166
|
+
|
|
167
|
+
// We use these to style anchors
|
|
168
|
+
// $anchor-text-decoration: none;
|
|
169
|
+
// $anchor-text-decoration-hover: none;
|
|
170
|
+
// $anchor-font-color: $primary-color;
|
|
171
|
+
// $anchor-font-color-hover: scale-color($primary-color, $lightness: -14%);
|
|
172
|
+
|
|
173
|
+
// We use these to style the <hr> element
|
|
174
|
+
// $hr-border-width: 1px;
|
|
175
|
+
// $hr-border-style: solid;
|
|
176
|
+
// $hr-border-color: #ddd;
|
|
177
|
+
// $hr-margin: rem-calc(20);
|
|
178
|
+
|
|
179
|
+
// We use these to style lists
|
|
180
|
+
// $list-font-family: $paragraph-font-family;
|
|
181
|
+
// $list-font-size: $paragraph-font-size;
|
|
182
|
+
// $list-line-height: $paragraph-line-height;
|
|
183
|
+
// $list-margin-bottom: $paragraph-margin-bottom;
|
|
184
|
+
// $list-style-position: outside;
|
|
185
|
+
// $list-side-margin: 1.1rem;
|
|
186
|
+
// $list-ordered-side-margin: 1.4rem;
|
|
187
|
+
// $list-side-margin-no-bullet: 0;
|
|
188
|
+
// $list-nested-margin: rem-calc(20);
|
|
189
|
+
// $definition-list-header-weight: $font-weight-bold;
|
|
190
|
+
// $definition-list-header-margin-bottom: .3rem;
|
|
191
|
+
// $definition-list-margin-bottom: rem-calc(12);
|
|
192
|
+
|
|
193
|
+
// We use these to style blockquotes
|
|
194
|
+
// $blockquote-font-color: scale-color($header-font-color, $lightness: 35%);
|
|
195
|
+
// $blockquote-padding: rem-calc(9 20 0 19);
|
|
196
|
+
// $blockquote-border: 1px solid #ddd;
|
|
197
|
+
// $blockquote-cite-font-size: rem-calc(13);
|
|
198
|
+
// $blockquote-cite-font-color: scale-color($header-font-color, $lightness: 23%);
|
|
199
|
+
// $blockquote-cite-link-color: $blockquote-cite-font-color;
|
|
200
|
+
|
|
201
|
+
// Acronym styles
|
|
202
|
+
// $acronym-underline: 1px dotted #ddd;
|
|
203
|
+
|
|
204
|
+
// We use these to control padding and margin
|
|
205
|
+
// $microformat-padding: rem-calc(10 12);
|
|
206
|
+
// $microformat-margin: rem-calc(0 0 20 0);
|
|
207
|
+
|
|
208
|
+
// We use these to control the border styles
|
|
209
|
+
// $microformat-border-width: 1px;
|
|
210
|
+
// $microformat-border-style: solid;
|
|
211
|
+
// $microformat-border-color: #ddd;
|
|
212
|
+
|
|
213
|
+
// We use these to control full name font styles
|
|
214
|
+
// $microformat-fullname-font-weight: $font-weight-bold;
|
|
215
|
+
// $microformat-fullname-font-size: rem-calc(15);
|
|
216
|
+
|
|
217
|
+
// We use this to control the summary font styles
|
|
218
|
+
// $microformat-summary-font-weight: $font-weight-bold;
|
|
219
|
+
|
|
220
|
+
// We use this to control abbr padding
|
|
221
|
+
// $microformat-abbr-padding: rem-calc(0 1);
|
|
222
|
+
|
|
223
|
+
// We use this to control abbr font styles
|
|
224
|
+
// $microformat-abbr-font-weight: $font-weight-bold;
|
|
225
|
+
// $microformat-abbr-font-decoration: none;
|
|
226
|
+
|
|
227
|
+
// Accordion
|
|
228
|
+
|
|
229
|
+
// $include-html-accordion-classes: $include-html-classes;
|
|
230
|
+
|
|
231
|
+
// $accordion-navigation-padding: rem-calc(16);
|
|
232
|
+
// $accordion-navigation-bg-color: #efefef ;
|
|
233
|
+
// $accordion-navigation-hover-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -5%);
|
|
234
|
+
// $accordion-navigation-active-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -3%);
|
|
235
|
+
// $accordion-navigation-font-color: #222;
|
|
236
|
+
// $accordion-navigation-font-size: rem-calc(16);
|
|
237
|
+
// $accordion-navigation-font-family: $body-font-family;
|
|
238
|
+
|
|
239
|
+
// $accordion-content-padding: $column-gutter/2;
|
|
240
|
+
// $accordion-content-active-bg-color: #fff;
|
|
241
|
+
|
|
242
|
+
// Alert Boxes
|
|
243
|
+
|
|
244
|
+
// $include-html-alert-classes: $include-html-classes;
|
|
245
|
+
|
|
246
|
+
// We use this to control alert padding.
|
|
247
|
+
// $alert-padding-top: rem-calc(14);
|
|
248
|
+
// $alert-padding-default-float: $alert-padding-top;
|
|
249
|
+
// $alert-padding-opposite-direction: $alert-padding-top + rem-calc(10);
|
|
250
|
+
// $alert-padding-bottom: $alert-padding-top;
|
|
251
|
+
|
|
252
|
+
// We use these to control text style.
|
|
253
|
+
// $alert-font-weight: $font-weight-normal;
|
|
254
|
+
// $alert-font-size: rem-calc(13);
|
|
255
|
+
// $alert-font-color: #fff;
|
|
256
|
+
// $alert-font-color-alt: scale-color($secondary-color, $lightness: -66%);
|
|
257
|
+
|
|
258
|
+
// We use this for close hover effect.
|
|
259
|
+
// $alert-function-factor: -14%;
|
|
260
|
+
|
|
261
|
+
// We use these to control border styles.
|
|
262
|
+
// $alert-border-style: solid;
|
|
263
|
+
// $alert-border-width: 1px;
|
|
264
|
+
// $alert-border-color: scale-color($primary-color, $lightness: $alert-function-factor);
|
|
265
|
+
// $alert-bottom-margin: rem-calc(20);
|
|
266
|
+
|
|
267
|
+
// We use these to style the close buttons
|
|
268
|
+
// $alert-close-color: #333;
|
|
269
|
+
// $alert-close-top: 50%;
|
|
270
|
+
// $alert-close-position: rem-calc(4);
|
|
271
|
+
// $alert-close-font-size: rem-calc(22);
|
|
272
|
+
// $alert-close-opacity: 0.3;
|
|
273
|
+
// $alert-close-opacity-hover: 0.5;
|
|
274
|
+
// $alert-close-padding: 9px 6px 4px;
|
|
275
|
+
|
|
276
|
+
// We use this to control border radius
|
|
277
|
+
// $alert-radius: $global-radius;
|
|
278
|
+
|
|
279
|
+
// We use this to control transition effects
|
|
280
|
+
// $alert-transition-speed: 300ms;
|
|
281
|
+
// $alert-transition-ease: ease-out;
|
|
282
|
+
|
|
283
|
+
// Block Grid
|
|
284
|
+
|
|
285
|
+
// $include-html-grid-classes: $include-html-classes;
|
|
286
|
+
// $include-xl-html-block-grid-classes: false;
|
|
287
|
+
|
|
288
|
+
// We use this to control the maximum number of block grid elements per row
|
|
289
|
+
// $block-grid-elements: 12;
|
|
290
|
+
// $block-grid-default-spacing: rem-calc(20);
|
|
291
|
+
// $align-block-grid-to-grid: false;
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
|
|
295
|
+
// $block-grid-media-queries: true;
|
|
296
|
+
|
|
297
|
+
// Breadcrumbs
|
|
298
|
+
|
|
299
|
+
// $include-html-nav-classes: $include-html-classes;
|
|
300
|
+
|
|
301
|
+
// We use this to set the background color for the breadcrumb container.
|
|
302
|
+
// $crumb-bg: scale-color($secondary-color, $lightness: 55%);
|
|
303
|
+
|
|
304
|
+
// We use these to set the padding around the breadcrumbs.
|
|
305
|
+
// $crumb-padding: rem-calc(9 14 9);
|
|
306
|
+
// $crumb-side-padding: rem-calc(12);
|
|
307
|
+
|
|
308
|
+
// We use these to control border styles.
|
|
309
|
+
// $crumb-function-factor: -10%;
|
|
310
|
+
// $crumb-border-size: 1px;
|
|
311
|
+
// $crumb-border-style: solid;
|
|
312
|
+
// $crumb-border-color: scale-color($crumb-bg, $lightness: $crumb-function-factor);
|
|
313
|
+
// $crumb-radius: $global-radius;
|
|
314
|
+
|
|
315
|
+
// We use these to set various text styles for breadcrumbs.
|
|
316
|
+
// $crumb-font-size: rem-calc(11);
|
|
317
|
+
// $crumb-font-color: $primary-color;
|
|
318
|
+
// $crumb-font-color-current: #333;
|
|
319
|
+
// $crumb-font-color-unavailable: #999;
|
|
320
|
+
// $crumb-font-transform: uppercase;
|
|
321
|
+
// $crumb-link-decor: underline;
|
|
322
|
+
|
|
323
|
+
// We use these to control the slash between breadcrumbs
|
|
324
|
+
// $crumb-slash-color: #aaa;
|
|
325
|
+
// $crumb-slash: "/";
|
|
326
|
+
|
|
327
|
+
//
|
|
328
|
+
// BUTTONS
|
|
329
|
+
//
|
|
330
|
+
|
|
331
|
+
// $include-html-button-classes: $include-html-classes;
|
|
332
|
+
|
|
333
|
+
// We use these to build padding for buttons.
|
|
334
|
+
// $button-tny: rem-calc(10);
|
|
335
|
+
// $button-sml: rem-calc(14);
|
|
336
|
+
// $button-med: rem-calc(16);
|
|
337
|
+
// $button-lrg: rem-calc(18);
|
|
338
|
+
|
|
339
|
+
// We use this to control the display property.
|
|
340
|
+
// $button-display: inline-block;
|
|
341
|
+
// $button-margin-bottom: rem-calc(20);
|
|
342
|
+
|
|
343
|
+
// We use these to control button text styles.
|
|
344
|
+
// $button-font-family: $body-font-family;
|
|
345
|
+
// $button-font-color: #fff;
|
|
346
|
+
// $button-font-color-alt: #333;
|
|
347
|
+
// $button-font-tny: rem-calc(11);
|
|
348
|
+
// $button-font-sml: rem-calc(13);
|
|
349
|
+
// $button-font-med: rem-calc(16);
|
|
350
|
+
// $button-font-lrg: rem-calc(20);
|
|
351
|
+
// $button-font-weight: $font-weight-normal;
|
|
352
|
+
// $button-font-align: center;
|
|
353
|
+
|
|
354
|
+
// We use these to control various hover effects.
|
|
355
|
+
// $button-function-factor: -20%;
|
|
356
|
+
|
|
357
|
+
// We use these to control button border styles.
|
|
358
|
+
// $button-border-width: 0px;
|
|
359
|
+
// $button-border-style: solid;
|
|
360
|
+
// $button-bg: $primary-color;
|
|
361
|
+
// $button-border-color: scale-color($bg, $lightness: $button-function-factor);
|
|
362
|
+
|
|
363
|
+
// We use this to set the default radius used throughout the core.
|
|
364
|
+
// $button-radius: $global-radius;
|
|
365
|
+
// $button-round: $global-rounded;
|
|
366
|
+
|
|
367
|
+
// We use this to set default opacity for disabled buttons.
|
|
368
|
+
// $button-disabled-opacity: 0.7;
|
|
369
|
+
|
|
370
|
+
// Button Groups
|
|
371
|
+
|
|
372
|
+
// $include-html-button-classes: $include-html-classes;
|
|
373
|
+
|
|
374
|
+
// Sets the margin for the right side by default, and the left margin if right-to-left direction is used
|
|
375
|
+
// $button-bar-margin-opposite: rem-calc(10);
|
|
376
|
+
// $button-group-border-width: 1px;
|
|
377
|
+
|
|
378
|
+
// Clearing
|
|
379
|
+
|
|
380
|
+
// $include-html-clearing-classes: $include-html-classes;
|
|
381
|
+
|
|
382
|
+
// We use these to set the background colors for parts of Clearing.
|
|
383
|
+
// $clearing-bg: #333;
|
|
384
|
+
// $clearing-caption-bg: $clearing-bg;
|
|
385
|
+
// $clearing-carousel-bg: rgba(51,51,51,0.8);
|
|
386
|
+
// $clearing-img-bg: $clearing-bg;
|
|
387
|
+
|
|
388
|
+
// We use these to style the close button
|
|
389
|
+
// $clearing-close-color: #ccc;
|
|
390
|
+
// $clearing-close-size: 30px;
|
|
391
|
+
|
|
392
|
+
// We use these to style the arrows
|
|
393
|
+
// $clearing-arrow-size: 12px;
|
|
394
|
+
// $clearing-arrow-color: $clearing-close-color;
|
|
395
|
+
|
|
396
|
+
// We use these to style captions
|
|
397
|
+
// $clearing-caption-font-color: #ccc;
|
|
398
|
+
// $clearing-caption-font-size: 0.875em;
|
|
399
|
+
// $clearing-caption-padding: 10px 30px 20px;
|
|
400
|
+
|
|
401
|
+
// We use these to make the image and carousel height and style
|
|
402
|
+
// $clearing-active-img-height: 85%;
|
|
403
|
+
// $clearing-carousel-height: 120px;
|
|
404
|
+
// $clearing-carousel-thumb-width: 120px;
|
|
405
|
+
// $clearing-carousel-thumb-active-border: 1px solid rgb(255,255,255);
|
|
406
|
+
|
|
407
|
+
// Dropdown
|
|
408
|
+
|
|
409
|
+
// $include-html-dropdown-classes: $include-html-classes;
|
|
410
|
+
|
|
411
|
+
// We use these to controls height and width styles.
|
|
412
|
+
// $f-dropdown-max-width: 200px;
|
|
413
|
+
// $f-dropdown-height: auto;
|
|
414
|
+
// $f-dropdown-max-height: none;
|
|
415
|
+
|
|
416
|
+
// Used for bottom position
|
|
417
|
+
// $f-dropdown-margin-top: 2px;
|
|
418
|
+
|
|
419
|
+
// Used for right position
|
|
420
|
+
// $f-dropdown-margin-left: $f-dropdown-margin-top;
|
|
421
|
+
|
|
422
|
+
// Used for left position
|
|
423
|
+
// $f-dropdown-margin-right: $f-dropdown-margin-top;
|
|
424
|
+
|
|
425
|
+
// Used for top position
|
|
426
|
+
// $f-dropdown-margin-bottom: $f-dropdown-margin-top;
|
|
427
|
+
|
|
428
|
+
// We use this to control the background color
|
|
429
|
+
// $f-dropdown-bg: #fff;
|
|
430
|
+
|
|
431
|
+
// We use this to set the border styles for dropdowns.
|
|
432
|
+
// $f-dropdown-border-style: solid;
|
|
433
|
+
// $f-dropdown-border-width: 1px;
|
|
434
|
+
// $f-dropdown-border-color: scale-color(#fff, $lightness: -20%);
|
|
435
|
+
|
|
436
|
+
// We use these to style the triangle pip.
|
|
437
|
+
// $f-dropdown-triangle-size: 6px;
|
|
438
|
+
// $f-dropdown-triangle-color: #fff;
|
|
439
|
+
// $f-dropdown-triangle-side-offset: 10px;
|
|
440
|
+
|
|
441
|
+
// We use these to control styles for the list elements.
|
|
442
|
+
// $f-dropdown-list-style: none;
|
|
443
|
+
// $f-dropdown-font-color: #555;
|
|
444
|
+
// $f-dropdown-font-size: rem-calc(14);
|
|
445
|
+
// $f-dropdown-list-padding: rem-calc(5, 10);
|
|
446
|
+
// $f-dropdown-line-height: rem-calc(18);
|
|
447
|
+
// $f-dropdown-list-hover-bg: #eeeeee ;
|
|
448
|
+
// $dropdown-mobile-default-float: 0;
|
|
449
|
+
|
|
450
|
+
// We use this to control the styles for when the dropdown has custom content.
|
|
451
|
+
// $f-dropdown-content-padding: rem-calc(20);
|
|
452
|
+
|
|
453
|
+
// Dropdown Buttons
|
|
454
|
+
|
|
455
|
+
// $include-html-button-classes: $include-html-classes;
|
|
456
|
+
|
|
457
|
+
// We use these to set the color of the pip in dropdown buttons
|
|
458
|
+
// $dropdown-button-pip-color: #fff;
|
|
459
|
+
// $dropdown-button-pip-color-alt: #333;
|
|
460
|
+
|
|
461
|
+
// $button-pip-tny: rem-calc(6);
|
|
462
|
+
// $button-pip-sml: rem-calc(7);
|
|
463
|
+
// $button-pip-med: rem-calc(9);
|
|
464
|
+
// $button-pip-lrg: rem-calc(11);
|
|
465
|
+
|
|
466
|
+
// We use these to style tiny dropdown buttons
|
|
467
|
+
// $dropdown-button-padding-tny: $button-pip-tny * 7;
|
|
468
|
+
// $dropdown-button-pip-size-tny: $button-pip-tny;
|
|
469
|
+
// $dropdown-button-pip-opposite-tny: $button-pip-tny * 3;
|
|
470
|
+
// $dropdown-button-pip-top-tny: -$button-pip-tny / 2 + rem-calc(1);
|
|
471
|
+
|
|
472
|
+
// We use these to style small dropdown buttons
|
|
473
|
+
// $dropdown-button-padding-sml: $button-pip-sml * 7;
|
|
474
|
+
// $dropdown-button-pip-size-sml: $button-pip-sml;
|
|
475
|
+
// $dropdown-button-pip-opposite-sml: $button-pip-sml * 3;
|
|
476
|
+
// $dropdown-button-pip-top-sml: -$button-pip-sml / 2 + rem-calc(1);
|
|
477
|
+
|
|
478
|
+
// We use these to style medium dropdown buttons
|
|
479
|
+
// $dropdown-button-padding-med: $button-pip-med * 6 + rem-calc(3);
|
|
480
|
+
// $dropdown-button-pip-size-med: $button-pip-med - rem-calc(3);
|
|
481
|
+
// $dropdown-button-pip-opposite-med: $button-pip-med * 2.5;
|
|
482
|
+
// $dropdown-button-pip-top-med: -$button-pip-med / 2 + rem-calc(2);
|
|
483
|
+
|
|
484
|
+
// We use these to style large dropdown buttons
|
|
485
|
+
// $dropdown-button-padding-lrg: $button-pip-lrg * 5 + rem-calc(3);
|
|
486
|
+
// $dropdown-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
|
|
487
|
+
// $dropdown-button-pip-opposite-lrg: $button-pip-lrg * 2.5;
|
|
488
|
+
// $dropdown-button-pip-top-lrg: -$button-pip-lrg / 2 + rem-calc(3);
|
|
489
|
+
|
|
490
|
+
// Flex Video
|
|
491
|
+
|
|
492
|
+
// $include-html-media-classes: $include-html-classes;
|
|
493
|
+
|
|
494
|
+
// We use these to control video container padding and margins
|
|
495
|
+
// $flex-video-padding-top: rem-calc(25);
|
|
496
|
+
// $flex-video-padding-bottom: 67.5%;
|
|
497
|
+
// $flex-video-margin-bottom: rem-calc(16);
|
|
498
|
+
|
|
499
|
+
// We use this to control widescreen bottom padding
|
|
500
|
+
// $flex-video-widescreen-padding-bottom: 56.34%;
|
|
501
|
+
|
|
502
|
+
// Forms
|
|
503
|
+
|
|
504
|
+
// $include-html-form-classes: $include-html-classes;
|
|
505
|
+
|
|
506
|
+
// We use this to set the base for lots of form spacing and positioning styles
|
|
507
|
+
// $form-spacing: rem-calc(16);
|
|
508
|
+
|
|
509
|
+
// We use these to style the labels in different ways
|
|
510
|
+
// $form-label-pointer: pointer;
|
|
511
|
+
// $form-label-font-size: rem-calc(14);
|
|
512
|
+
// $form-label-font-weight: $font-weight-normal;
|
|
513
|
+
// $form-label-line-height: 1.5;
|
|
514
|
+
// $form-label-font-color: scale-color(#000, $lightness: 30%);
|
|
515
|
+
// $form-label-small-transform: capitalize;
|
|
516
|
+
// $form-label-bottom-margin: 0;
|
|
517
|
+
// $input-font-family: inherit;
|
|
518
|
+
// $input-font-color: rgba(0,0,0,0.75);
|
|
519
|
+
// $input-font-size: rem-calc(14);
|
|
520
|
+
// $input-bg-color: #fff;
|
|
521
|
+
// $input-focus-bg-color: scale-color(#fff, $lightness: -2%);
|
|
522
|
+
// $input-border-color: scale-color(#fff, $lightness: -20%);
|
|
523
|
+
// $input-focus-border-color: scale-color(#fff, $lightness: -40%);
|
|
524
|
+
// $input-border-style: solid;
|
|
525
|
+
// $input-border-width: 1px;
|
|
526
|
+
// $input-border-radius: $global-radius;
|
|
527
|
+
// $input-disabled-bg: #ddd;
|
|
528
|
+
// $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
|
|
529
|
+
// $input-include-glowing-effect: true;
|
|
530
|
+
|
|
531
|
+
// We use these to style the fieldset border and spacing.
|
|
532
|
+
// $fieldset-border-style: solid;
|
|
533
|
+
// $fieldset-border-width: 1px;
|
|
534
|
+
// $fieldset-border-color: #ddd;
|
|
535
|
+
// $fieldset-padding: rem-calc(20);
|
|
536
|
+
// $fieldset-margin: rem-calc(18 0);
|
|
537
|
+
|
|
538
|
+
// We use these to style the legends when you use them
|
|
539
|
+
// $legend-bg: #fff;
|
|
540
|
+
// $legend-font-weight: $font-weight-bold;
|
|
541
|
+
// $legend-padding: rem-calc(0 3);
|
|
542
|
+
|
|
543
|
+
// We use these to style the prefix and postfix input elements
|
|
544
|
+
// $input-prefix-bg: scale-color(#fff, $lightness: -5%);
|
|
545
|
+
// $input-prefix-border-color: scale-color(#fff, $lightness: -20%);
|
|
546
|
+
// $input-prefix-border-size: 1px;
|
|
547
|
+
// $input-prefix-border-type: solid;
|
|
548
|
+
// $input-prefix-overflow: hidden;
|
|
549
|
+
// $input-prefix-font-color: #333;
|
|
550
|
+
// $input-prefix-font-color-alt: #fff;
|
|
551
|
+
|
|
552
|
+
// We use these to style the error states for inputs and labels
|
|
553
|
+
// $input-error-message-padding: rem-calc(6 9 9);
|
|
554
|
+
// $input-error-message-top: -1px;
|
|
555
|
+
// $input-error-message-font-size: rem-calc(12);
|
|
556
|
+
// $input-error-message-font-weight: $font-weight-normal;
|
|
557
|
+
// $input-error-message-font-style: italic;
|
|
558
|
+
// $input-error-message-font-color: #fff;
|
|
559
|
+
// $input-error-message-font-color-alt: #333;
|
|
560
|
+
|
|
561
|
+
// We use this to style the glowing effect of inputs when focused
|
|
562
|
+
// $glowing-effect-fade-time: 0.45s;
|
|
563
|
+
// $glowing-effect-color: $input-focus-border-color;
|
|
564
|
+
|
|
565
|
+
// Select variables
|
|
566
|
+
// $select-bg-color: #fafafa;
|
|
567
|
+
// $select-hover-bg-color: scale-color($select-bg-color, $lightness: -3%);
|
|
568
|
+
|
|
569
|
+
// Inline Lists
|
|
570
|
+
|
|
571
|
+
// $include-html-inline-list-classes: $include-html-classes;
|
|
572
|
+
|
|
573
|
+
// We use this to control the margins and padding of the inline list.
|
|
574
|
+
// $inline-list-top-margin: 0;
|
|
575
|
+
// $inline-list-opposite-margin: 0;
|
|
576
|
+
// $inline-list-bottom-margin: rem-calc(17);
|
|
577
|
+
// $inline-list-default-float-margin: rem-calc(-22);
|
|
578
|
+
// $inline-list-default-float-list-margin: rem-calc(22);
|
|
579
|
+
|
|
580
|
+
// $inline-list-padding: 0;
|
|
581
|
+
|
|
582
|
+
// We use this to control the overflow of the inline list.
|
|
583
|
+
// $inline-list-overflow: hidden;
|
|
584
|
+
|
|
585
|
+
// We use this to control the list items
|
|
586
|
+
// $inline-list-display: block;
|
|
587
|
+
|
|
588
|
+
// We use this to control any elments within list items
|
|
589
|
+
// $inline-list-children-display: block;
|
|
590
|
+
|
|
591
|
+
// Joyride
|
|
592
|
+
|
|
593
|
+
// $include-html-joyride-classes: $include-html-classes;
|
|
594
|
+
|
|
595
|
+
// Controlling default Joyride styles
|
|
596
|
+
// $joyride-tip-bg: #333;
|
|
597
|
+
// $joyride-tip-default-width: 300px;
|
|
598
|
+
// $joyride-tip-padding: rem-calc(18 20 24);
|
|
599
|
+
// $joyride-tip-border: solid 1px #555;
|
|
600
|
+
// $joyride-tip-radius: 4px;
|
|
601
|
+
// $joyride-tip-position-offset: 22px;
|
|
602
|
+
|
|
603
|
+
// Here, we're setting the tip dont styles
|
|
604
|
+
// $joyride-tip-font-color: #fff;
|
|
605
|
+
// $joyride-tip-font-size: rem-calc(14);
|
|
606
|
+
// $joyride-tip-header-weight: $font-weight-bold;
|
|
607
|
+
|
|
608
|
+
// This changes the nub size
|
|
609
|
+
// $joyride-tip-nub-size: 10px;
|
|
610
|
+
|
|
611
|
+
// This adjusts the styles for the timer when its enabled
|
|
612
|
+
// $joyride-tip-timer-width: 50px;
|
|
613
|
+
// $joyride-tip-timer-height: 3px;
|
|
614
|
+
// $joyride-tip-timer-color: #666;
|
|
615
|
+
|
|
616
|
+
// This changes up the styles for the close button
|
|
617
|
+
// $joyride-tip-close-color: #777;
|
|
618
|
+
// $joyride-tip-close-size: 24px;
|
|
619
|
+
// $joyride-tip-close-weight: $font-weight-normal;
|
|
620
|
+
|
|
621
|
+
// When Joyride is filling the screen, we use this style for the bg
|
|
622
|
+
// $joyride-screenfill: rgba(0,0,0,0.5);
|
|
623
|
+
|
|
624
|
+
// Keystrokes
|
|
625
|
+
|
|
626
|
+
// $include-html-keystroke-classes: $include-html-classes;
|
|
627
|
+
|
|
628
|
+
// We use these to control text styles.
|
|
629
|
+
// $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
|
|
630
|
+
// $keystroke-font-size: inherit;
|
|
631
|
+
// $keystroke-font-color: #222;
|
|
632
|
+
// $keystroke-font-color-alt: #fff;
|
|
633
|
+
// $keystroke-function-factor: -7%;
|
|
634
|
+
|
|
635
|
+
// We use this to control keystroke padding.
|
|
636
|
+
// $keystroke-padding: rem-calc(2 4 0);
|
|
637
|
+
|
|
638
|
+
// We use these to control background and border styles.
|
|
639
|
+
// $keystroke-bg: scale-color(#fff, $lightness: $keystroke-function-factor);
|
|
640
|
+
// $keystroke-border-style: solid;
|
|
641
|
+
// $keystroke-border-width: 1px;
|
|
642
|
+
// $keystroke-border-color: scale-color($keystroke-bg, $lightness: $keystroke-function-factor);
|
|
643
|
+
// $keystroke-radius: $global-radius;
|
|
644
|
+
|
|
645
|
+
// Labels
|
|
646
|
+
|
|
647
|
+
// $include-html-label-classes: $include-html-classes;
|
|
648
|
+
|
|
649
|
+
// We use these to style the labels
|
|
650
|
+
// $label-padding: rem-calc(4 8 6);
|
|
651
|
+
// $label-radius: $global-radius;
|
|
652
|
+
|
|
653
|
+
// We use these to style the label text
|
|
654
|
+
// $label-font-sizing: rem-calc(11);
|
|
655
|
+
// $label-font-weight: $font-weight-normal;
|
|
656
|
+
// $label-font-color: #333;
|
|
657
|
+
// $label-font-color-alt: #fff;
|
|
658
|
+
// $label-font-family: $body-font-family;
|
|
659
|
+
|
|
660
|
+
// Magellan
|
|
661
|
+
|
|
662
|
+
// $include-html-magellan-classes: $include-html-classes;
|
|
663
|
+
|
|
664
|
+
// $magellan-bg: #fff;
|
|
665
|
+
// $magellan-padding: 10px;
|
|
666
|
+
|
|
667
|
+
// Off-canvas
|
|
668
|
+
|
|
669
|
+
// $include-html-off-canvas-classes: $include-html-classes;
|
|
670
|
+
|
|
671
|
+
// $tabbar-bg: #333;
|
|
672
|
+
// $tabbar-height: rem-calc(45);
|
|
673
|
+
// $tabbar-line-height: $tabbar-height;
|
|
674
|
+
// $tabbar-color: #fff;
|
|
675
|
+
// $tabbar-middle-padding: 0 rem-calc(10);
|
|
676
|
+
|
|
677
|
+
// Off Canvas Divider Styles
|
|
678
|
+
// $tabbar-right-section-border: solid 1px scale-color($tabbar-bg, $lightness: 13%);
|
|
679
|
+
// $tabbar-left-section-border: solid 1px scale-color($tabbar-bg, $lightness: -50%);
|
|
680
|
+
|
|
681
|
+
// Off Canvas Tab Bar Headers
|
|
682
|
+
// $tabbar-header-color: #fff;
|
|
683
|
+
// $tabbar-header-weight: $font-weight-bold;
|
|
684
|
+
// $tabbar-header-line-height: $tabbar-height;
|
|
685
|
+
// $tabbar-header-margin: 0;
|
|
686
|
+
|
|
687
|
+
// Off Canvas Menu Variables
|
|
688
|
+
// $off-canvas-width: rem-calc(250);
|
|
689
|
+
// $off-canvas-bg: #333;
|
|
690
|
+
|
|
691
|
+
// Off Canvas Menu List Variables
|
|
692
|
+
// $off-canvas-label-padding: 0.3rem rem-calc(15);
|
|
693
|
+
// $off-canvas-label-color: #999;
|
|
694
|
+
// $off-canvas-label-text-transform: uppercase;
|
|
695
|
+
// $off-canvas-label-font-weight: $font-weight-bold;
|
|
696
|
+
// $off-canvas-label-bg: #444;
|
|
697
|
+
// $off-canvas-label-border-top: 1px solid scale-color(#444, $lightness: 14%);
|
|
698
|
+
// $off-canvas-label-border-bottom: none;
|
|
699
|
+
// $off-canvas-label-margin:0;
|
|
700
|
+
// $off-canvas-link-padding: rem-calc(10, 15);
|
|
701
|
+
// $off-canvas-link-color: rgba(#fff, 0.7);
|
|
702
|
+
// $off-canvas-link-border-bottom: 1px solid scale-color($off-canvas-bg, $lightness: -25%);
|
|
703
|
+
|
|
704
|
+
// Off Canvas Menu Icon Variables
|
|
705
|
+
// $tabbar-menu-icon-color: #fff;
|
|
706
|
+
// $tabbar-menu-icon-hover: scale-color($tabbar-menu-icon-color, $lightness: -30%);
|
|
707
|
+
|
|
708
|
+
// $tabbar-menu-icon-text-indent: rem-calc(35);
|
|
709
|
+
// $tabbar-menu-icon-width: $tabbar-height;
|
|
710
|
+
// $tabbar-menu-icon-height: $tabbar-height;
|
|
711
|
+
// $tabbar-menu-icon-line-height: rem-calc(33);
|
|
712
|
+
// $tabbar-menu-icon-padding: 0;
|
|
713
|
+
|
|
714
|
+
// $tabbar-hamburger-icon-width: rem-calc(16);
|
|
715
|
+
// $tabbar-hamburger-icon-left: false;
|
|
716
|
+
// $tabbar-hamburger-icon-top: false;
|
|
717
|
+
// $tapbar-hamburger-icon-thickness: 1px;
|
|
718
|
+
// $tapbar-hamburger-icon-gap: 6px;
|
|
719
|
+
|
|
720
|
+
// Off Canvas Back-Link Overlay
|
|
721
|
+
// $off-canvas-overlay-transition: background 300ms ease;
|
|
722
|
+
// $off-canvas-overlay-cursor: pointer;
|
|
723
|
+
// $off-canvas-overlay-box-shadow: -4px 0 4px rgba(#000, 0.5), 4px 0 4px rgba(#000, 0.5);
|
|
724
|
+
// $off-canvas-overlay-background: rgba(#fff, 0.2);
|
|
725
|
+
// $off-canvas-overlay-background-hover: rgba(#fff, 0.05);
|
|
726
|
+
|
|
727
|
+
// Transition Variables
|
|
728
|
+
// $menu-slide: "transform 500ms ease";
|
|
729
|
+
|
|
730
|
+
// Orbit
|
|
731
|
+
|
|
732
|
+
// $include-html-orbit-classes: $include-html-classes;
|
|
733
|
+
|
|
734
|
+
// We use these to control the caption styles
|
|
735
|
+
// $orbit-container-bg: none;
|
|
736
|
+
// $orbit-caption-bg: rgba(51,51,51, 0.8);
|
|
737
|
+
// $orbit-caption-font-color: #fff;
|
|
738
|
+
// $orbit-caption-font-size: rem-calc(14);
|
|
739
|
+
// $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
|
|
740
|
+
// $orbit-caption-padding: rem-calc(10 14);
|
|
741
|
+
// $orbit-caption-height: auto;
|
|
742
|
+
|
|
743
|
+
// We use these to control the left/right nav styles
|
|
744
|
+
// $orbit-nav-bg: transparent;
|
|
745
|
+
// $orbit-nav-bg-hover: rgba(0,0,0,0.3);
|
|
746
|
+
// $orbit-nav-arrow-color: #fff;
|
|
747
|
+
// $orbit-nav-arrow-color-hover: #fff;
|
|
748
|
+
|
|
749
|
+
// We use these to control the timer styles
|
|
750
|
+
// $orbit-timer-bg: rgba(255,255,255,0.3);
|
|
751
|
+
// $orbit-timer-show-progress-bar: true;
|
|
752
|
+
|
|
753
|
+
// We use these to control the bullet nav styles
|
|
754
|
+
// $orbit-bullet-nav-color: #ccc;
|
|
755
|
+
// $orbit-bullet-nav-color-active: #999;
|
|
756
|
+
// $orbit-bullet-radius: rem-calc(9);
|
|
757
|
+
|
|
758
|
+
// We use these to controls the style of slide numbers
|
|
759
|
+
// $orbit-slide-number-bg: rgba(0,0,0,0);
|
|
760
|
+
// $orbit-slide-number-font-color: #fff;
|
|
761
|
+
// $orbit-slide-number-padding: rem-calc(5);
|
|
762
|
+
|
|
763
|
+
// We use these to controls the css animation
|
|
764
|
+
// $orbit-animation-speed: 500ms;
|
|
765
|
+
// $orbit-animation-ease: ease-in-out;
|
|
766
|
+
|
|
767
|
+
// Hide controls on small
|
|
768
|
+
// $orbit-nav-hide-for-small: true;
|
|
769
|
+
// $orbit-bullet-hide-for-small: true;
|
|
770
|
+
// $orbit-timer-hide-for-small: true;
|
|
771
|
+
|
|
772
|
+
// Graceful Loading Wrapper and preloader
|
|
773
|
+
// $wrapper-class: "slideshow-wrapper";
|
|
774
|
+
// $preloader-class: "preloader";
|
|
775
|
+
|
|
776
|
+
// Pagination
|
|
777
|
+
|
|
778
|
+
// $include-pagination-classes: $include-html-classes;
|
|
779
|
+
|
|
780
|
+
// We use these to control the pagination container
|
|
781
|
+
// $pagination-height: rem-calc(24);
|
|
782
|
+
// $pagination-margin: rem-calc(-5);
|
|
783
|
+
|
|
784
|
+
// We use these to set the list-item properties
|
|
785
|
+
// $pagination-li-float: $default-float;
|
|
786
|
+
// $pagination-li-height: rem-calc(24);
|
|
787
|
+
// $pagination-li-font-color: #222;
|
|
788
|
+
// $pagination-li-font-size: rem-calc(14);
|
|
789
|
+
// $pagination-li-margin: rem-calc(5);
|
|
790
|
+
|
|
791
|
+
// We use these for the pagination anchor links
|
|
792
|
+
// $pagination-link-pad: rem-calc(1 10 1);
|
|
793
|
+
// $pagination-link-font-color: #999;
|
|
794
|
+
// $pagination-link-active-bg: scale-color(#fff, $lightness: -10%);
|
|
795
|
+
|
|
796
|
+
// We use these for disabled anchor links
|
|
797
|
+
// $pagination-link-unavailable-cursor: default;
|
|
798
|
+
// $pagination-link-unavailable-font-color: #999;
|
|
799
|
+
// $pagination-link-unavailable-bg-active: transparent;
|
|
800
|
+
|
|
801
|
+
// We use these for currently selected anchor links
|
|
802
|
+
// $pagination-link-current-background: $primary-color;
|
|
803
|
+
// $pagination-link-current-font-color: #fff;
|
|
804
|
+
// $pagination-link-current-font-weight: $font-weight-bold;
|
|
805
|
+
// $pagination-link-current-cursor: default;
|
|
806
|
+
// $pagination-link-current-active-bg: $primary-color;
|
|
807
|
+
|
|
808
|
+
// Panels
|
|
809
|
+
|
|
810
|
+
// $include-html-panel-classes: $include-html-classes;
|
|
811
|
+
|
|
812
|
+
// We use these to control the background and border styles
|
|
813
|
+
// $panel-bg: scale-color(#fff, $lightness: -5%);
|
|
814
|
+
// $panel-border-style: solid;
|
|
815
|
+
// $panel-border-size: 1px;
|
|
816
|
+
|
|
817
|
+
// We use this % to control how much we darken things on hover
|
|
818
|
+
// $panel-function-factor: -11%;
|
|
819
|
+
// $panel-border-color: scale-color($panel-bg, $lightness: $panel-function-factor);
|
|
820
|
+
|
|
821
|
+
// We use these to set default inner padding and bottom margin
|
|
822
|
+
// $panel-margin-bottom: rem-calc(20);
|
|
823
|
+
// $panel-padding: rem-calc(20);
|
|
824
|
+
|
|
825
|
+
// We use these to set default font colors
|
|
826
|
+
// $panel-font-color: #333;
|
|
827
|
+
// $panel-font-color-alt: #fff;
|
|
828
|
+
|
|
829
|
+
// $panel-header-adjust: true;
|
|
830
|
+
// $callout-panel-link-color: $primary-color;
|
|
831
|
+
|
|
832
|
+
// Pricing Tables
|
|
833
|
+
|
|
834
|
+
// $include-html-pricing-classes: $include-html-classes;
|
|
835
|
+
|
|
836
|
+
// We use this to control the border color
|
|
837
|
+
// $price-table-border: solid 1px #ddd;
|
|
838
|
+
|
|
839
|
+
// We use this to control the bottom margin of the pricing table
|
|
840
|
+
// $price-table-margin-bottom: rem-calc(20);
|
|
841
|
+
|
|
842
|
+
// We use these to control the title styles
|
|
843
|
+
// $price-title-bg: #333;
|
|
844
|
+
// $price-title-padding: rem-calc(15 20);
|
|
845
|
+
// $price-title-align: center;
|
|
846
|
+
// $price-title-color: #eee;
|
|
847
|
+
// $price-title-weight: $font-weight-normal;
|
|
848
|
+
// $price-title-size: rem-calc(16);
|
|
849
|
+
// $price-title-font-family: $body-font-family;
|
|
850
|
+
|
|
851
|
+
// We use these to control the price styles
|
|
852
|
+
// $price-money-bg: #f6f6f6 ;
|
|
853
|
+
// $price-money-padding: rem-calc(15 20);
|
|
854
|
+
// $price-money-align: center;
|
|
855
|
+
// $price-money-color: #333;
|
|
856
|
+
// $price-money-weight: $font-weight-normal;
|
|
857
|
+
// $price-money-size: rem-calc(32);
|
|
858
|
+
// $price-money-font-family: $body-font-family;
|
|
859
|
+
|
|
860
|
+
|
|
861
|
+
// We use these to control the description styles
|
|
862
|
+
// $price-bg: #fff;
|
|
863
|
+
// $price-desc-color: #777;
|
|
864
|
+
// $price-desc-padding: rem-calc(15);
|
|
865
|
+
// $price-desc-align: center;
|
|
866
|
+
// $price-desc-font-size: rem-calc(12);
|
|
867
|
+
// $price-desc-weight: $font-weight-normal;
|
|
868
|
+
// $price-desc-line-height: 1.4;
|
|
869
|
+
// $price-desc-bottom-border: dotted 1px #ddd;
|
|
870
|
+
|
|
871
|
+
// We use these to control the list item styles
|
|
872
|
+
// $price-item-color: #333;
|
|
873
|
+
// $price-item-padding: rem-calc(15);
|
|
874
|
+
// $price-item-align: center;
|
|
875
|
+
// $price-item-font-size: rem-calc(14);
|
|
876
|
+
// $price-item-weight: $font-weight-normal;
|
|
877
|
+
// $price-item-bottom-border: dotted 1px #ddd;
|
|
878
|
+
|
|
879
|
+
// We use these to control the CTA area styles
|
|
880
|
+
// $price-cta-bg: #fff;
|
|
881
|
+
// $price-cta-align: center;
|
|
882
|
+
// $price-cta-padding: rem-calc(20 20 0);
|
|
883
|
+
|
|
884
|
+
// Progress Bar
|
|
885
|
+
|
|
886
|
+
// $include-html-media-classes: $include-html-classes;
|
|
887
|
+
|
|
888
|
+
// We use this to set the progress bar height
|
|
889
|
+
// $progress-bar-height: rem-calc(25);
|
|
890
|
+
// $progress-bar-color: #f6f6f6 ;
|
|
891
|
+
|
|
892
|
+
// We use these to control the border styles
|
|
893
|
+
// $progress-bar-border-color: scale-color(#fff, $lightness: 20%);
|
|
894
|
+
// $progress-bar-border-size: 1px;
|
|
895
|
+
// $progress-bar-border-style: solid;
|
|
896
|
+
// $progress-bar-border-radius: $global-radius;
|
|
897
|
+
|
|
898
|
+
// We use these to control the margin & padding
|
|
899
|
+
// $progress-bar-pad: rem-calc(2);
|
|
900
|
+
// $progress-bar-margin-bottom: rem-calc(10);
|
|
901
|
+
|
|
902
|
+
// We use these to set the meter colors
|
|
903
|
+
// $progress-meter-color: $primary-color;
|
|
904
|
+
// $progress-meter-secondary-color: $secondary-color;
|
|
905
|
+
// $progress-meter-success-color: $success-color;
|
|
906
|
+
// $progress-meter-alert-color: $alert-color;
|
|
907
|
+
|
|
908
|
+
// Reveal
|
|
909
|
+
|
|
910
|
+
// $include-html-reveal-classes: $include-html-classes;
|
|
911
|
+
|
|
912
|
+
// We use these to control the style of the reveal overlay.
|
|
913
|
+
// $reveal-overlay-bg: rgba(#000, .45);
|
|
914
|
+
// $reveal-overlay-bg-old: #000;
|
|
915
|
+
|
|
916
|
+
// We use these to control the style of the modal itself.
|
|
917
|
+
// $reveal-modal-bg: #fff;
|
|
918
|
+
// $reveal-position-top: rem-calc(100);
|
|
919
|
+
// $reveal-default-width: 80%;
|
|
920
|
+
// $reveal-modal-padding: rem-calc(20);
|
|
921
|
+
// $reveal-box-shadow: 0 0 10px rgba(#000,.4);
|
|
922
|
+
|
|
923
|
+
// We use these to style the reveal close button
|
|
924
|
+
// $reveal-close-font-size: rem-calc(40);
|
|
925
|
+
// $reveal-close-top: rem-calc(8);
|
|
926
|
+
// $reveal-close-side: rem-calc(11);
|
|
927
|
+
// $reveal-close-color: #aaa;
|
|
928
|
+
// $reveal-close-weight: $font-weight-bold;
|
|
929
|
+
|
|
930
|
+
// We use this to set the default radius used throughout the core.
|
|
931
|
+
// $reveal-radius: $global-radius;
|
|
932
|
+
// $reveal-round: $global-rounded;
|
|
933
|
+
|
|
934
|
+
// We use these to control the modal border
|
|
935
|
+
// $reveal-border-style: solid;
|
|
936
|
+
// $reveal-border-width: 1px;
|
|
937
|
+
// $reveal-border-color: #666;
|
|
938
|
+
|
|
939
|
+
// $reveal-modal-class: "reveal-modal";
|
|
940
|
+
// $close-reveal-modal-class: "close-reveal-modal";
|
|
941
|
+
|
|
942
|
+
// Side Nav
|
|
943
|
+
|
|
944
|
+
// $include-html-nav-classes: $include-html-classes;
|
|
945
|
+
|
|
946
|
+
// We use this to control padding.
|
|
947
|
+
// $side-nav-padding: rem-calc(14 0);
|
|
948
|
+
|
|
949
|
+
// We use these to control list styles.
|
|
950
|
+
// $side-nav-list-type: none;
|
|
951
|
+
// $side-nav-list-position: inside;
|
|
952
|
+
// $side-nav-list-margin: rem-calc(0 0 7 0);
|
|
953
|
+
|
|
954
|
+
// We use these to control link styles.
|
|
955
|
+
// $side-nav-link-color: $primary-color;
|
|
956
|
+
// $side-nav-link-color-active: scale-color($side-nav-link-color, $lightness: 30%);
|
|
957
|
+
// $side-nav-link-color-hover: scale-color($side-nav-link-color, $lightness: 30%);
|
|
958
|
+
// $side-nav-font-size: rem-calc(14);
|
|
959
|
+
// $side-nav-font-weight: $font-weight-normal;
|
|
960
|
+
// $side-nav-font-weight-active: $side-nav-font-weight;
|
|
961
|
+
// $side-nav-font-family: $body-font-family;
|
|
962
|
+
// $side-nav-active-font-family: $side-nav-font-family;
|
|
963
|
+
|
|
964
|
+
|
|
965
|
+
|
|
966
|
+
// We use these to control border styles
|
|
967
|
+
// $side-nav-divider-size: 1px;
|
|
968
|
+
// $side-nav-divider-style: solid;
|
|
969
|
+
// $side-nav-divider-color: scale-color(#fff, $lightness: 10%);
|
|
970
|
+
|
|
971
|
+
// Split Buttons
|
|
972
|
+
|
|
973
|
+
// $include-html-button-classes: $include-html-classes;
|
|
974
|
+
|
|
975
|
+
// We use these to control different shared styles for Split Buttons
|
|
976
|
+
// $split-button-function-factor: 10%;
|
|
977
|
+
// $split-button-pip-color: #fff;
|
|
978
|
+
// $split-button-pip-color-alt: #333;
|
|
979
|
+
// $split-button-active-bg-tint: rgba(0,0,0,0.1);
|
|
980
|
+
|
|
981
|
+
// We use these to control tiny split buttons
|
|
982
|
+
// $split-button-padding-tny: $button-pip-tny * 10;
|
|
983
|
+
// $split-button-span-width-tny: $button-pip-tny * 6;
|
|
984
|
+
// $split-button-pip-size-tny: $button-pip-tny;
|
|
985
|
+
// $split-button-pip-top-tny: $button-pip-tny * 2;
|
|
986
|
+
// $split-button-pip-default-float-tny: rem-calc(-6);
|
|
987
|
+
|
|
988
|
+
// We use these to control small split buttons
|
|
989
|
+
// $split-button-padding-sml: $button-pip-sml * 10;
|
|
990
|
+
// $split-button-span-width-sml: $button-pip-sml * 6;
|
|
991
|
+
// $split-button-pip-size-sml: $button-pip-sml;
|
|
992
|
+
// $split-button-pip-top-sml: $button-pip-sml * 1.5;
|
|
993
|
+
// $split-button-pip-default-float-sml: rem-calc(-6);
|
|
994
|
+
|
|
995
|
+
// We use these to control medium split buttons
|
|
996
|
+
// $split-button-padding-med: $button-pip-med * 9;
|
|
997
|
+
// $split-button-span-width-med: $button-pip-med * 5.5;
|
|
998
|
+
// $split-button-pip-size-med: $button-pip-med - rem-calc(3);
|
|
999
|
+
// $split-button-pip-top-med: $button-pip-med * 1.5;
|
|
1000
|
+
// $split-button-pip-default-float-med: rem-calc(-6);
|
|
1001
|
+
|
|
1002
|
+
// We use these to control large split buttons
|
|
1003
|
+
// $split-button-padding-lrg: $button-pip-lrg * 8;
|
|
1004
|
+
// $split-button-span-width-lrg: $button-pip-lrg * 5;
|
|
1005
|
+
// $split-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
|
|
1006
|
+
// $split-button-pip-top-lrg: $button-pip-lrg + rem-calc(5);
|
|
1007
|
+
// $split-button-pip-default-float-lrg: rem-calc(-6);
|
|
1008
|
+
|
|
1009
|
+
// Sub Nav
|
|
1010
|
+
|
|
1011
|
+
// $include-html-nav-classes: $include-html-classes;
|
|
1012
|
+
|
|
1013
|
+
// We use these to control margin and padding
|
|
1014
|
+
// $sub-nav-list-margin: rem-calc(-4 0 18);
|
|
1015
|
+
// $sub-nav-list-padding-top: rem-calc(4);
|
|
1016
|
+
|
|
1017
|
+
// We use this to control the definition
|
|
1018
|
+
// $sub-nav-font-family: $body-font-family;
|
|
1019
|
+
// $sub-nav-font-size: rem-calc(14);
|
|
1020
|
+
// $sub-nav-font-color: #999;
|
|
1021
|
+
// $sub-nav-font-weight: $font-weight-normal;
|
|
1022
|
+
// $sub-nav-text-decoration: none;
|
|
1023
|
+
// $sub-nav-padding: rem-calc(3 16);
|
|
1024
|
+
// $sub-nav-border-radius: 3px;
|
|
1025
|
+
// $sub-nav-font-color-hover: scale-color($sub-nav-font-color, $lightness: -25%);
|
|
1026
|
+
|
|
1027
|
+
|
|
1028
|
+
// We use these to control the active item styles
|
|
1029
|
+
// $sub-nav-active-font-weight: $font-weight-normal;
|
|
1030
|
+
// $sub-nav-active-bg: $primary-color;
|
|
1031
|
+
// $sub-nav-active-bg-hover: scale-color($sub-nav-active-bg, $lightness: -14%);
|
|
1032
|
+
// $sub-nav-active-color: #fff;
|
|
1033
|
+
// $sub-nav-active-padding: $sub-nav-padding;
|
|
1034
|
+
// $sub-nav-active-cursor: default;
|
|
1035
|
+
|
|
1036
|
+
// $sub-nav-item-divider: "";
|
|
1037
|
+
// $sub-nav-item-divider-margin: rem-calc(12);
|
|
1038
|
+
|
|
1039
|
+
//
|
|
1040
|
+
// SWITCH
|
|
1041
|
+
//
|
|
1042
|
+
|
|
1043
|
+
// $include-html-form-classes: $include-html-classes;
|
|
1044
|
+
|
|
1045
|
+
// Controlling border styles and background colors for the switch container
|
|
1046
|
+
// $switch-border-color: scale-color(#fff, $lightness: -20%);
|
|
1047
|
+
// $switch-border-style: solid;
|
|
1048
|
+
// $switch-border-width: 1px;
|
|
1049
|
+
// $switch-bg: #fff;
|
|
1050
|
+
|
|
1051
|
+
// We use these to control the switch heights for our default classes
|
|
1052
|
+
// $switch-height-tny: 22px;
|
|
1053
|
+
// $switch-height-sml: 28px;
|
|
1054
|
+
// $switch-height-med: 36px;
|
|
1055
|
+
// $switch-height-lrg: 44px;
|
|
1056
|
+
// $switch-bottom-margin: rem-calc(20);
|
|
1057
|
+
|
|
1058
|
+
// We use these to control default font sizes for our classes.
|
|
1059
|
+
// $switch-font-size-tny: 11px;
|
|
1060
|
+
// $switch-font-size-sml: 12px;
|
|
1061
|
+
// $switch-font-size-med: 14px;
|
|
1062
|
+
// $switch-font-size-lrg: 17px;
|
|
1063
|
+
// $switch-label-side-padding: 6px;
|
|
1064
|
+
|
|
1065
|
+
// We use these to style the switch-paddle
|
|
1066
|
+
// $switch-paddle-bg: #fff;
|
|
1067
|
+
// $switch-paddle-fade-to-color: scale-color($switch-paddle-bg, $lightness: -10%);
|
|
1068
|
+
// $switch-paddle-border-color: scale-color($switch-paddle-bg, $lightness: -35%);
|
|
1069
|
+
// $switch-paddle-border-width: 1px;
|
|
1070
|
+
// $switch-paddle-border-style: solid;
|
|
1071
|
+
// $switch-paddle-transition-speed: .1s;
|
|
1072
|
+
// $switch-paddle-transition-ease: ease-out;
|
|
1073
|
+
// $switch-positive-color: scale-color($success-color, $lightness: 94%);
|
|
1074
|
+
// $switch-negative-color: #f5f5f5;
|
|
1075
|
+
|
|
1076
|
+
// Outline Style for tabbing through switches
|
|
1077
|
+
// $switch-label-outline: 1px dotted #888;
|
|
1078
|
+
|
|
1079
|
+
// Tables
|
|
1080
|
+
|
|
1081
|
+
// $include-html-table-classes: $include-html-classes;
|
|
1082
|
+
|
|
1083
|
+
// These control the background color for the table and even rows
|
|
1084
|
+
// $table-bg: #fff;
|
|
1085
|
+
// $table-even-row-bg: #f9f9f9 ;
|
|
1086
|
+
|
|
1087
|
+
// These control the table cell border style
|
|
1088
|
+
// $table-border-style: solid;
|
|
1089
|
+
// $table-border-size: 1px;
|
|
1090
|
+
// $table-border-color: #ddd;
|
|
1091
|
+
|
|
1092
|
+
// These control the table head styles
|
|
1093
|
+
// $table-head-bg: #f5f5f5 ;
|
|
1094
|
+
// $table-head-font-size: rem-calc(14);
|
|
1095
|
+
// $table-head-font-color: #222;
|
|
1096
|
+
// $table-head-font-weight: $font-weight-bold;
|
|
1097
|
+
// $table-head-padding: rem-calc(8 10 10);
|
|
1098
|
+
|
|
1099
|
+
// These control the row padding and font styles
|
|
1100
|
+
// $table-row-padding: rem-calc(9 10);
|
|
1101
|
+
// $table-row-font-size: rem-calc(14);
|
|
1102
|
+
// $table-row-font-color: #222;
|
|
1103
|
+
// $table-line-height: rem-calc(18);
|
|
1104
|
+
|
|
1105
|
+
// These are for controlling the display and margin of tables
|
|
1106
|
+
// $table-display: table-cell;
|
|
1107
|
+
// $table-margin-bottom: rem-calc(20);
|
|
1108
|
+
|
|
1109
|
+
//
|
|
1110
|
+
// TABS
|
|
1111
|
+
//
|
|
1112
|
+
|
|
1113
|
+
// $include-html-tabs-classes: $include-html-classes;
|
|
1114
|
+
|
|
1115
|
+
// $tabs-navigation-padding: rem-calc(16);
|
|
1116
|
+
// $tabs-navigation-bg-color: #efefef ;
|
|
1117
|
+
// $tabs-navigation-active-bg-color: #fff;
|
|
1118
|
+
// $tabs-navigation-hover-bg-color: scale-color($tabs-navigation-bg-color, $lightness: -6%);
|
|
1119
|
+
// $tabs-navigation-font-color: #222;
|
|
1120
|
+
// $tabs-navigation-active-font-color: $tabs-navigation-font-color;
|
|
1121
|
+
// $tabs-navigation-font-size: rem-calc(16);
|
|
1122
|
+
// $tabs-navigation-font-family: $body-font-family;
|
|
1123
|
+
|
|
1124
|
+
// $tabs-content-margin-bottom: rem-calc(24);
|
|
1125
|
+
// $tabs-content-padding: $column-gutter/2;
|
|
1126
|
+
|
|
1127
|
+
// $tabs-vertical-navigation-margin-bottom: 1.25rem;
|
|
1128
|
+
|
|
1129
|
+
//
|
|
1130
|
+
// THUMBNAILS
|
|
1131
|
+
//
|
|
1132
|
+
|
|
1133
|
+
// $include-html-media-classes: $include-html-classes;
|
|
1134
|
+
|
|
1135
|
+
// We use these to control border styles
|
|
1136
|
+
// $thumb-border-style: solid;
|
|
1137
|
+
// $thumb-border-width: 4px;
|
|
1138
|
+
// $thumb-border-color: #fff;
|
|
1139
|
+
// $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
|
|
1140
|
+
// $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
|
|
1141
|
+
|
|
1142
|
+
// Radius and transition speed for thumbs
|
|
1143
|
+
// $thumb-radius: $global-radius;
|
|
1144
|
+
// $thumb-transition-speed: 200ms;
|
|
1145
|
+
|
|
1146
|
+
//
|
|
1147
|
+
// TOOLTIPS
|
|
1148
|
+
//
|
|
1149
|
+
|
|
1150
|
+
// $include-html-tooltip-classes: $include-html-classes;
|
|
1151
|
+
|
|
1152
|
+
// $has-tip-border-bottom: dotted 1px #ccc;
|
|
1153
|
+
// $has-tip-font-weight: $font-weight-bold;
|
|
1154
|
+
// $has-tip-font-color: #333;
|
|
1155
|
+
// $has-tip-border-bottom-hover: dotted 1px scale-color($primary-color, $lightness: -55%);
|
|
1156
|
+
// $has-tip-font-color-hover: $primary-color;
|
|
1157
|
+
// $has-tip-cursor-type: help;
|
|
1158
|
+
|
|
1159
|
+
// $tooltip-padding: rem-calc(12);
|
|
1160
|
+
// $tooltip-bg: #333;
|
|
1161
|
+
// $tooltip-font-size: rem-calc(14);
|
|
1162
|
+
// $tooltip-font-weight: $font-weight-normal;
|
|
1163
|
+
// $tooltip-font-color: #fff;
|
|
1164
|
+
// $tooltip-line-height: 1.3;
|
|
1165
|
+
// $tooltip-close-font-size: rem-calc(10);
|
|
1166
|
+
// $tooltip-close-font-weight: $font-weight-normal;
|
|
1167
|
+
// $tooltip-close-font-color: #777;
|
|
1168
|
+
// $tooltip-font-size-sml: rem-calc(14);
|
|
1169
|
+
// $tooltip-radius: $global-radius;
|
|
1170
|
+
// $tooltip-rounded: $global-rounded;
|
|
1171
|
+
// $tooltip-pip-size: 5px;
|
|
1172
|
+
|
|
1173
|
+
//
|
|
1174
|
+
// TOP BAR
|
|
1175
|
+
//
|
|
1176
|
+
|
|
1177
|
+
// $include-html-top-bar-classes: $include-html-classes;
|
|
1178
|
+
|
|
1179
|
+
// Background color for the top bar
|
|
1180
|
+
// $topbar-bg-color: #333;
|
|
1181
|
+
// $topbar-bg: $topbar-bg-color;
|
|
1182
|
+
|
|
1183
|
+
// Height and margin
|
|
1184
|
+
// $topbar-height: 45px;
|
|
1185
|
+
// $topbar-margin-bottom: 0;
|
|
1186
|
+
|
|
1187
|
+
// Controlling the styles for the title in the top bar
|
|
1188
|
+
// $topbar-title-weight: $font-weight-normal;
|
|
1189
|
+
// $topbar-title-font-size: rem-calc(17);
|
|
1190
|
+
|
|
1191
|
+
// Style the top bar dropdown elements
|
|
1192
|
+
// $topbar-dropdown-bg: #333;
|
|
1193
|
+
// $topbar-dropdown-link-color: #fff;
|
|
1194
|
+
// $topbar-dropdown-link-bg: #333;
|
|
1195
|
+
// $topbar-dropdown-link-weight: $font-weight-normal;
|
|
1196
|
+
// $topbar-dropdown-toggle-size: 5px;
|
|
1197
|
+
// $topbar-dropdown-toggle-color: #fff;
|
|
1198
|
+
// $topbar-dropdown-toggle-alpha: 0.4;
|
|
1199
|
+
|
|
1200
|
+
// Set the link colors and styles for top-level nav
|
|
1201
|
+
// $topbar-link-color: #fff;
|
|
1202
|
+
// $topbar-link-color-hover: #fff;
|
|
1203
|
+
// $topbar-link-color-active: #fff;
|
|
1204
|
+
// $topbar-link-color-active-hover: #fff;
|
|
1205
|
+
// $topbar-link-weight: $font-weight-normal;
|
|
1206
|
+
// $topbar-link-font-size: rem-calc(13);
|
|
1207
|
+
// $topbar-link-hover-lightness: -10%; // Darken by 10%
|
|
1208
|
+
// $topbar-link-bg: $topbar-bg;
|
|
1209
|
+
// $topbar-link-bg-color-hover: #272727;
|
|
1210
|
+
// $topbar-link-bg-hover: #272727;
|
|
1211
|
+
// $topbar-link-bg-active: $primary-color;
|
|
1212
|
+
// $topbar-link-bg-active-hover: scale-color($primary-color, $lightness: -14%);
|
|
1213
|
+
// $topbar-link-font-family: $body-font-family;
|
|
1214
|
+
// $topbar-link-text-transform: none;
|
|
1215
|
+
// $topbar-link-padding: $topbar-height / 3;
|
|
1216
|
+
|
|
1217
|
+
// $topbar-button-font-size: 0.75rem;
|
|
1218
|
+
// $topbar-button-top: 7px;
|
|
1219
|
+
|
|
1220
|
+
// $topbar-dropdown-label-color: #777;
|
|
1221
|
+
// $topbar-dropdown-label-text-transform: uppercase;
|
|
1222
|
+
// $topbar-dropdown-label-font-weight: $font-weight-bold;
|
|
1223
|
+
// $topbar-dropdown-label-font-size: rem-calc(10);
|
|
1224
|
+
// $topbar-dropdown-label-bg: #333;
|
|
1225
|
+
|
|
1226
|
+
// Top menu icon styles
|
|
1227
|
+
// $topbar-menu-link-transform: uppercase;
|
|
1228
|
+
// $topbar-menu-link-font-size: rem-calc(13);
|
|
1229
|
+
// $topbar-menu-link-weight: $font-weight-bold;
|
|
1230
|
+
// $topbar-menu-link-color: #fff;
|
|
1231
|
+
// $topbar-menu-icon-color: #fff;
|
|
1232
|
+
// $topbar-menu-link-color-toggled: #888;
|
|
1233
|
+
// $topbar-menu-icon-color-toggled: #888;
|
|
1234
|
+
|
|
1235
|
+
// Transitions and breakpoint styles
|
|
1236
|
+
// $topbar-transition-speed: 300ms;
|
|
1237
|
+
// Using rem-calc for the below breakpoint causes issues with top bar
|
|
1238
|
+
// $topbar-breakpoint: #{lower-bound($medium-range)}; // Change to 9999px for always mobile layout
|
|
1239
|
+
// $topbar-media-query: $medium-up;
|
|
1240
|
+
|
|
1241
|
+
// Divider Styles
|
|
1242
|
+
// $topbar-divider-border-bottom: solid 1px scale-color($topbar-bg-color, $lightness: 13%);
|
|
1243
|
+
// $topbar-divider-border-top: solid 1px scale-color($topbar-bg-color, $lightness: -50%);
|
|
1244
|
+
|
|
1245
|
+
// Sticky Class
|
|
1246
|
+
// $topbar-sticky-class: ".sticky";
|
|
1247
|
+
// $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
|
|
1248
|
+
|
|
1249
|
+
//
|
|
1250
|
+
// VISIBILITY CLASSES
|
|
1251
|
+
//
|
|
1252
|
+
|
|
1253
|
+
// $include-html-visibility-classes: $include-html-classes;
|
|
1254
|
+
// $include-table-visibility-classes: true;
|
|
1255
|
+
// $include-legacy-visibility-classes: true;
|
|
1256
|
+
|
|
1257
|
+
//
|
|
1258
|
+
// RANGE SLIDER
|
|
1259
|
+
//
|
|
1260
|
+
|
|
1261
|
+
// $include-html-range-slider-classes: $include-html-classes;
|
|
1262
|
+
|
|
1263
|
+
// These variabels define the slider bar styles
|
|
1264
|
+
// $range-slider-bar-width: 100%;
|
|
1265
|
+
// $range-slider-bar-height: rem-calc(16);
|
|
1266
|
+
|
|
1267
|
+
// $range-slider-bar-border-width: 1px;
|
|
1268
|
+
// $range-slider-bar-border-style: solid;
|
|
1269
|
+
// $range-slider-bar-border-color: #ddd;
|
|
1270
|
+
// $range-slider-radius: $global-radius;
|
|
1271
|
+
// $range-slider-round: $global-rounded;
|
|
1272
|
+
// $range-slider-bar-bg-color: #fafafa;
|
|
1273
|
+
|
|
1274
|
+
// Vertical bar styles
|
|
1275
|
+
// $range-slider-vertical-bar-width: rem-calc(16);
|
|
1276
|
+
// $range-slider-vertical-bar-height: rem-calc(200);
|
|
1277
|
+
|
|
1278
|
+
// These variabels define the slider handle styles
|
|
1279
|
+
// $range-slider-handle-width: rem-calc(32);
|
|
1280
|
+
// $range-slider-handle-height: rem-calc(22);
|
|
1281
|
+
// $range-slider-handle-position-top: rem-calc(-5);
|
|
1282
|
+
// $range-slider-handle-bg-color: $primary-color;
|
|
1283
|
+
// $range-slider-handle-border-width: 1px;
|
|
1284
|
+
// $range-slider-handle-border-style: solid;
|
|
1285
|
+
// $range-slider-handle-border-color: none;
|
|
1286
|
+
// $range-slider-handle-radius: $global-radius;
|
|
1287
|
+
// $range-slider-handle-round: $global-rounded;
|
|
1288
|
+
// $range-slider-handle-bg-hover-color: scale-color($primary-color, $lightness: -12%);
|
|
1289
|
+
// $range-slider-handle-cursor: pointer;
|