diff --git a/images/icons/cf_icon_info_green.svg b/images/icons/cf_icon_info_green.svg new file mode 100644 index 00000000..e2dab6dd --- /dev/null +++ b/images/icons/cf_icon_info_green.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/images/icons/cf_icon_info_grey.svg b/images/icons/cf_icon_info_grey.svg new file mode 100644 index 00000000..03189e20 --- /dev/null +++ b/images/icons/cf_icon_info_grey.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/light-wide-2.svg b/images/light-wide-2.svg new file mode 100644 index 00000000..4cec855d --- /dev/null +++ b/images/light-wide-2.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/js/libraries/switchery/.gitignore b/js/libraries/switchery/.gitignore new file mode 100755 index 00000000..d19e6cf2 --- /dev/null +++ b/js/libraries/switchery/.gitignore @@ -0,0 +1,6 @@ +.DS_STORE +build/ +components/ +bower_components/ +node_modules/ +test.html diff --git a/js/libraries/switchery/CHANGELOG.md b/js/libraries/switchery/CHANGELOG.md new file mode 100755 index 00000000..2bb2d1c9 --- /dev/null +++ b/js/libraries/switchery/CHANGELOG.md @@ -0,0 +1,139 @@ + +0.8.1 / 2015-06-26 +================== + + * Check disabled values properly, because of `.isDisabled()` method returning improper value + +0.8.0 / 2015-04-03 +================== + + * Secondary jack color functionality + * Enable/disable switch dynamically + * Destroy event handlers attached to a Switchery instance + * Meteor.js integration + +0.7.0 / 2014-12-09 +================== + + * Respect `readonly` attribute on checkbox input + * Large and small size switches + +0.6.3 / 2014-11-02 +================== + + * Update component version + * Added separate Jack color option + * Add the CSS file to bower.json + * Fix bug in Hongmi phone + * Fixing issue found in IE9+ with change event dispatch + +0.6.2 / 2014-08-22 +================== + + * Prevent text selection on double click + +0.6.1 / 2014-07-11 +================== + + * Fix switch click state when inside label + +0.6.0 / 2014-05-22 +================== + + * Corresponding label with `for` attribute of the native input, to change switch state as well + * Do not copy input's `id` and `name` attributes to switch + +0.5.5 / 2014-05-14 +================== + + * Set secondary color to be background color on switch off state + +0.5.4 / 2014-04-29 +================== + + * Fix box-sizing when using Bootstrap 3 + +0.5.3 / 2014-04-12 +================== + + * Detect native checkbox state change + +0.5.2 / 2014-04-03 +================== + + * Enable event bubbles + +0.5.1 / 2014-03-22 +================== + + * Fix jack position when switch is hidden + +0.5.0 / 2014-02-07 +================== + + * Removes the internal validation for loaded switches and lets people do it on their own + * Sets a data attribute to handle multiple calls for a checkbox + +0.4.2 / 2014-01-24 +================== + + * Resolve property method issues in IE + * Disable label checkbox change event + * Check if element is null + +0.4.1 / 2014-01-18 +================== + + * Fix Event errors in IE8 + +0.4.0 / 2014-01-15 +================== + + * Use ftlabs/fastclick for mobile browser optimization + +0.3.6 / 2014-01-04 +================== + + * Generate new standalone file + * Refactor code + * Use event constructors to create onchange and click events + * Updated standalone to dist in bower.json + * Required files + * Add development info + +0.3.5 / 2013-12-31 +================== + + * Proper checkbox value with onchange event + +0.3.4 / 2013-12-31 +================== + + * Merge ni-c:master + * Refactor onchange + +0.3.3 / 2013-12-28 +================== + + * Merge pull request from tenbits:patch-1 + * Leave first line empty + * Undefined option's property + * Update Readme + * Update standalone + * Changelog + * Standalone -> dist, update Readme, add changelog + +0.3.2 / 2013-12-27 +================== + + * Standalone -> dist, update Readme, add changelog + * Merge pull request from vesln:min + * Add minified versions + * Minify CSS & JS + * Fix the standalone build & improve Makefile + * Ignore node_modules + * Add package.json + * Disabled opacity option + * Disabled opacity option + * Insert switch after target element + * Require Transitionize diff --git a/js/libraries/switchery/Makefile b/js/libraries/switchery/Makefile new file mode 100755 index 00000000..27a80025 --- /dev/null +++ b/js/libraries/switchery/Makefile @@ -0,0 +1,89 @@ +# +# Variables +# + +NAME = Switchery + +# +# Paths +# + +COMPONENT_BUILD = node_modules/.bin/component-build +COMPONENT_INSTALL = node_modules/.bin/component-install +UGLIFYJS = node_modules/uglify-js/bin/uglifyjs +UGLIFYCSS = node_modules/uglifycss/uglifycss +JS_DEST = dist/switchery.js +JS_MIN_DEST = dist/switchery.min.js +CSS_DEST = dist/switchery.css +CSS_MIN_DEST = dist/switchery.min.css + +# +# All +# + +all: install + +# +# Install +# + +install: node_modules components build + +# +# Make a new development build +# + +build: components switchery.js switchery.css + @$(COMPONENT_BUILD) --dev + +# +# Install components (+ dev) +# + +components: component.json + @$(COMPONENT_INSTALL) --dev + +# +# Make a standalone version that doesn't depend on component etc. +# + +standalone: build components + @$(COMPONENT_BUILD) -s $(NAME) -o . + @mv build.js $(JS_DEST) + @mv build.css $(CSS_DEST) + @$(UGLIFYJS) $(JS_DEST) --output $(JS_MIN_DEST) + @$(UGLIFYCSS) $(CSS_DEST) > $(CSS_MIN_DEST) + +# +# Install Node.js modules +# + +node_modules: + @npm install + +# +# Clean all +# + +clean: clean-components clean-node + +# +# Clean components & build +# + +clean-components: + @rm -rf build + @rm -rf components + +# +# Clean the installed Node.js modules +# + +clean-node: + @rm -rf node_modules + +# +# Instructions +# + +.PHONY: clean build components diff --git a/js/libraries/switchery/README.md b/js/libraries/switchery/README.md new file mode 100755 index 00000000..f77678ba --- /dev/null +++ b/js/libraries/switchery/README.md @@ -0,0 +1,285 @@ +![Switchery](http://i.imgur.com/xJAM3Jq.png) + +## Description + +Switchery is a simple component that helps you turn your default HTML checkbox inputs into beautiful iOS 7 style switches in just few simple steps. You can easily customize switches, so that they match your design perfectly. + +Supported by all modern browsers: Chrome, Firefox, Opera, Safari, IE8+ + +![Preview](http://i.imgur.com/0PcuTbO.jpg) + +[Live Preview](http://abpetkov.github.io/switchery/) + +## Installation + +##### Standalone: + +```html + + +``` + +##### Component: + +```shell +$ component install abpetkov/switchery +``` + +##### Bower: + +```shell +$ bower install switchery +``` + +##### Rails + +To use Switchery in your rails app, add this to your Gemfile: + +```rails +gem 'switchery-rails' +``` + +Or go to [Switchery Rails gem page](https://rubygems.org/gems/switchery-rails) for more info, documentation and instructions. + +##### Angular JS + +For thorough installation and usage instructions on how to use Switchery with Angular JS, check out this repo: [servergrove/NgSwitchery](https://github.com/servergrove/NgSwitchery) + +##### Meteor + +You can install Switchery to your Meteor.js app via: + +```shell +$ meteor add abpetkov:switchery +``` + +[Switchery on Atmosphere](https://atmospherejs.com/abpetkov/switchery) + +## Usage + +```js +var elem = document.querySelector('.js-switch'); +var init = new Switchery(elem); +``` + +Use the above for the standalone version. + +## Settings and Defaults + +```js +defaults = { + color : '#64bd63' + , secondaryColor : '#dfdfdf' + , jackColor : '#fff' + , jackSecondaryColor: null + , className : 'switchery' + , disabled : false + , disabledOpacity : 0.5 + , speed : '0.4s' + , size : 'default' +}; +``` + +- `color` : color of the switch element (HEX or RGB value) +- `secondaryColor` : secondary color for background color and border, when the switch is off +- `jackColor` : default color of the jack/handle element +- `jackSecondaryColor` : color of unchecked jack/handle element +- `className` : class name for the switch element (by default styled in switchery.css) +- `disabled` : enable or disable click events and changing the state of the switch (boolean value) +- `disabledOpacity` : opacity of the switch when it's disabled (0 to 1) +- `speed` : length of time that the transition will take, ex. '0.4s', '1s', '2.2s' (Note: transition speed of the handle is twice shorter) +- `size` : size of the switch element (small or large) + +## API + +##### .destroy() + +Unbinding all event handlers attached to the switch element to prepare the object for garbage collection. + +##### .enable() + +Enable disabled switch by re-adding event handlers and changing the opacity to 1. + +##### .disable() + +Disable switch by unbinding attached events and changing opacity to `disabledOpacity` value. + +##### .isDisabled() + +Check if switch is currently disabled by checking the `readonly` and `disabled` attributes on the checkbox and the `disabled` option set via JS. If any of those are present, the returned value is `true`. + +## Examples + +##### Checked + +Only thing you need is to add a `checked` attribute to your checkbox input. Simple as that. + +```html + +``` + +##### Multiple switches + +You can add as many switches as you like, as long as their corresponding checkboxes have the same class. Select them and make new instance of the Switchery class for every of them. + +```js +var elems = Array.prototype.slice.call(document.querySelectorAll('.js-switch')); + +elems.forEach(function(html) { + var switchery = new Switchery(html); +}); +``` + +![Multiple](http://i.imgur.com/Ip4xy4s.jpg) + +##### Multiple calls + +You can filter out existing elements that have already been called by looking for `data-switchery="true"`. + +##### Disabled + +Use the `disabled` option to make your switch active or inactive. + +```js +var switchery = new Switchery(elem, { disabled: true }); +``` + +Customize the default opacity of the disabled switch, using the `disabledOpacity` option. + +```js +var switchery = new Switchery(elem, { disabled: true, disabledOpacity: 0.75 }); +``` + +Adding `disabled` or `readonly` attribute to the native input element will result in the switch being disabled as well. + +##### Colored + +You can change the primary(on) and secondary(off) color of the switch to fit your design perfectly. Accomplish this, changing the `color` and `secondaryColor` options. The jack colors are also customizable via the `jackColor` and the `jackSecondaryColor` options. Below is a good example of what you can accomplish using those. + +```js +var switchery = new Switchery(elem, { color: '#7c8bc7', jackColor: '#9decff' }); +``` + +![JackColor](http://i.imgur.com/7ztX29e.png) + +or + +```js +var switchery = new Switchery(elem, { color: '#faab43', secondaryColor: '#fC73d0', jackColor: '#fcf45e', jackSecondaryColor: '#c8ff77' }); +``` + +![JackSecondaryColor](http://i.imgur.com/KS0H8ac.png) + +Any other changes regarding colors you want to make, should take place in `switchery.css`. + +##### Sizes + +Since version 0.7.0 you can change the sizes of the switch element via `size`. Giving it a value of `small` or `large` will result in adding `switchery-small` or `switchery-large` classes respectively, which will change the switch size. + +Not using this property will render the default sized switch element. + +```js +var switchery = new Switchery(elem, { size: 'small' }); +// ... or +var switchery = new Switchery(elem, { size: 'large' }); +``` + +![SwitchSizes](http://i.imgur.com/TVlgvx7.png) + +##### Checking state + +In many cases, you'll need to have the current state of the checkbox, checked or not. I'll demostrate how to do this in the two most common situations - getting the state on click and on change. + +On click: + +```js +var clickCheckbox = document.querySelector('.js-check-click') + , clickButton = document.querySelector('.js-check-click-button'); + +clickButton.addEventListener('click', function() { + alert(clickCheckbox.checked); +}); +``` + +On change: + +```js +var changeCheckbox = document.querySelector('.js-check-change'); + +changeCheckbox.onchange = function() { + alert(changeCheckbox.checked); +}; +``` + +##### Legacy browsers + +If you are an adventurer and like to support legacy browsers, like IE8 and IE7, apply your favourite fix for rounded corners and box shadows and try a slightly different approach. + +```js +var elems = document.querySelectorAll('.js-switch'); + +for (var i = 0; i < elems.length; i++) { + var switchery = new Switchery(elems[i]); +} +``` + +Personally I recommend using [CSS3 PIE](http://css3pie.com/). For working example you can check out the demo page. + +## Development + +If you've decided to go in development mode and tweak all of this a bit, there are few things you should do. + +After you clone the repository, do this in your terminal ([NPM](http://npmjs.org/) required): + +```shell +$ npm install +``` + +Add the following code before the rest: + +```js +var Switchery = require('switchery'); +``` + +Make sure you're using the `build/build.js` and `build/build.css` files and you're ready. + +There are some useful commands you can use. + +`$ make install` - will install Node.js modules, components etc. + +`$ make build` - will create a build file + +`$ make standalone` - will create a standalone and minified files + +## Credits + +Big thanks to: + +- [Veselin Todorov](https://github.com/vesln) + +## Contact + +If you like this component, share your appreciation by following me in [Twitter](https://twitter.com/abpetkov), [GitHub](https://github.com/abpetkov) or [Dribbble](http://dribbble.com/apetkov). + +## License + +The MIT License (MIT) + +Copyright (c) 2013-2015 Alexander Petkov + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/js/libraries/switchery/bower.json b/js/libraries/switchery/bower.json new file mode 100755 index 00000000..18bd382b --- /dev/null +++ b/js/libraries/switchery/bower.json @@ -0,0 +1,35 @@ +{ + "name": "switchery", + "main": [ + "dist/switchery.js", + "dist/switchery.css" + ], + "version": "0.8.1", + "homepage": "http://abpetkov.github.io/switchery/", + "author": [ + "Alexander Petkov (https://github.com/abpetkov)" + ], + "description": "Component to create iOS 7 styled switches from default input checkboxes", + "keywords": [ + "checkbox", + "input", + "switch", + "iOS7" + ], + "license": "MIT", + "ignore": [ + "build", + "components", + "node_modules", + "bower_components", + "component.json", + "Makefile", + "README.md", + ".*" + ], + "dependencies": { + "transitionize": "*", + "fastclick": "v0.6.11" + }, + "devDependencies": {} +} diff --git a/js/libraries/switchery/component.json b/js/libraries/switchery/component.json new file mode 100755 index 00000000..a153d34c --- /dev/null +++ b/js/libraries/switchery/component.json @@ -0,0 +1,27 @@ +{ + "name": "switchery", + "repo": "abpetkov/switchery", + "description": "Component to create iOS 7 styled switches from default input checkboxes", + "version": "0.8.1", + "keywords": [ + "checkbox", + "input", + "switch", + "iOS7" + ], + "license": "MIT", + "main": "switchery.js", + "scripts": [ + "switchery.js" + ], + "styles": [ + "switchery.css" + ], + "dependencies": { + "abpetkov/transitionize": "*", + "ftlabs/fastclick": "v0.6.11", + "component/classes": "1.2.1", + "component/events": "1.0.9" + }, + "development": {} +} diff --git a/js/libraries/switchery/dist/switchery.css b/js/libraries/switchery/dist/switchery.css new file mode 100755 index 00000000..74c1da5b --- /dev/null +++ b/js/libraries/switchery/dist/switchery.css @@ -0,0 +1,64 @@ +/* + * + * Main stylesheet for Switchery. + * http://abpetkov.github.io/switchery/ + * + */ + +/* Switchery defaults. */ + +.switchery { + background-color: #fff; + border: 1px solid #dfdfdf; + border-radius: 20px; + cursor: pointer; + display: inline-block; + height: 30px; + position: relative; + vertical-align: middle; + width: 50px; + + -moz-user-select: none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; + box-sizing: content-box; + background-clip: content-box; +} + +.switchery > small { + background: #fff; + border-radius: 100%; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); + height: 30px; + position: absolute; + top: 0; + width: 30px; +} + +/* Switchery sizes. */ + +.switchery-small { + border-radius: 20px; + height: 20px; + width: 33px; +} + +.switchery-small > small { + height: 20px; + width: 20px; +} + +.switchery-large { + border-radius: 40px; + height: 40px; + width: 66px; +} + +.switchery-large > small { + height: 40px; + width: 40px; +} + + diff --git a/js/libraries/switchery/dist/switchery.js b/js/libraries/switchery/dist/switchery.js new file mode 100755 index 00000000..b2a4849d --- /dev/null +++ b/js/libraries/switchery/dist/switchery.js @@ -0,0 +1,1955 @@ + +;(function(){ + +/** + * Require the module at `name`. + * + * @param {String} name + * @return {Object} exports + * @api public + */ + +function require(name) { + var module = require.modules[name]; + if (!module) throw new Error('failed to require "' + name + '"'); + + if (!('exports' in module) && typeof module.definition === 'function') { + module.client = module.component = true; + module.definition.call(this, module.exports = {}, module); + delete module.definition; + } + + return module.exports; +} + +/** + * Meta info, accessible in the global scope unless you use AMD option. + */ + +require.loader = 'component'; + +/** + * Internal helper object, contains a sorting function for semantiv versioning + */ +require.helper = {}; +require.helper.semVerSort = function(a, b) { + var aArray = a.version.split('.'); + var bArray = b.version.split('.'); + for (var i=0; i bLex ? 1 : -1; + continue; + } else if (aInt > bInt) { + return 1; + } else { + return -1; + } + } + return 0; +} + +/** + * Find and require a module which name starts with the provided name. + * If multiple modules exists, the highest semver is used. + * This function can only be used for remote dependencies. + + * @param {String} name - module name: `user~repo` + * @param {Boolean} returnPath - returns the canonical require path if true, + * otherwise it returns the epxorted module + */ +require.latest = function (name, returnPath) { + function showError(name) { + throw new Error('failed to find latest module of "' + name + '"'); + } + // only remotes with semvers, ignore local files conataining a '/' + var versionRegexp = /(.*)~(.*)@v?(\d+\.\d+\.\d+[^\/]*)$/; + var remoteRegexp = /(.*)~(.*)/; + if (!remoteRegexp.test(name)) showError(name); + var moduleNames = Object.keys(require.modules); + var semVerCandidates = []; + var otherCandidates = []; // for instance: name of the git branch + for (var i=0; i 0) { + var module = semVerCandidates.sort(require.helper.semVerSort).pop().name; + if (returnPath === true) { + return module; + } + return require(module); + } + // if the build contains more than one branch of the same module + // you should not use this funciton + var module = otherCandidates.sort(function(a, b) {return a.name > b.name})[0].name; + if (returnPath === true) { + return module; + } + return require(module); +} + +/** + * Registered modules. + */ + +require.modules = {}; + +/** + * Register module at `name` with callback `definition`. + * + * @param {String} name + * @param {Function} definition + * @api private + */ + +require.register = function (name, definition) { + require.modules[name] = { + definition: definition + }; +}; + +/** + * Define a module's exports immediately with `exports`. + * + * @param {String} name + * @param {Generic} exports + * @api private + */ + +require.define = function (name, exports) { + require.modules[name] = { + exports: exports + }; +}; +require.register("abpetkov~transitionize@0.0.3", function (exports, module) { + +/** + * Transitionize 0.0.2 + * https://github.com/abpetkov/transitionize + * + * Authored by Alexander Petkov + * https://github.com/abpetkov + * + * Copyright 2013, Alexander Petkov + * License: The MIT License (MIT) + * http://opensource.org/licenses/MIT + * + */ + +/** + * Expose `Transitionize`. + */ + +module.exports = Transitionize; + +/** + * Initialize new Transitionize. + * + * @param {Object} element + * @param {Object} props + * @api public + */ + +function Transitionize(element, props) { + if (!(this instanceof Transitionize)) return new Transitionize(element, props); + + this.element = element; + this.props = props || {}; + this.init(); +} + +/** + * Detect if Safari. + * + * @returns {Boolean} + * @api private + */ + +Transitionize.prototype.isSafari = function() { + return (/Safari/).test(navigator.userAgent) && (/Apple Computer/).test(navigator.vendor); +}; + +/** + * Loop though the object and push the keys and values in an array. + * Apply the CSS3 transition to the element and prefix with -webkit- for Safari. + * + * @api private + */ + +Transitionize.prototype.init = function() { + var transitions = []; + + for (var key in this.props) { + transitions.push(key + ' ' + this.props[key]); + } + + this.element.style.transition = transitions.join(', '); + if (this.isSafari()) this.element.style.webkitTransition = transitions.join(', '); +}; +}); + +require.register("ftlabs~fastclick@v0.6.11", function (exports, module) { +/** + * @preserve FastClick: polyfill to remove click delays on browsers with touch UIs. + * + * @version 0.6.11 + * @codingstandard ftlabs-jsv2 + * @copyright The Financial Times Limited [All Rights Reserved] + * @license MIT License (see LICENSE.txt) + */ + +/*jslint browser:true, node:true*/ +/*global define, Event, Node*/ + + +/** + * Instantiate fast-clicking listeners on the specificed layer. + * + * @constructor + * @param {Element} layer The layer to listen on + */ +function FastClick(layer) { + 'use strict'; + var oldOnClick, self = this; + + + /** + * Whether a click is currently being tracked. + * + * @type boolean + */ + this.trackingClick = false; + + + /** + * Timestamp for when when click tracking started. + * + * @type number + */ + this.trackingClickStart = 0; + + + /** + * The element being tracked for a click. + * + * @type EventTarget + */ + this.targetElement = null; + + + /** + * X-coordinate of touch start event. + * + * @type number + */ + this.touchStartX = 0; + + + /** + * Y-coordinate of touch start event. + * + * @type number + */ + this.touchStartY = 0; + + + /** + * ID of the last touch, retrieved from Touch.identifier. + * + * @type number + */ + this.lastTouchIdentifier = 0; + + + /** + * Touchmove boundary, beyond which a click will be cancelled. + * + * @type number + */ + this.touchBoundary = 10; + + + /** + * The FastClick layer. + * + * @type Element + */ + this.layer = layer; + + if (!layer || !layer.nodeType) { + throw new TypeError('Layer must be a document node'); + } + + /** @type function() */ + this.onClick = function() { return FastClick.prototype.onClick.apply(self, arguments); }; + + /** @type function() */ + this.onMouse = function() { return FastClick.prototype.onMouse.apply(self, arguments); }; + + /** @type function() */ + this.onTouchStart = function() { return FastClick.prototype.onTouchStart.apply(self, arguments); }; + + /** @type function() */ + this.onTouchMove = function() { return FastClick.prototype.onTouchMove.apply(self, arguments); }; + + /** @type function() */ + this.onTouchEnd = function() { return FastClick.prototype.onTouchEnd.apply(self, arguments); }; + + /** @type function() */ + this.onTouchCancel = function() { return FastClick.prototype.onTouchCancel.apply(self, arguments); }; + + if (FastClick.notNeeded(layer)) { + return; + } + + // Set up event handlers as required + if (this.deviceIsAndroid) { + layer.addEventListener('mouseover', this.onMouse, true); + layer.addEventListener('mousedown', this.onMouse, true); + layer.addEventListener('mouseup', this.onMouse, true); + } + + layer.addEventListener('click', this.onClick, true); + layer.addEventListener('touchstart', this.onTouchStart, false); + layer.addEventListener('touchmove', this.onTouchMove, false); + layer.addEventListener('touchend', this.onTouchEnd, false); + layer.addEventListener('touchcancel', this.onTouchCancel, false); + + // Hack is required for browsers that don't support Event#stopImmediatePropagation (e.g. Android 2) + // which is how FastClick normally stops click events bubbling to callbacks registered on the FastClick + // layer when they are cancelled. + if (!Event.prototype.stopImmediatePropagation) { + layer.removeEventListener = function(type, callback, capture) { + var rmv = Node.prototype.removeEventListener; + if (type === 'click') { + rmv.call(layer, type, callback.hijacked || callback, capture); + } else { + rmv.call(layer, type, callback, capture); + } + }; + + layer.addEventListener = function(type, callback, capture) { + var adv = Node.prototype.addEventListener; + if (type === 'click') { + adv.call(layer, type, callback.hijacked || (callback.hijacked = function(event) { + if (!event.propagationStopped) { + callback(event); + } + }), capture); + } else { + adv.call(layer, type, callback, capture); + } + }; + } + + // If a handler is already declared in the element's onclick attribute, it will be fired before + // FastClick's onClick handler. Fix this by pulling out the user-defined handler function and + // adding it as listener. + if (typeof layer.onclick === 'function') { + + // Android browser on at least 3.2 requires a new reference to the function in layer.onclick + // - the old one won't work if passed to addEventListener directly. + oldOnClick = layer.onclick; + layer.addEventListener('click', function(event) { + oldOnClick(event); + }, false); + layer.onclick = null; + } +} + + +/** + * Android requires exceptions. + * + * @type boolean + */ +FastClick.prototype.deviceIsAndroid = navigator.userAgent.indexOf('Android') > 0; + + +/** + * iOS requires exceptions. + * + * @type boolean + */ +FastClick.prototype.deviceIsIOS = /iP(ad|hone|od)/.test(navigator.userAgent); + + +/** + * iOS 4 requires an exception for select elements. + * + * @type boolean + */ +FastClick.prototype.deviceIsIOS4 = FastClick.prototype.deviceIsIOS && (/OS 4_\d(_\d)?/).test(navigator.userAgent); + + +/** + * iOS 6.0(+?) requires the target element to be manually derived + * + * @type boolean + */ +FastClick.prototype.deviceIsIOSWithBadTarget = FastClick.prototype.deviceIsIOS && (/OS ([6-9]|\d{2})_\d/).test(navigator.userAgent); + + +/** + * Determine whether a given element requires a native click. + * + * @param {EventTarget|Element} target Target DOM element + * @returns {boolean} Returns true if the element needs a native click + */ +FastClick.prototype.needsClick = function(target) { + 'use strict'; + switch (target.nodeName.toLowerCase()) { + + // Don't send a synthetic click to disabled inputs (issue #62) + case 'button': + case 'select': + case 'textarea': + if (target.disabled) { + return true; + } + + break; + case 'input': + + // File inputs need real clicks on iOS 6 due to a browser bug (issue #68) + if ((this.deviceIsIOS && target.type === 'file') || target.disabled) { + return true; + } + + break; + case 'label': + case 'video': + return true; + } + + return (/\bneedsclick\b/).test(target.className); +}; + + +/** + * Determine whether a given element requires a call to focus to simulate click into element. + * + * @param {EventTarget|Element} target Target DOM element + * @returns {boolean} Returns true if the element requires a call to focus to simulate native click. + */ +FastClick.prototype.needsFocus = function(target) { + 'use strict'; + switch (target.nodeName.toLowerCase()) { + case 'textarea': + return true; + case 'select': + return !this.deviceIsAndroid; + case 'input': + switch (target.type) { + case 'button': + case 'checkbox': + case 'file': + case 'image': + case 'radio': + case 'submit': + return false; + } + + // No point in attempting to focus disabled inputs + return !target.disabled && !target.readOnly; + default: + return (/\bneedsfocus\b/).test(target.className); + } +}; + + +/** + * Send a click event to the specified element. + * + * @param {EventTarget|Element} targetElement + * @param {Event} event + */ +FastClick.prototype.sendClick = function(targetElement, event) { + 'use strict'; + var clickEvent, touch; + + // On some Android devices activeElement needs to be blurred otherwise the synthetic click will have no effect (#24) + if (document.activeElement && document.activeElement !== targetElement) { + document.activeElement.blur(); + } + + touch = event.changedTouches[0]; + + // Synthesise a click event, with an extra attribute so it can be tracked + clickEvent = document.createEvent('MouseEvents'); + clickEvent.initMouseEvent(this.determineEventType(targetElement), true, true, window, 1, touch.screenX, touch.screenY, touch.clientX, touch.clientY, false, false, false, false, 0, null); + clickEvent.forwardedTouchEvent = true; + targetElement.dispatchEvent(clickEvent); +}; + +FastClick.prototype.determineEventType = function(targetElement) { + 'use strict'; + + //Issue #159: Android Chrome Select Box does not open with a synthetic click event + if (this.deviceIsAndroid && targetElement.tagName.toLowerCase() === 'select') { + return 'mousedown'; + } + + return 'click'; +}; + + +/** + * @param {EventTarget|Element} targetElement + */ +FastClick.prototype.focus = function(targetElement) { + 'use strict'; + var length; + + // Issue #160: on iOS 7, some input elements (e.g. date datetime) throw a vague TypeError on setSelectionRange. These elements don't have an integer value for the selectionStart and selectionEnd properties, but unfortunately that can't be used for detection because accessing the properties also throws a TypeError. Just check the type instead. Filed as Apple bug #15122724. + if (this.deviceIsIOS && targetElement.setSelectionRange && targetElement.type.indexOf('date') !== 0 && targetElement.type !== 'time') { + length = targetElement.value.length; + targetElement.setSelectionRange(length, length); + } else { + targetElement.focus(); + } +}; + + +/** + * Check whether the given target element is a child of a scrollable layer and if so, set a flag on it. + * + * @param {EventTarget|Element} targetElement + */ +FastClick.prototype.updateScrollParent = function(targetElement) { + 'use strict'; + var scrollParent, parentElement; + + scrollParent = targetElement.fastClickScrollParent; + + // Attempt to discover whether the target element is contained within a scrollable layer. Re-check if the + // target element was moved to another parent. + if (!scrollParent || !scrollParent.contains(targetElement)) { + parentElement = targetElement; + do { + if (parentElement.scrollHeight > parentElement.offsetHeight) { + scrollParent = parentElement; + targetElement.fastClickScrollParent = parentElement; + break; + } + + parentElement = parentElement.parentElement; + } while (parentElement); + } + + // Always update the scroll top tracker if possible. + if (scrollParent) { + scrollParent.fastClickLastScrollTop = scrollParent.scrollTop; + } +}; + + +/** + * @param {EventTarget} targetElement + * @returns {Element|EventTarget} + */ +FastClick.prototype.getTargetElementFromEventTarget = function(eventTarget) { + 'use strict'; + + // On some older browsers (notably Safari on iOS 4.1 - see issue #56) the event target may be a text node. + if (eventTarget.nodeType === Node.TEXT_NODE) { + return eventTarget.parentNode; + } + + return eventTarget; +}; + + +/** + * On touch start, record the position and scroll offset. + * + * @param {Event} event + * @returns {boolean} + */ +FastClick.prototype.onTouchStart = function(event) { + 'use strict'; + var targetElement, touch, selection; + + // Ignore multiple touches, otherwise pinch-to-zoom is prevented if both fingers are on the FastClick element (issue #111). + if (event.targetTouches.length > 1) { + return true; + } + + targetElement = this.getTargetElementFromEventTarget(event.target); + touch = event.targetTouches[0]; + + if (this.deviceIsIOS) { + + // Only trusted events will deselect text on iOS (issue #49) + selection = window.getSelection(); + if (selection.rangeCount && !selection.isCollapsed) { + return true; + } + + if (!this.deviceIsIOS4) { + + // Weird things happen on iOS when an alert or confirm dialog is opened from a click event callback (issue #23): + // when the user next taps anywhere else on the page, new touchstart and touchend events are dispatched + // with the same identifier as the touch event that previously triggered the click that triggered the alert. + // Sadly, there is an issue on iOS 4 that causes some normal touch events to have the same identifier as an + // immediately preceeding touch event (issue #52), so this fix is unavailable on that platform. + if (touch.identifier === this.lastTouchIdentifier) { + event.preventDefault(); + return false; + } + + this.lastTouchIdentifier = touch.identifier; + + // If the target element is a child of a scrollable layer (using -webkit-overflow-scrolling: touch) and: + // 1) the user does a fling scroll on the scrollable layer + // 2) the user stops the fling scroll with another tap + // then the event.target of the last 'touchend' event will be the element that was under the user's finger + // when the fling scroll was started, causing FastClick to send a click event to that layer - unless a check + // is made to ensure that a parent layer was not scrolled before sending a synthetic click (issue #42). + this.updateScrollParent(targetElement); + } + } + + this.trackingClick = true; + this.trackingClickStart = event.timeStamp; + this.targetElement = targetElement; + + this.touchStartX = touch.pageX; + this.touchStartY = touch.pageY; + + // Prevent phantom clicks on fast double-tap (issue #36) + if ((event.timeStamp - this.lastClickTime) < 200) { + event.preventDefault(); + } + + return true; +}; + + +/** + * Based on a touchmove event object, check whether the touch has moved past a boundary since it started. + * + * @param {Event} event + * @returns {boolean} + */ +FastClick.prototype.touchHasMoved = function(event) { + 'use strict'; + var touch = event.changedTouches[0], boundary = this.touchBoundary; + + if (Math.abs(touch.pageX - this.touchStartX) > boundary || Math.abs(touch.pageY - this.touchStartY) > boundary) { + return true; + } + + return false; +}; + + +/** + * Update the last position. + * + * @param {Event} event + * @returns {boolean} + */ +FastClick.prototype.onTouchMove = function(event) { + 'use strict'; + if (!this.trackingClick) { + return true; + } + + // If the touch has moved, cancel the click tracking + if (this.targetElement !== this.getTargetElementFromEventTarget(event.target) || this.touchHasMoved(event)) { + this.trackingClick = false; + this.targetElement = null; + } + + return true; +}; + + +/** + * Attempt to find the labelled control for the given label element. + * + * @param {EventTarget|HTMLLabelElement} labelElement + * @returns {Element|null} + */ +FastClick.prototype.findControl = function(labelElement) { + 'use strict'; + + // Fast path for newer browsers supporting the HTML5 control attribute + if (labelElement.control !== undefined) { + return labelElement.control; + } + + // All browsers under test that support touch events also support the HTML5 htmlFor attribute + if (labelElement.htmlFor) { + return document.getElementById(labelElement.htmlFor); + } + + // If no for attribute exists, attempt to retrieve the first labellable descendant element + // the list of which is defined here: http://www.w3.org/TR/html5/forms.html#category-label + return labelElement.querySelector('button, input:not([type=hidden]), keygen, meter, output, progress, select, textarea'); +}; + + +/** + * On touch end, determine whether to send a click event at once. + * + * @param {Event} event + * @returns {boolean} + */ +FastClick.prototype.onTouchEnd = function(event) { + 'use strict'; + var forElement, trackingClickStart, targetTagName, scrollParent, touch, targetElement = this.targetElement; + + if (!this.trackingClick) { + return true; + } + + // Prevent phantom clicks on fast double-tap (issue #36) + if ((event.timeStamp - this.lastClickTime) < 200) { + this.cancelNextClick = true; + return true; + } + + // Reset to prevent wrong click cancel on input (issue #156). + this.cancelNextClick = false; + + this.lastClickTime = event.timeStamp; + + trackingClickStart = this.trackingClickStart; + this.trackingClick = false; + this.trackingClickStart = 0; + + // On some iOS devices, the targetElement supplied with the event is invalid if the layer + // is performing a transition or scroll, and has to be re-detected manually. Note that + // for this to function correctly, it must be called *after* the event target is checked! + // See issue #57; also filed as rdar://13048589 . + if (this.deviceIsIOSWithBadTarget) { + touch = event.changedTouches[0]; + + // In certain cases arguments of elementFromPoint can be negative, so prevent setting targetElement to null + targetElement = document.elementFromPoint(touch.pageX - window.pageXOffset, touch.pageY - window.pageYOffset) || targetElement; + targetElement.fastClickScrollParent = this.targetElement.fastClickScrollParent; + } + + targetTagName = targetElement.tagName.toLowerCase(); + if (targetTagName === 'label') { + forElement = this.findControl(targetElement); + if (forElement) { + this.focus(targetElement); + if (this.deviceIsAndroid) { + return false; + } + + targetElement = forElement; + } + } else if (this.needsFocus(targetElement)) { + + // Case 1: If the touch started a while ago (best guess is 100ms based on tests for issue #36) then focus will be triggered anyway. Return early and unset the target element reference so that the subsequent click will be allowed through. + // Case 2: Without this exception for input elements tapped when the document is contained in an iframe, then any inputted text won't be visible even though the value attribute is updated as the user types (issue #37). + if ((event.timeStamp - trackingClickStart) > 100 || (this.deviceIsIOS && window.top !== window && targetTagName === 'input')) { + this.targetElement = null; + return false; + } + + this.focus(targetElement); + + // Select elements need the event to go through on iOS 4, otherwise the selector menu won't open. + if (!this.deviceIsIOS4 || targetTagName !== 'select') { + this.targetElement = null; + event.preventDefault(); + } + + return false; + } + + if (this.deviceIsIOS && !this.deviceIsIOS4) { + + // Don't send a synthetic click event if the target element is contained within a parent layer that was scrolled + // and this tap is being used to stop the scrolling (usually initiated by a fling - issue #42). + scrollParent = targetElement.fastClickScrollParent; + if (scrollParent && scrollParent.fastClickLastScrollTop !== scrollParent.scrollTop) { + return true; + } + } + + // Prevent the actual click from going though - unless the target node is marked as requiring + // real clicks or if it is in the whitelist in which case only non-programmatic clicks are permitted. + if (!this.needsClick(targetElement)) { + event.preventDefault(); + this.sendClick(targetElement, event); + } + + return false; +}; + + +/** + * On touch cancel, stop tracking the click. + * + * @returns {void} + */ +FastClick.prototype.onTouchCancel = function() { + 'use strict'; + this.trackingClick = false; + this.targetElement = null; +}; + + +/** + * Determine mouse events which should be permitted. + * + * @param {Event} event + * @returns {boolean} + */ +FastClick.prototype.onMouse = function(event) { + 'use strict'; + + // If a target element was never set (because a touch event was never fired) allow the event + if (!this.targetElement) { + return true; + } + + if (event.forwardedTouchEvent) { + return true; + } + + // Programmatically generated events targeting a specific element should be permitted + if (!event.cancelable) { + return true; + } + + // Derive and check the target element to see whether the mouse event needs to be permitted; + // unless explicitly enabled, prevent non-touch click events from triggering actions, + // to prevent ghost/doubleclicks. + if (!this.needsClick(this.targetElement) || this.cancelNextClick) { + + // Prevent any user-added listeners declared on FastClick element from being fired. + if (event.stopImmediatePropagation) { + event.stopImmediatePropagation(); + } else { + + // Part of the hack for browsers that don't support Event#stopImmediatePropagation (e.g. Android 2) + event.propagationStopped = true; + } + + // Cancel the event + event.stopPropagation(); + event.preventDefault(); + + return false; + } + + // If the mouse event is permitted, return true for the action to go through. + return true; +}; + + +/** + * On actual clicks, determine whether this is a touch-generated click, a click action occurring + * naturally after a delay after a touch (which needs to be cancelled to avoid duplication), or + * an actual click which should be permitted. + * + * @param {Event} event + * @returns {boolean} + */ +FastClick.prototype.onClick = function(event) { + 'use strict'; + var permitted; + + // It's possible for another FastClick-like library delivered with third-party code to fire a click event before FastClick does (issue #44). In that case, set the click-tracking flag back to false and return early. This will cause onTouchEnd to return early. + if (this.trackingClick) { + this.targetElement = null; + this.trackingClick = false; + return true; + } + + // Very odd behaviour on iOS (issue #18): if a submit element is present inside a form and the user hits enter in the iOS simulator or clicks the Go button on the pop-up OS keyboard the a kind of 'fake' click event will be triggered with the submit-type input element as the target. + if (event.target.type === 'submit' && event.detail === 0) { + return true; + } + + permitted = this.onMouse(event); + + // Only unset targetElement if the click is not permitted. This will ensure that the check for !targetElement in onMouse fails and the browser's click doesn't go through. + if (!permitted) { + this.targetElement = null; + } + + // If clicks are permitted, return true for the action to go through. + return permitted; +}; + + +/** + * Remove all FastClick's event listeners. + * + * @returns {void} + */ +FastClick.prototype.destroy = function() { + 'use strict'; + var layer = this.layer; + + if (this.deviceIsAndroid) { + layer.removeEventListener('mouseover', this.onMouse, true); + layer.removeEventListener('mousedown', this.onMouse, true); + layer.removeEventListener('mouseup', this.onMouse, true); + } + + layer.removeEventListener('click', this.onClick, true); + layer.removeEventListener('touchstart', this.onTouchStart, false); + layer.removeEventListener('touchmove', this.onTouchMove, false); + layer.removeEventListener('touchend', this.onTouchEnd, false); + layer.removeEventListener('touchcancel', this.onTouchCancel, false); +}; + + +/** + * Check whether FastClick is needed. + * + * @param {Element} layer The layer to listen on + */ +FastClick.notNeeded = function(layer) { + 'use strict'; + var metaViewport; + var chromeVersion; + + // Devices that don't support touch don't need FastClick + if (typeof window.ontouchstart === 'undefined') { + return true; + } + + // Chrome version - zero for other browsers + chromeVersion = +(/Chrome\/([0-9]+)/.exec(navigator.userAgent) || [,0])[1]; + + if (chromeVersion) { + + if (FastClick.prototype.deviceIsAndroid) { + metaViewport = document.querySelector('meta[name=viewport]'); + + if (metaViewport) { + // Chrome on Android with user-scalable="no" doesn't need FastClick (issue #89) + if (metaViewport.content.indexOf('user-scalable=no') !== -1) { + return true; + } + // Chrome 32 and above with width=device-width or less don't need FastClick + if (chromeVersion > 31 && window.innerWidth <= window.screen.width) { + return true; + } + } + + // Chrome desktop doesn't need FastClick (issue #15) + } else { + return true; + } + } + + // IE10 with -ms-touch-action: none, which disables double-tap-to-zoom (issue #97) + if (layer.style.msTouchAction === 'none') { + return true; + } + + return false; +}; + + +/** + * Factory method for creating a FastClick object + * + * @param {Element} layer The layer to listen on + */ +FastClick.attach = function(layer) { + 'use strict'; + return new FastClick(layer); +}; + + +if (typeof define !== 'undefined' && define.amd) { + + // AMD. Register as an anonymous module. + define(function() { + 'use strict'; + return FastClick; + }); +} else if (typeof module !== 'undefined' && module.exports) { + module.exports = FastClick.attach; + module.exports.FastClick = FastClick; +} else { + window.FastClick = FastClick; +} + +}); + +require.register("component~indexof@0.0.3", function (exports, module) { +module.exports = function(arr, obj){ + if (arr.indexOf) return arr.indexOf(obj); + for (var i = 0; i < arr.length; ++i) { + if (arr[i] === obj) return i; + } + return -1; +}; +}); + +require.register("component~classes@1.2.1", function (exports, module) { +/** + * Module dependencies. + */ + +var index = require('component~indexof@0.0.3'); + +/** + * Whitespace regexp. + */ + +var re = /\s+/; + +/** + * toString reference. + */ + +var toString = Object.prototype.toString; + +/** + * Wrap `el` in a `ClassList`. + * + * @param {Element} el + * @return {ClassList} + * @api public + */ + +module.exports = function(el){ + return new ClassList(el); +}; + +/** + * Initialize a new ClassList for `el`. + * + * @param {Element} el + * @api private + */ + +function ClassList(el) { + if (!el) throw new Error('A DOM element reference is required'); + this.el = el; + this.list = el.classList; +} + +/** + * Add class `name` if not already present. + * + * @param {String} name + * @return {ClassList} + * @api public + */ + +ClassList.prototype.add = function(name){ + // classList + if (this.list) { + this.list.add(name); + return this; + } + + // fallback + var arr = this.array(); + var i = index(arr, name); + if (!~i) arr.push(name); + this.el.className = arr.join(' '); + return this; +}; + +/** + * Remove class `name` when present, or + * pass a regular expression to remove + * any which match. + * + * @param {String|RegExp} name + * @return {ClassList} + * @api public + */ + +ClassList.prototype.remove = function(name){ + if ('[object RegExp]' == toString.call(name)) { + return this.removeMatching(name); + } + + // classList + if (this.list) { + this.list.remove(name); + return this; + } + + // fallback + var arr = this.array(); + var i = index(arr, name); + if (~i) arr.splice(i, 1); + this.el.className = arr.join(' '); + return this; +}; + +/** + * Remove all classes matching `re`. + * + * @param {RegExp} re + * @return {ClassList} + * @api private + */ + +ClassList.prototype.removeMatching = function(re){ + var arr = this.array(); + for (var i = 0; i < arr.length; i++) { + if (re.test(arr[i])) { + this.remove(arr[i]); + } + } + return this; +}; + +/** + * Toggle class `name`, can force state via `force`. + * + * For browsers that support classList, but do not support `force` yet, + * the mistake will be detected and corrected. + * + * @param {String} name + * @param {Boolean} force + * @return {ClassList} + * @api public + */ + +ClassList.prototype.toggle = function(name, force){ + // classList + if (this.list) { + if ("undefined" !== typeof force) { + if (force !== this.list.toggle(name, force)) { + this.list.toggle(name); // toggle again to correct + } + } else { + this.list.toggle(name); + } + return this; + } + + // fallback + if ("undefined" !== typeof force) { + if (!force) { + this.remove(name); + } else { + this.add(name); + } + } else { + if (this.has(name)) { + this.remove(name); + } else { + this.add(name); + } + } + + return this; +}; + +/** + * Return an array of classes. + * + * @return {Array} + * @api public + */ + +ClassList.prototype.array = function(){ + var str = this.el.className.replace(/^\s+|\s+$/g, ''); + var arr = str.split(re); + if ('' === arr[0]) arr.shift(); + return arr; +}; + +/** + * Check if class `name` is present. + * + * @param {String} name + * @return {ClassList} + * @api public + */ + +ClassList.prototype.has = +ClassList.prototype.contains = function(name){ + return this.list + ? this.list.contains(name) + : !! ~index(this.array(), name); +}; + +}); + +require.register("component~event@0.1.4", function (exports, module) { +var bind = window.addEventListener ? 'addEventListener' : 'attachEvent', + unbind = window.removeEventListener ? 'removeEventListener' : 'detachEvent', + prefix = bind !== 'addEventListener' ? 'on' : ''; + +/** + * Bind `el` event `type` to `fn`. + * + * @param {Element} el + * @param {String} type + * @param {Function} fn + * @param {Boolean} capture + * @return {Function} + * @api public + */ + +exports.bind = function(el, type, fn, capture){ + el[bind](prefix + type, fn, capture || false); + return fn; +}; + +/** + * Unbind `el` event `type`'s callback `fn`. + * + * @param {Element} el + * @param {String} type + * @param {Function} fn + * @param {Boolean} capture + * @return {Function} + * @api public + */ + +exports.unbind = function(el, type, fn, capture){ + el[unbind](prefix + type, fn, capture || false); + return fn; +}; +}); + +require.register("component~query@0.0.3", function (exports, module) { +function one(selector, el) { + return el.querySelector(selector); +} + +exports = module.exports = function(selector, el){ + el = el || document; + return one(selector, el); +}; + +exports.all = function(selector, el){ + el = el || document; + return el.querySelectorAll(selector); +}; + +exports.engine = function(obj){ + if (!obj.one) throw new Error('.one callback required'); + if (!obj.all) throw new Error('.all callback required'); + one = obj.one; + exports.all = obj.all; + return exports; +}; + +}); + +require.register("component~matches-selector@0.1.5", function (exports, module) { +/** + * Module dependencies. + */ + +var query = require('component~query@0.0.3'); + +/** + * Element prototype. + */ + +var proto = Element.prototype; + +/** + * Vendor function. + */ + +var vendor = proto.matches + || proto.webkitMatchesSelector + || proto.mozMatchesSelector + || proto.msMatchesSelector + || proto.oMatchesSelector; + +/** + * Expose `match()`. + */ + +module.exports = match; + +/** + * Match `el` to `selector`. + * + * @param {Element} el + * @param {String} selector + * @return {Boolean} + * @api public + */ + +function match(el, selector) { + if (!el || el.nodeType !== 1) return false; + if (vendor) return vendor.call(el, selector); + var nodes = query.all(selector, el.parentNode); + for (var i = 0; i < nodes.length; ++i) { + if (nodes[i] == el) return true; + } + return false; +} + +}); + +require.register("component~closest@0.1.4", function (exports, module) { +var matches = require('component~matches-selector@0.1.5') + +module.exports = function (element, selector, checkYoSelf, root) { + element = checkYoSelf ? {parentNode: element} : element + + root = root || document + + // Make sure `element !== document` and `element != null` + // otherwise we get an illegal invocation + while ((element = element.parentNode) && element !== document) { + if (matches(element, selector)) + return element + // After `matches` on the edge case that + // the selector matches the root + // (when the root is not the document) + if (element === root) + return + } +} + +}); + +require.register("component~delegate@0.2.3", function (exports, module) { +/** + * Module dependencies. + */ + +var closest = require('component~closest@0.1.4') + , event = require('component~event@0.1.4'); + +/** + * Delegate event `type` to `selector` + * and invoke `fn(e)`. A callback function + * is returned which may be passed to `.unbind()`. + * + * @param {Element} el + * @param {String} selector + * @param {String} type + * @param {Function} fn + * @param {Boolean} capture + * @return {Function} + * @api public + */ + +exports.bind = function(el, selector, type, fn, capture){ + return event.bind(el, type, function(e){ + var target = e.target || e.srcElement; + e.delegateTarget = closest(target, selector, true, el); + if (e.delegateTarget) fn.call(el, e); + }, capture); +}; + +/** + * Unbind event `type`'s callback `fn`. + * + * @param {Element} el + * @param {String} type + * @param {Function} fn + * @param {Boolean} capture + * @api public + */ + +exports.unbind = function(el, type, fn, capture){ + event.unbind(el, type, fn, capture); +}; + +}); + +require.register("component~events@1.0.9", function (exports, module) { + +/** + * Module dependencies. + */ + +var events = require('component~event@0.1.4'); +var delegate = require('component~delegate@0.2.3'); + +/** + * Expose `Events`. + */ + +module.exports = Events; + +/** + * Initialize an `Events` with the given + * `el` object which events will be bound to, + * and the `obj` which will receive method calls. + * + * @param {Object} el + * @param {Object} obj + * @api public + */ + +function Events(el, obj) { + if (!(this instanceof Events)) return new Events(el, obj); + if (!el) throw new Error('element required'); + if (!obj) throw new Error('object required'); + this.el = el; + this.obj = obj; + this._events = {}; +} + +/** + * Subscription helper. + */ + +Events.prototype.sub = function(event, method, cb){ + this._events[event] = this._events[event] || {}; + this._events[event][method] = cb; +}; + +/** + * Bind to `event` with optional `method` name. + * When `method` is undefined it becomes `event` + * with the "on" prefix. + * + * Examples: + * + * Direct event handling: + * + * events.bind('click') // implies "onclick" + * events.bind('click', 'remove') + * events.bind('click', 'sort', 'asc') + * + * Delegated event handling: + * + * events.bind('click li > a') + * events.bind('click li > a', 'remove') + * events.bind('click a.sort-ascending', 'sort', 'asc') + * events.bind('click a.sort-descending', 'sort', 'desc') + * + * @param {String} event + * @param {String|function} [method] + * @return {Function} callback + * @api public + */ + +Events.prototype.bind = function(event, method){ + var e = parse(event); + var el = this.el; + var obj = this.obj; + var name = e.name; + var method = method || 'on' + name; + var args = [].slice.call(arguments, 2); + + // callback + function cb(){ + var a = [].slice.call(arguments).concat(args); + obj[method].apply(obj, a); + } + + // bind + if (e.selector) { + cb = delegate.bind(el, e.selector, name, cb); + } else { + events.bind(el, name, cb); + } + + // subscription for unbinding + this.sub(name, method, cb); + + return cb; +}; + +/** + * Unbind a single binding, all bindings for `event`, + * or all bindings within the manager. + * + * Examples: + * + * Unbind direct handlers: + * + * events.unbind('click', 'remove') + * events.unbind('click') + * events.unbind() + * + * Unbind delegate handlers: + * + * events.unbind('click', 'remove') + * events.unbind('click') + * events.unbind() + * + * @param {String|Function} [event] + * @param {String|Function} [method] + * @api public + */ + +Events.prototype.unbind = function(event, method){ + if (0 == arguments.length) return this.unbindAll(); + if (1 == arguments.length) return this.unbindAllOf(event); + + // no bindings for this event + var bindings = this._events[event]; + if (!bindings) return; + + // no bindings for this method + var cb = bindings[method]; + if (!cb) return; + + events.unbind(this.el, event, cb); +}; + +/** + * Unbind all events. + * + * @api private + */ + +Events.prototype.unbindAll = function(){ + for (var event in this._events) { + this.unbindAllOf(event); + } +}; + +/** + * Unbind all events for `event`. + * + * @param {String} event + * @api private + */ + +Events.prototype.unbindAllOf = function(event){ + var bindings = this._events[event]; + if (!bindings) return; + + for (var method in bindings) { + this.unbind(event, method); + } +}; + +/** + * Parse `event`. + * + * @param {String} event + * @return {Object} + * @api private + */ + +function parse(event) { + var parts = event.split(/ +/); + return { + name: parts.shift(), + selector: parts.join(' ') + } +} + +}); + +require.register("switchery", function (exports, module) { +/** + * Switchery 0.8.1 + * http://abpetkov.github.io/switchery/ + * + * Authored by Alexander Petkov + * https://github.com/abpetkov + * + * Copyright 2013-2015, Alexander Petkov + * License: The MIT License (MIT) + * http://opensource.org/licenses/MIT + * + */ + +/** + * External dependencies. + */ + +var transitionize = require('abpetkov~transitionize@0.0.3') + , fastclick = require('ftlabs~fastclick@v0.6.11') + , classes = require('component~classes@1.2.1') + , events = require('component~events@1.0.9'); + +/** + * Expose `Switchery`. + */ + +module.exports = Switchery; + +/** + * Set Switchery default values. + * + * @api public + */ + +var defaults = { + color : '#64bd63' + , secondaryColor : '#dfdfdf' + , jackColor : '#fff' + , jackSecondaryColor: null + , className : 'switchery' + , disabled : false + , disabledOpacity : 0.5 + , speed : '0.4s' + , size : 'default' +}; + +/** + * Create Switchery object. + * + * @param {Object} element + * @param {Object} options + * @api public + */ + +function Switchery(element, options) { + if (!(this instanceof Switchery)) return new Switchery(element, options); + + this.element = element; + this.options = options || {}; + + for (var i in defaults) { + if (this.options[i] == null) { + this.options[i] = defaults[i]; + } + } + + if (this.element != null && this.element.type == 'checkbox') this.init(); + if (this.isDisabled() === true) this.disable(); +} + +/** + * Hide the target element. + * + * @api private + */ + +Switchery.prototype.hide = function() { + this.element.style.display = 'none'; +}; + +/** + * Show custom switch after the target element. + * + * @api private + */ + +Switchery.prototype.show = function() { + var switcher = this.create(); + this.insertAfter(this.element, switcher); +}; + +/** + * Create custom switch. + * + * @returns {Object} this.switcher + * @api private + */ + +Switchery.prototype.create = function() { + this.switcher = document.createElement('span'); + this.jack = document.createElement('small'); + this.switcher.appendChild(this.jack); + this.switcher.className = this.options.className; + this.events = events(this.switcher, this); + + return this.switcher; +}; + +/** + * Insert after element after another element. + * + * @param {Object} reference + * @param {Object} target + * @api private + */ + +Switchery.prototype.insertAfter = function(reference, target) { + reference.parentNode.insertBefore(target, reference.nextSibling); +}; + +/** + * Set switch jack proper position. + * + * @param {Boolean} clicked - we need this in order to uncheck the input when the switch is clicked + * @api private + */ + +Switchery.prototype.setPosition = function (clicked) { + var checked = this.isChecked() + , switcher = this.switcher + , jack = this.jack; + + if (clicked && checked) checked = false; + else if (clicked && !checked) checked = true; + + if (checked === true) { + this.element.checked = true; + + if (window.getComputedStyle) jack.style.left = parseInt(window.getComputedStyle(switcher).width) - parseInt(window.getComputedStyle(jack).width) + 'px'; + else jack.style.left = parseInt(switcher.currentStyle['width']) - parseInt(jack.currentStyle['width']) + 'px'; + + if (this.options.color) this.colorize(); + this.setSpeed(); + } else { + jack.style.left = 0; + this.element.checked = false; + this.switcher.style.boxShadow = 'inset 0 0 0 0 ' + this.options.secondaryColor; + this.switcher.style.borderColor = this.options.secondaryColor; + this.switcher.style.backgroundColor = (this.options.secondaryColor !== defaults.secondaryColor) ? this.options.secondaryColor : '#fff'; + this.jack.style.backgroundColor = (this.options.jackSecondaryColor !== this.options.jackColor) ? this.options.jackSecondaryColor : this.options.jackColor; + this.setSpeed(); + } +}; + +/** + * Set speed. + * + * @api private + */ + +Switchery.prototype.setSpeed = function() { + var switcherProp = {} + , jackProp = { + 'background-color': this.options.speed + , 'left': this.options.speed.replace(/[a-z]/, '') / 2 + 's' + }; + + if (this.isChecked()) { + switcherProp = { + 'border': this.options.speed + , 'box-shadow': this.options.speed + , 'background-color': this.options.speed.replace(/[a-z]/, '') * 3 + 's' + }; + } else { + switcherProp = { + 'border': this.options.speed + , 'box-shadow': this.options.speed + }; + } + + transitionize(this.switcher, switcherProp); + transitionize(this.jack, jackProp); +}; + +/** + * Set switch size. + * + * @api private + */ + +Switchery.prototype.setSize = function() { + var small = 'switchery-small' + , normal = 'switchery-default' + , large = 'switchery-large'; + + switch (this.options.size) { + case 'small': + classes(this.switcher).add(small) + break; + case 'large': + classes(this.switcher).add(large) + break; + default: + classes(this.switcher).add(normal) + break; + } +}; + +/** + * Set switch color. + * + * @api private + */ + +Switchery.prototype.colorize = function() { + var switcherHeight = this.switcher.offsetHeight / 2; + + this.switcher.style.backgroundColor = this.options.color; + this.switcher.style.borderColor = this.options.color; + this.switcher.style.boxShadow = 'inset 0 0 0 ' + switcherHeight + 'px ' + this.options.color; + this.jack.style.backgroundColor = this.options.jackColor; +}; + +/** + * Handle the onchange event. + * + * @param {Boolean} state + * @api private + */ + +Switchery.prototype.handleOnchange = function(state) { + if (document.dispatchEvent) { + var event = document.createEvent('HTMLEvents'); + event.initEvent('change', true, true); + this.element.dispatchEvent(event); + } else { + this.element.fireEvent('onchange'); + } +}; + +/** + * Handle the native input element state change. + * A `change` event must be fired in order to detect the change. + * + * @api private + */ + +Switchery.prototype.handleChange = function() { + var self = this + , el = this.element; + + if (el.addEventListener) { + el.addEventListener('change', function() { + self.setPosition(); + }); + } else { + el.attachEvent('onchange', function() { + self.setPosition(); + }); + } +}; + +/** + * Handle the switch click event. + * + * @api private + */ + +Switchery.prototype.handleClick = function() { + var switcher = this.switcher; + + fastclick(switcher); + this.events.bind('click', 'bindClick'); +}; + +/** + * Attach all methods that need to happen on switcher click. + * + * @api private + */ + +Switchery.prototype.bindClick = function() { + var parent = this.element.parentNode.tagName.toLowerCase() + , labelParent = (parent === 'label') ? false : true; + + this.setPosition(labelParent); + this.handleOnchange(this.element.checked); +}; + +/** + * Mark an individual switch as already handled. + * + * @api private + */ + +Switchery.prototype.markAsSwitched = function() { + this.element.setAttribute('data-switchery', true); +}; + +/** + * Check if an individual switch is already handled. + * + * @api private + */ + +Switchery.prototype.markedAsSwitched = function() { + return this.element.getAttribute('data-switchery'); +}; + +/** + * Initialize Switchery. + * + * @api private + */ + +Switchery.prototype.init = function() { + this.hide(); + this.show(); + this.setSize(); + this.setPosition(); + this.markAsSwitched(); + this.handleChange(); + this.handleClick(); +}; + +/** + * See if input is checked. + * + * @returns {Boolean} + * @api public + */ + +Switchery.prototype.isChecked = function() { + return this.element.checked; +}; + +/** + * See if switcher should be disabled. + * + * @returns {Boolean} + * @api public + */ + +Switchery.prototype.isDisabled = function() { + return this.options.disabled || this.element.disabled || this.element.readOnly; +}; + +/** + * Destroy all event handlers attached to the switch. + * + * @api public + */ + +Switchery.prototype.destroy = function() { + this.events.unbind(); +}; + +/** + * Enable disabled switch element. + * + * @api public + */ + +Switchery.prototype.enable = function() { + if (this.options.disabled) this.options.disabled = false; + if (this.element.disabled) this.element.disabled = false; + if (this.element.readOnly) this.element.readOnly = false; + this.switcher.style.opacity = 1; + this.events.bind('click', 'bindClick'); +}; + +/** + * Disable switch element. + * + * @api public + */ + +Switchery.prototype.disable = function() { + if (!this.options.disabled) this.options.disabled = true; + if (!this.element.disabled) this.element.disabled = true; + if (!this.element.readOnly) this.element.readOnly = true; + this.switcher.style.opacity = this.options.disabledOpacity; + this.destroy(); +}; + +}); + +if (typeof exports == "object") { + module.exports = require("switchery"); +} else if (typeof define == "function" && define.amd) { + define("Switchery", [], function(){ return require("switchery"); }); +} else { + (this || window)["Switchery"] = require("switchery"); +} +})() diff --git a/js/libraries/switchery/dist/switchery.min.css b/js/libraries/switchery/dist/switchery.min.css new file mode 100755 index 00000000..128f7266 --- /dev/null +++ b/js/libraries/switchery/dist/switchery.min.css @@ -0,0 +1 @@ +.switchery{background-color:#fff;border:1px solid #dfdfdf;border-radius:20px;cursor:pointer;display:inline-block;height:30px;position:relative;vertical-align:middle;width:50px;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;box-sizing:content-box;background-clip:content-box}.switchery>small{background:#fff;border-radius:100%;box-shadow:0 1px 3px rgba(0,0,0,0.4);height:30px;position:absolute;top:0;width:30px}.switchery-small{border-radius:20px;height:20px;width:33px}.switchery-small>small{height:20px;width:20px}.switchery-large{border-radius:40px;height:40px;width:66px}.switchery-large>small{height:40px;width:40px} \ No newline at end of file diff --git a/js/libraries/switchery/dist/switchery.min.js b/js/libraries/switchery/dist/switchery.min.js new file mode 100755 index 00000000..5187a387 --- /dev/null +++ b/js/libraries/switchery/dist/switchery.min.js @@ -0,0 +1 @@ +(function(){function require(name){var module=require.modules[name];if(!module)throw new Error('failed to require "'+name+'"');if(!("exports"in module)&&typeof module.definition==="function"){module.client=module.component=true;module.definition.call(this,module.exports={},module);delete module.definition}return module.exports}require.loader="component";require.helper={};require.helper.semVerSort=function(a,b){var aArray=a.version.split(".");var bArray=b.version.split(".");for(var i=0;ibLex?1:-1;continue}else if(aInt>bInt){return 1}else{return-1}}return 0};require.latest=function(name,returnPath){function showError(name){throw new Error('failed to find latest module of "'+name+'"')}var versionRegexp=/(.*)~(.*)@v?(\d+\.\d+\.\d+[^\/]*)$/;var remoteRegexp=/(.*)~(.*)/;if(!remoteRegexp.test(name))showError(name);var moduleNames=Object.keys(require.modules);var semVerCandidates=[];var otherCandidates=[];for(var i=0;i0){var module=semVerCandidates.sort(require.helper.semVerSort).pop().name;if(returnPath===true){return module}return require(module)}var module=otherCandidates.sort(function(a,b){return a.name>b.name})[0].name;if(returnPath===true){return module}return require(module)};require.modules={};require.register=function(name,definition){require.modules[name]={definition:definition}};require.define=function(name,exports){require.modules[name]={exports:exports}};require.register("abpetkov~transitionize@0.0.3",function(exports,module){module.exports=Transitionize;function Transitionize(element,props){if(!(this instanceof Transitionize))return new Transitionize(element,props);this.element=element;this.props=props||{};this.init()}Transitionize.prototype.isSafari=function(){return/Safari/.test(navigator.userAgent)&&/Apple Computer/.test(navigator.vendor)};Transitionize.prototype.init=function(){var transitions=[];for(var key in this.props){transitions.push(key+" "+this.props[key])}this.element.style.transition=transitions.join(", ");if(this.isSafari())this.element.style.webkitTransition=transitions.join(", ")}});require.register("ftlabs~fastclick@v0.6.11",function(exports,module){function FastClick(layer){"use strict";var oldOnClick,self=this;this.trackingClick=false;this.trackingClickStart=0;this.targetElement=null;this.touchStartX=0;this.touchStartY=0;this.lastTouchIdentifier=0;this.touchBoundary=10;this.layer=layer;if(!layer||!layer.nodeType){throw new TypeError("Layer must be a document node")}this.onClick=function(){return FastClick.prototype.onClick.apply(self,arguments)};this.onMouse=function(){return FastClick.prototype.onMouse.apply(self,arguments)};this.onTouchStart=function(){return FastClick.prototype.onTouchStart.apply(self,arguments)};this.onTouchMove=function(){return FastClick.prototype.onTouchMove.apply(self,arguments)};this.onTouchEnd=function(){return FastClick.prototype.onTouchEnd.apply(self,arguments)};this.onTouchCancel=function(){return FastClick.prototype.onTouchCancel.apply(self,arguments)};if(FastClick.notNeeded(layer)){return}if(this.deviceIsAndroid){layer.addEventListener("mouseover",this.onMouse,true);layer.addEventListener("mousedown",this.onMouse,true);layer.addEventListener("mouseup",this.onMouse,true)}layer.addEventListener("click",this.onClick,true);layer.addEventListener("touchstart",this.onTouchStart,false);layer.addEventListener("touchmove",this.onTouchMove,false);layer.addEventListener("touchend",this.onTouchEnd,false);layer.addEventListener("touchcancel",this.onTouchCancel,false);if(!Event.prototype.stopImmediatePropagation){layer.removeEventListener=function(type,callback,capture){var rmv=Node.prototype.removeEventListener;if(type==="click"){rmv.call(layer,type,callback.hijacked||callback,capture)}else{rmv.call(layer,type,callback,capture)}};layer.addEventListener=function(type,callback,capture){var adv=Node.prototype.addEventListener;if(type==="click"){adv.call(layer,type,callback.hijacked||(callback.hijacked=function(event){if(!event.propagationStopped){callback(event)}}),capture)}else{adv.call(layer,type,callback,capture)}}}if(typeof layer.onclick==="function"){oldOnClick=layer.onclick;layer.addEventListener("click",function(event){oldOnClick(event)},false);layer.onclick=null}}FastClick.prototype.deviceIsAndroid=navigator.userAgent.indexOf("Android")>0;FastClick.prototype.deviceIsIOS=/iP(ad|hone|od)/.test(navigator.userAgent);FastClick.prototype.deviceIsIOS4=FastClick.prototype.deviceIsIOS&&/OS 4_\d(_\d)?/.test(navigator.userAgent);FastClick.prototype.deviceIsIOSWithBadTarget=FastClick.prototype.deviceIsIOS&&/OS ([6-9]|\d{2})_\d/.test(navigator.userAgent);FastClick.prototype.needsClick=function(target){"use strict";switch(target.nodeName.toLowerCase()){case"button":case"select":case"textarea":if(target.disabled){return true}break;case"input":if(this.deviceIsIOS&&target.type==="file"||target.disabled){return true}break;case"label":case"video":return true}return/\bneedsclick\b/.test(target.className)};FastClick.prototype.needsFocus=function(target){"use strict";switch(target.nodeName.toLowerCase()){case"textarea":return true;case"select":return!this.deviceIsAndroid;case"input":switch(target.type){case"button":case"checkbox":case"file":case"image":case"radio":case"submit":return false}return!target.disabled&&!target.readOnly;default:return/\bneedsfocus\b/.test(target.className)}};FastClick.prototype.sendClick=function(targetElement,event){"use strict";var clickEvent,touch;if(document.activeElement&&document.activeElement!==targetElement){document.activeElement.blur()}touch=event.changedTouches[0];clickEvent=document.createEvent("MouseEvents");clickEvent.initMouseEvent(this.determineEventType(targetElement),true,true,window,1,touch.screenX,touch.screenY,touch.clientX,touch.clientY,false,false,false,false,0,null);clickEvent.forwardedTouchEvent=true;targetElement.dispatchEvent(clickEvent)};FastClick.prototype.determineEventType=function(targetElement){"use strict";if(this.deviceIsAndroid&&targetElement.tagName.toLowerCase()==="select"){return"mousedown"}return"click"};FastClick.prototype.focus=function(targetElement){"use strict";var length;if(this.deviceIsIOS&&targetElement.setSelectionRange&&targetElement.type.indexOf("date")!==0&&targetElement.type!=="time"){length=targetElement.value.length;targetElement.setSelectionRange(length,length)}else{targetElement.focus()}};FastClick.prototype.updateScrollParent=function(targetElement){"use strict";var scrollParent,parentElement;scrollParent=targetElement.fastClickScrollParent;if(!scrollParent||!scrollParent.contains(targetElement)){parentElement=targetElement;do{if(parentElement.scrollHeight>parentElement.offsetHeight){scrollParent=parentElement;targetElement.fastClickScrollParent=parentElement;break}parentElement=parentElement.parentElement}while(parentElement)}if(scrollParent){scrollParent.fastClickLastScrollTop=scrollParent.scrollTop}};FastClick.prototype.getTargetElementFromEventTarget=function(eventTarget){"use strict";if(eventTarget.nodeType===Node.TEXT_NODE){return eventTarget.parentNode}return eventTarget};FastClick.prototype.onTouchStart=function(event){"use strict";var targetElement,touch,selection;if(event.targetTouches.length>1){return true}targetElement=this.getTargetElementFromEventTarget(event.target);touch=event.targetTouches[0];if(this.deviceIsIOS){selection=window.getSelection();if(selection.rangeCount&&!selection.isCollapsed){return true}if(!this.deviceIsIOS4){if(touch.identifier===this.lastTouchIdentifier){event.preventDefault();return false}this.lastTouchIdentifier=touch.identifier;this.updateScrollParent(targetElement)}}this.trackingClick=true;this.trackingClickStart=event.timeStamp;this.targetElement=targetElement;this.touchStartX=touch.pageX;this.touchStartY=touch.pageY;if(event.timeStamp-this.lastClickTime<200){event.preventDefault()}return true};FastClick.prototype.touchHasMoved=function(event){"use strict";var touch=event.changedTouches[0],boundary=this.touchBoundary;if(Math.abs(touch.pageX-this.touchStartX)>boundary||Math.abs(touch.pageY-this.touchStartY)>boundary){return true}return false};FastClick.prototype.onTouchMove=function(event){"use strict";if(!this.trackingClick){return true}if(this.targetElement!==this.getTargetElementFromEventTarget(event.target)||this.touchHasMoved(event)){this.trackingClick=false;this.targetElement=null}return true};FastClick.prototype.findControl=function(labelElement){"use strict";if(labelElement.control!==undefined){return labelElement.control}if(labelElement.htmlFor){return document.getElementById(labelElement.htmlFor)}return labelElement.querySelector("button, input:not([type=hidden]), keygen, meter, output, progress, select, textarea")};FastClick.prototype.onTouchEnd=function(event){"use strict";var forElement,trackingClickStart,targetTagName,scrollParent,touch,targetElement=this.targetElement;if(!this.trackingClick){return true}if(event.timeStamp-this.lastClickTime<200){this.cancelNextClick=true;return true}this.cancelNextClick=false;this.lastClickTime=event.timeStamp;trackingClickStart=this.trackingClickStart;this.trackingClick=false;this.trackingClickStart=0;if(this.deviceIsIOSWithBadTarget){touch=event.changedTouches[0];targetElement=document.elementFromPoint(touch.pageX-window.pageXOffset,touch.pageY-window.pageYOffset)||targetElement;targetElement.fastClickScrollParent=this.targetElement.fastClickScrollParent}targetTagName=targetElement.tagName.toLowerCase();if(targetTagName==="label"){forElement=this.findControl(targetElement);if(forElement){this.focus(targetElement);if(this.deviceIsAndroid){return false}targetElement=forElement}}else if(this.needsFocus(targetElement)){if(event.timeStamp-trackingClickStart>100||this.deviceIsIOS&&window.top!==window&&targetTagName==="input"){this.targetElement=null;return false}this.focus(targetElement);if(!this.deviceIsIOS4||targetTagName!=="select"){this.targetElement=null;event.preventDefault()}return false}if(this.deviceIsIOS&&!this.deviceIsIOS4){scrollParent=targetElement.fastClickScrollParent;if(scrollParent&&scrollParent.fastClickLastScrollTop!==scrollParent.scrollTop){return true}}if(!this.needsClick(targetElement)){event.preventDefault();this.sendClick(targetElement,event)}return false};FastClick.prototype.onTouchCancel=function(){"use strict";this.trackingClick=false;this.targetElement=null};FastClick.prototype.onMouse=function(event){"use strict";if(!this.targetElement){return true}if(event.forwardedTouchEvent){return true}if(!event.cancelable){return true}if(!this.needsClick(this.targetElement)||this.cancelNextClick){if(event.stopImmediatePropagation){event.stopImmediatePropagation()}else{event.propagationStopped=true}event.stopPropagation();event.preventDefault();return false}return true};FastClick.prototype.onClick=function(event){"use strict";var permitted;if(this.trackingClick){this.targetElement=null;this.trackingClick=false;return true}if(event.target.type==="submit"&&event.detail===0){return true}permitted=this.onMouse(event);if(!permitted){this.targetElement=null}return permitted};FastClick.prototype.destroy=function(){"use strict";var layer=this.layer;if(this.deviceIsAndroid){layer.removeEventListener("mouseover",this.onMouse,true);layer.removeEventListener("mousedown",this.onMouse,true);layer.removeEventListener("mouseup",this.onMouse,true)}layer.removeEventListener("click",this.onClick,true);layer.removeEventListener("touchstart",this.onTouchStart,false);layer.removeEventListener("touchmove",this.onTouchMove,false);layer.removeEventListener("touchend",this.onTouchEnd,false);layer.removeEventListener("touchcancel",this.onTouchCancel,false)};FastClick.notNeeded=function(layer){"use strict";var metaViewport;var chromeVersion;if(typeof window.ontouchstart==="undefined"){return true}chromeVersion=+(/Chrome\/([0-9]+)/.exec(navigator.userAgent)||[,0])[1];if(chromeVersion){if(FastClick.prototype.deviceIsAndroid){metaViewport=document.querySelector("meta[name=viewport]");if(metaViewport){if(metaViewport.content.indexOf("user-scalable=no")!==-1){return true}if(chromeVersion>31&&window.innerWidth<=window.screen.width){return true}}}else{return true}}if(layer.style.msTouchAction==="none"){return true}return false};FastClick.attach=function(layer){"use strict";return new FastClick(layer)};if(typeof define!=="undefined"&&define.amd){define(function(){"use strict";return FastClick})}else if(typeof module!=="undefined"&&module.exports){module.exports=FastClick.attach;module.exports.FastClick=FastClick}else{window.FastClick=FastClick}});require.register("component~indexof@0.0.3",function(exports,module){module.exports=function(arr,obj){if(arr.indexOf)return arr.indexOf(obj);for(var i=0;i small { + background: #fff; + border-radius: 100%; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); + height: 30px; + position: absolute; + top: 0; + width: 30px; +} + +/* Switchery sizes. */ + +.switchery-small { + border-radius: 20px; + height: 20px; + width: 33px; +} + +.switchery-small > small { + height: 20px; + width: 20px; +} + +.switchery-large { + border-radius: 40px; + height: 40px; + width: 66px; +} + +.switchery-large > small { + height: 40px; + width: 40px; +} diff --git a/js/libraries/switchery/switchery.js b/js/libraries/switchery/switchery.js new file mode 100755 index 00000000..f68c92f6 --- /dev/null +++ b/js/libraries/switchery/switchery.js @@ -0,0 +1,384 @@ +/** + * Switchery 0.8.1 + * http://abpetkov.github.io/switchery/ + * + * Authored by Alexander Petkov + * https://github.com/abpetkov + * + * Copyright 2013-2015, Alexander Petkov + * License: The MIT License (MIT) + * http://opensource.org/licenses/MIT + * + */ + +/** + * External dependencies. + */ + +var transitionize = require('transitionize') + , fastclick = require('fastclick') + , classes = require('classes') + , events = require('events'); + +/** + * Expose `Switchery`. + */ + +module.exports = Switchery; + +/** + * Set Switchery default values. + * + * @api public + */ + +var defaults = { + color : '#64bd63' + , secondaryColor : '#dfdfdf' + , jackColor : '#fff' + , jackSecondaryColor: null + , className : 'switchery' + , disabled : false + , disabledOpacity : 0.5 + , speed : '0.4s' + , size : 'default' +}; + +/** + * Create Switchery object. + * + * @param {Object} element + * @param {Object} options + * @api public + */ + +function Switchery(element, options) { + if (!(this instanceof Switchery)) return new Switchery(element, options); + + this.element = element; + this.options = options || {}; + + for (var i in defaults) { + if (this.options[i] == null) { + this.options[i] = defaults[i]; + } + } + + if (this.element != null && this.element.type == 'checkbox') this.init(); + if (this.isDisabled() === true) this.disable(); +} + +/** + * Hide the target element. + * + * @api private + */ + +Switchery.prototype.hide = function() { + this.element.style.display = 'none'; +}; + +/** + * Show custom switch after the target element. + * + * @api private + */ + +Switchery.prototype.show = function() { + var switcher = this.create(); + this.insertAfter(this.element, switcher); +}; + +/** + * Create custom switch. + * + * @returns {Object} this.switcher + * @api private + */ + +Switchery.prototype.create = function() { + this.switcher = document.createElement('span'); + this.jack = document.createElement('small'); + this.switcher.appendChild(this.jack); + this.switcher.className = this.options.className; + this.events = events(this.switcher, this); + + return this.switcher; +}; + +/** + * Insert after element after another element. + * + * @param {Object} reference + * @param {Object} target + * @api private + */ + +Switchery.prototype.insertAfter = function(reference, target) { + reference.parentNode.insertBefore(target, reference.nextSibling); +}; + +/** + * Set switch jack proper position. + * + * @param {Boolean} clicked - we need this in order to uncheck the input when the switch is clicked + * @api private + */ + +Switchery.prototype.setPosition = function (clicked) { + var checked = this.isChecked() + , switcher = this.switcher + , jack = this.jack; + + if (clicked && checked) checked = false; + else if (clicked && !checked) checked = true; + + if (checked === true) { + this.element.checked = true; + + if (window.getComputedStyle) jack.style.left = parseInt(window.getComputedStyle(switcher).width) - parseInt(window.getComputedStyle(jack).width) + 'px'; + else jack.style.left = parseInt(switcher.currentStyle['width']) - parseInt(jack.currentStyle['width']) + 'px'; + + if (this.options.color) this.colorize(); + this.setSpeed(); + } else { + jack.style.left = 0; + this.element.checked = false; + this.switcher.style.boxShadow = 'inset 0 0 0 0 ' + this.options.secondaryColor; + this.switcher.style.borderColor = this.options.secondaryColor; + this.switcher.style.backgroundColor = (this.options.secondaryColor !== defaults.secondaryColor) ? this.options.secondaryColor : '#fff'; + this.jack.style.backgroundColor = (this.options.jackSecondaryColor !== this.options.jackColor) ? this.options.jackSecondaryColor : this.options.jackColor; + this.setSpeed(); + } +}; + +/** + * Set speed. + * + * @api private + */ + +Switchery.prototype.setSpeed = function() { + var switcherProp = {} + , jackProp = { + 'background-color': this.options.speed + , 'left': this.options.speed.replace(/[a-z]/, '') / 2 + 's' + }; + + if (this.isChecked()) { + switcherProp = { + 'border': this.options.speed + , 'box-shadow': this.options.speed + , 'background-color': this.options.speed.replace(/[a-z]/, '') * 3 + 's' + }; + } else { + switcherProp = { + 'border': this.options.speed + , 'box-shadow': this.options.speed + }; + } + + transitionize(this.switcher, switcherProp); + transitionize(this.jack, jackProp); +}; + +/** + * Set switch size. + * + * @api private + */ + +Switchery.prototype.setSize = function() { + var small = 'switchery-small' + , normal = 'switchery-default' + , large = 'switchery-large'; + + switch (this.options.size) { + case 'small': + classes(this.switcher).add(small) + break; + case 'large': + classes(this.switcher).add(large) + break; + default: + classes(this.switcher).add(normal) + break; + } +}; + +/** + * Set switch color. + * + * @api private + */ + +Switchery.prototype.colorize = function() { + var switcherHeight = this.switcher.offsetHeight / 2; + + this.switcher.style.backgroundColor = this.options.color; + this.switcher.style.borderColor = this.options.color; + this.switcher.style.boxShadow = 'inset 0 0 0 ' + switcherHeight + 'px ' + this.options.color; + this.jack.style.backgroundColor = this.options.jackColor; +}; + +/** + * Handle the onchange event. + * + * @param {Boolean} state + * @api private + */ + +Switchery.prototype.handleOnchange = function(state) { + if (document.dispatchEvent) { + var event = document.createEvent('HTMLEvents'); + event.initEvent('change', true, true); + this.element.dispatchEvent(event); + } else { + this.element.fireEvent('onchange'); + } +}; + +/** + * Handle the native input element state change. + * A `change` event must be fired in order to detect the change. + * + * @api private + */ + +Switchery.prototype.handleChange = function() { + var self = this + , el = this.element; + + if (el.addEventListener) { + el.addEventListener('change', function() { + self.setPosition(); + }); + } else { + el.attachEvent('onchange', function() { + self.setPosition(); + }); + } +}; + +/** + * Handle the switch click event. + * + * @api private + */ + +Switchery.prototype.handleClick = function() { + var switcher = this.switcher; + + fastclick(switcher); + this.events.bind('click', 'bindClick'); +}; + +/** + * Attach all methods that need to happen on switcher click. + * + * @api private + */ + +Switchery.prototype.bindClick = function() { + var parent = this.element.parentNode.tagName.toLowerCase() + , labelParent = (parent === 'label') ? false : true; + + this.setPosition(labelParent); + this.handleOnchange(this.element.checked); +}; + +/** + * Mark an individual switch as already handled. + * + * @api private + */ + +Switchery.prototype.markAsSwitched = function() { + this.element.setAttribute('data-switchery', true); +}; + +/** + * Check if an individual switch is already handled. + * + * @api private + */ + +Switchery.prototype.markedAsSwitched = function() { + return this.element.getAttribute('data-switchery'); +}; + +/** + * Initialize Switchery. + * + * @api private + */ + +Switchery.prototype.init = function() { + this.hide(); + this.show(); + this.setSize(); + this.setPosition(); + this.markAsSwitched(); + this.handleChange(); + this.handleClick(); +}; + +/** + * See if input is checked. + * + * @returns {Boolean} + * @api public + */ + +Switchery.prototype.isChecked = function() { + return this.element.checked; +}; + +/** + * See if switcher should be disabled. + * + * @returns {Boolean} + * @api public + */ + +Switchery.prototype.isDisabled = function() { + return this.options.disabled || this.element.disabled || this.element.readOnly; +}; + +/** + * Destroy all event handlers attached to the switch. + * + * @api public + */ + +Switchery.prototype.destroy = function() { + this.events.unbind(); +}; + +/** + * Enable disabled switch element. + * + * @api public + */ + +Switchery.prototype.enable = function() { + if (this.options.disabled) this.options.disabled = false; + if (this.element.disabled) this.element.disabled = false; + if (this.element.readOnly) this.element.readOnly = false; + this.switcher.style.opacity = 1; + this.events.bind('click', 'bindClick'); +}; + +/** + * Disable switch element. + * + * @api public + */ + +Switchery.prototype.disable = function() { + if (!this.options.disabled) this.options.disabled = true; + if (!this.element.disabled) this.element.disabled = true; + if (!this.element.readOnly) this.element.readOnly = true; + this.switcher.style.opacity = this.options.disabledOpacity; + this.destroy(); +}; diff --git a/main.css b/main.css index ca1a9bff..c6889b4f 100755 --- a/main.css +++ b/main.css @@ -12,7 +12,9 @@ body { font-family: 'Segoe UI', Tahoma, sans-serif; font-size: 12px; color: #303030; - background-color: #dfddd0; + background-color:#3f4140; + margin:0px; + padding:0px; } a { color: #303030; @@ -39,43 +41,31 @@ input[type="number"]::-webkit-inner-spin-button { height: calc(100% - 5px); } -#content-watermark { - position: absolute; - bottom: 40px; - left: 0; - right: 0; - z-index: -1; - overflow: hidden; - background-image: url("images/light-wide-1.svg"); - background-repeat: no-repeat; - background-position: 50% 0%; - background-size: 600px; - height: 174px; - opacity: 0.25; -} - -#watermark { - position: absolute; - top: 30px; - height: 67px; - right: 0; - z-index: -1; - overflow: hidden; - background-image: url("images/light-wide-1.svg"); +#logo { + position: relative; + float:left; + width: 260px; + height:80px; + z-index: 0; + background-image: url("images/light-wide-2.svg"); background-repeat: no-repeat; width: 340px; - background-position: 0px 0px; - background-size: 85%; + background-position:left center; + background-size: contain; + margin-left:15px; + margin-top:15px; } -#port-picker { +#port-picker { /* */ float: left; height: 105px; /* was 20px */ - margin-bottom: 5px; + margin-top: 20px; + margin-left: 20px; + width:190px; } #port-picker li { float: left; -} +} /* #port-picker select { height: 20px; line-height: 20px; @@ -134,6 +124,8 @@ input[type="number"]::-webkit-inner-spin-button { float: left; margin: 3px 0 0 5px; } +*/ + #sensor-status { float: right; @@ -240,19 +232,31 @@ input[type="number"]::-webkit-inner-spin-button { #log a:hover { text-decoration: underline; } + +.tab_container { + float:left; + height:100%; + width:200px; + border-right: 4px solid #59aa29; + } + + #tabs { position: relative; float: left; width:100%; - padding-top: 5px; - padding-bottom: 5px; - margin-top: 0px; + padding-top: 0px; + padding-bottom: 0px; + margin-top:0px; z-index: 10; font-weight: regular; + font-size:13px; } #tabs ul { - overflow: hidden; /* Cause the height to expand to contain its floated contents */ + margin-top:0px; + overflow: hidden; + /* Cause the height to expand to contain its floated contents */ } #tabs ul.mode-connected { @@ -262,31 +266,70 @@ input[type="number"]::-webkit-inner-spin-button { #tabs li { width:100%; float: left; - margin-right: 4px; - border: 1px solid #848484; - border-bottom: 0; + border-bottom: 1px solid rgba(0,0,0,0.30); + border-top: 1px solid #404040; + height:32px; + } -#tabs li a { - width:100%; - display: block; - height: 15px; - padding: 5px 4px; - background-color: #d0d0d0; +#tabs li:first-child { + border-top: 0px; + } + +#tabs li:last-child { + border-bottom: 0px; + +} + + +#tabs li a { + padding-left:40px; + padding-top:7px; + background-color: transparent; + color:#999999; + width:100%; + height:24px; + display:block; + text-shadow:0px 1px rgba(0, 0, 0, 0.25); + + background-image:url(images/icons/cf_icon_info_green.svg); + background-repeat: no-repeat; + background-size:18px; + background-position:17px 6px; + text-shadow:0px 1px rgba(0, 0, 0, 0.25); + + +} + + + + + + + + #tabs li a:hover { text-decoration: none; - background-color: #acacac; + background-color: rgba(0,0,0,0.20); } #tabs li.active { + color: #fff; + + } #tabs li.active a { - height: 16px; - background-color: white; + background-color: #59aa29; + color: #fff; + background-image:url(images/icons/cf_icon_info_grey.svg); + + } + + #tabs li.active a:hover { cursor: default; - background-color: white; + background-color:#59aa29; } #content { margin-top: 0px; /* 31 */ diff --git a/main.html b/main.html index e4a1ba08..66da9571 100755 --- a/main.html +++ b/main.html @@ -14,7 +14,8 @@ - + + @@ -26,10 +27,14 @@ - + + + + + @@ -77,20 +82,26 @@ + + +
+
-
    -
  • - -
  • -
  • - + + + + +
+ + + +
+ +
+
+ - - + + +
@@ -130,7 +143,7 @@
  • -
    +
@@ -161,7 +174,7 @@
-
+
  • diff --git a/styles/cf_redesign.css b/styles/cf_redesign.css new file mode 100644 index 00000000..09856e62 --- /dev/null +++ b/styles/cf_redesign.css @@ -0,0 +1,456 @@ +/* Change here the content of the documentation button in all tabs!!! */ + +.cf_doc_version_bt a:before { + content:"Documentation 1.10"; + } + +/* END */ + + + body { + padding:0px; + font-family: 'open_sansregular', Arial; + font-size:11px; + line-height:15px; + min-width:800px; + float:left; + background-color:#fff; + margin:0px; + } + +a { + transition: all ease 0.5s; + text-decoration:none; + color:#59aa29; + font-family: 'open_sansbold', Arial; + } + +a:hover { + transition: all ease 0.2s; + } + + +.cf_doc_version_bt a { + padding:1px 9px 1px 9px; + margin-top: -25px; + background-color:#59aa29; + border-radius:3px; + border: 1px solid #4c8829; + color:#fff; + float:right; + font-family: 'open_sansbold', Arial; + font-size:10px; + line-height:17px; + text-shadow:0px 1px rgba(0, 0, 0, 0.25); + text-transform:uppercase; + letter-spacing: 0.03em; + display:block; + + } + +.cf_doc_version_bt a:hover { + background-color:#6ac435; + } + + + +/* Border of the Tab */ + +.container_border { + border-right:solid 1px #8C8C8C; + border-right-style:inset; + float:left; + padding:15px; + padding-left:20px; + + } + + + + /* Tab Title */ +.tab_title { + float:left; + width:100%; + border-bottom:1px solid #59aa29; + font-size:20px; + line-height:24px; + height:30px; + font-family: 'open_sanslight', Arial; + margin-bottom:7px; + } + +/* Note */ +.note { + float:left; + background-color:#fff7cd; + border:1px solid #ffe55f; + margin-bottom:7px; + margin-top:3px; + width:100%; + border-radius: 3px; + font-size:11px; + } + +.note_spacer { + padding:5px 7px 5px 7px; + } + + +/* Colums START> */ + +.column { + min-height:20px; + margin-bottom:10px; + + } + + +.full { + float:left; + width:100%; + } + +.half { + float:left; + width:50%; + } + + + +.third_left { + float:left; + width:33%; + } + +.third_center { + display: inline-block; + width:34%; + } + +.third_right { + float:right; + width:33%; + } + + +.fourth { + float:left; + width:25%; + } + + +.threefourth_right { + float:right; + width:75%; + } + +.threefourth_left { + float:left; + width:75%; + } + +.twothird { + float:left; + width:67%; + } + +/* Columns END> */ + + +/* Spacers */ + +.spacer { + padding-left:7px; + padding-right:7px; + + } + + +.spacer_left { + padding-left:7px; + + } + +.spacer_right { + padding-right:7px; + + } + +/* Standard GUI BOX */ +.gui_box { + border: 1px solid #e4e4e4; + border-radius:5px; + background-color:#FFFFFF; + float:left; + width:100%; + } + +.grey { + background-color:#f5f5f5; + + } + +.gui_box_titlebar { + background-color:#e4e4e4; + border-radius:3px 3px 0px 0px; + font-size:14px; + width:100%; + height:25px; + padding-bottom:0px; + float:left; + margin-bottom:7px; + } + +.spacer_box { + padding:10px; + margin-bottom:3px; + } + +.spacer_box_title { + padding-left:10px; + padding-right:10px; + padding-top:4px; + margin-bottom:0px; + + } + + +/* Fixed area at the Bottom */ + + +.fixed_band { + height: 50px; + position:fixed; + background-color:#e4e4e4; + width:100%; + margin-left:-20px; + box-shadow:rgba(0,0,0,0.20) 0 -3px 8px ; + bottom: 0px; + z-index:1000; + } + + +.save_btn a { + padding:3px 13px 5px 13px; + margin-top: 10px; + margin-right:15px; + background-color:#59aa29; + border-radius:3px; + border: 1px solid #4c8829; + color:#fff; + float:right; + font-family: 'open_sansbold', Arial; + font-size:12px; + line-height:20px; + text-shadow:0px 1px rgba(0, 0, 0, 0.25); + display:block; + cursor:pointer; + } + +.save_btn a:hover { + background-color:#6ac435; + } + + +/* DIfferent buttons */ + + + +.default_btn { + width:100%; + position:relative; + margin-bottom:7px; + margin-top:0px; + float:left; + + } + + +.default_btn a { + padding:5px 0px 5px 0px; + text-align:center; + background-color:#fff; + border-radius:5px; + border: 1px solid #59aa29; + color:#59aa29; + font-family: 'open_sanssemibold', Arial; + font-size:12px; + line-height:13px; + display:block; + } + +.default_btn a:hover { + background-color:#6ac435; + color:#fff; + text-shadow:0px 1px rgba(0, 0, 0, 0.25); + } + +.default_btn a:active { + background-color:#4d9324; + transition: all ease 0.0s; + box-shadow:inset 0px 1px 5px rgba(0, 0, 0, 0.35); + } + +.small { + width:auto; + position:relative; + margin-bottom:7px; + margin-top:0px; + margin-right:5px; + float:left; + + } + + .small a { + padding:3px 4px 4px 4px; + text-align:center; + text-shadow:0px 1px rgba(0, 0, 0, 0.25); + background-color:#acacac; + border-radius:3px; + border: 1px solid #949494; + color:#fff; + font-family: 'open_sanssemibold', Arial; + font-size:11px; + line-height:11px; + display:block; + } + +.small a:hover { + background-color:#6ac435; + color:#fff; + text-shadow:0px 1px rgba(0, 0, 0, 0.25); + border: 1px solid #59aa29; + + } + +.small a:active { + background-color:#878787; + transition: all ease 0.0s; + box-shadow:inset 0px 1px 5px rgba(0, 0, 0, 0.35); + } + + + .green a { + background-color:#59aa29; + text-shadow:0px 1px rgba(0, 0, 0, 0.25); + color:#fff; + border: 1px solid #59aa29; + + } + + .green a:hover { + background-color:#6ac435; + border: 1px solid #4d9324; + text-shadow:0px 1px rgba(0, 0, 0, 0.25); + color:#fff; + } + + + + +/* Input Styling */ + + + +.rxmode { + float:left; + margin-top:0px; + background-color:#f7f7f7; + font-size:11px; + line-height:20px; + border-radius:3px; + border: solid 1px #cdcccd; + outline:0px; + padding:3px; + width:100%; + margin-bottom:10px; + margin-top:7px; + box-shadow:inset 0px 1px 3px rgba(0, 0, 0, 0.15); +} + + + +/* Help Icon */ + + +.helpicon { + float:right; + margin-top:-14px; + margin-right:7px; + display:block; + height:14px; + width:14px; + opacity: 0.2; + background-image:url(rescources/icons/cf_icon_info_grey.svg); + background-size:contain; + background-position:center; + +} + + + + +.helpicon:hover { + background-image:url(rescources/icons/cf_icon_info_green.svg); + opacity: 1.0;} + +/* Table styling */ + + +.cf_table { + margin-bottom:5px; + float:left; + margin-top:-5px; + font-size:11px; + } + +.cf_table td { + border:0px; + border-bottom: solid 1px #ccc; + padding-top:4px; + padding-bottom:4px; + border-style: dotted; + +} + +.noboarder td{ + border:none; + +} + +.cf_table td:last-child { + text-align:right; +} + +.gps_false { + background-color:#FF0004; + padding:1px 7px 2px 7px; + border-radius:3px; + color:#FFFFFF; + font-size:11px; + margin-left:3px; +} + +.gps_true { + background-color:#59aa29; + padding:1px 7px 2px 7px; + border-radius:3px; + color:#FFFFFF; + font-size:11px; + margin-left:3px; +} + +/* END */ + +.mixer_canvas { + height:270px; +float:left; + margin-bottom:10px; + margin-right:0px; + } + +select { + float:left; + width:100%; + margin-bottom:10px; + } \ No newline at end of file diff --git a/styles/dropdown-lists/LICENSE b/styles/dropdown-lists/LICENSE new file mode 100644 index 00000000..cade13ff --- /dev/null +++ b/styles/dropdown-lists/LICENSE @@ -0,0 +1,20 @@ +Copyright (c) 2012-2013 Thibaut Courouble + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/styles/dropdown-lists/README.md b/styles/dropdown-lists/README.md new file mode 100644 index 00000000..1f5df46e --- /dev/null +++ b/styles/dropdown-lists/README.md @@ -0,0 +1,41 @@ +# Dark and Light Dropdown Lists — CSS Code Snippet + +**Demo**: [cssflow.com/snippets/dark-and-light-dropdown-lists/demo](http://www.cssflow.com/snippets/dark-and-light-dropdown-lists/demo) + +Download the latest version of this snippet [here](http://www.cssflow.com/snippets/dark-and-light-dropdown-lists.zip). + +[![Preview](http://cdn.cssflow.com/snippets/dark-and-light-dropdown-lists/preview-580.png)](http://www.cssflow.com/snippets/dark-and-light-dropdown-lists) + +This snippet is implemented with [Sass](https://github.com/nex3/sass). + +To compile: + +`sass --update scss:css` + +To compile and watch: + +`sass --watch scss:css` + +## Browser Compatibility + +Firefox 4+, Safari 4+, Chrome 14+, Opera 10+, Internet Explorer 8+. + +## Credits + +Coded by [Thibaut Courouble](http://thibaut.me). + +Inspired by [Hemn Chawroka's PSD](http://365psd.com/day/3-47/). + +For more snippets, visit [CSSFlow.com](http://www.cssflow.com) or follow [@CSSFlow](https://twitter.com/CSSFlow). + +## License + +Copyright (c) 2012-2013 Thibaut Courouble + +Licensed under the MIT License + +## More CSS3 + +Check out my [UI kits built entirely with CSS](http://www.cssflow.com/ui-kits): + +[![Preview](http://cdn.cssflow.com/kits/all_kits_preview_850.png)](http://www.cssflow.com/ui-kits) diff --git a/styles/dropdown-lists/css/style_lists.bak.css b/styles/dropdown-lists/css/style_lists.bak.css new file mode 100644 index 00000000..af316a91 --- /dev/null +++ b/styles/dropdown-lists/css/style_lists.bak.css @@ -0,0 +1,134 @@ + +/* + * Copyright (c) 2012-2013 Thibaut Courouble + * http://www.cssflow.com + * + * Licensed under the MIT License: + * http://www.opensource.org/licenses/mit-license.php + */ + + + +.container > .dropdown { + margin: 0 20px; + vertical-align: top; +} + +.dropdown { + display: inline-block; + position: relative; + overflow: hidden; + height: 25px; + width: 150px; + width:100%; + margin-bottom:10px; + background: #fff; + border: 1px solid; + border-color: #ccc #ccc #ccc; + border-radius: 3px; + background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.06)); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); +} +.dropdown:before, .dropdown:after { + content: ''; + position: absolute; + z-index: 2; + top: 9px; + right: 10px; + width: 0; + height: 0; + border: 4px dashed; + border-color: #888 transparent; + pointer-events: none; +} +.dropdown:before { + border-bottom-style: solid; + border-top: none; +} +.dropdown:after { + margin-top: 7px; + border-top-style: solid; + border-bottom: none; +} + +.dropdown-select { + position: relative; + width: 130%; + margin: 0; + padding: 6px 8px 6px 10px; + height: 28px; + line-height: 14px; + font-size: 12px; + color: #62717a; + text-shadow: 0 1px white; + /* Fallback for IE 8 */ + background: #f2f2f2; + /* "transparent" doesn't work with Opera */ + background: rgba(0, 0, 0, 0) !important; + border: 0; + border-radius: 0; + -webkit-appearance: none; +} +.dropdown-select:focus { + z-index: 3; + width: 100%; + color: #394349; + outline: 2px solid #49aff2; + outline: 2px solid -webkit-focus-ring-color; + outline-offset: -2px; +} +.dropdown-select > option { + margin: 3px; + padding: 6px 8px; + text-shadow: none; + background: #f2f2f2; + border-radius: 3px; + cursor: pointer; +} + +/* Fix for IE 8 putting the arrows behind the select element. */ +.lt-ie9 .dropdown { + z-index: 1; +} +.lt-ie9 .dropdown-select { + z-index: -1; +} +.lt-ie9 .dropdown-select:focus { + z-index: 3; +} + +/* Dirty fix for Firefox adding padding where it shouldn't. */ +@-moz-document url-prefix() { + .dropdown-select { + padding-left: 6px; + } +} + +.dropdown-dark { + background: #636363; + border-color: #111 #0a0a0a black; + background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2)); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2); + background-image: url(trenner.gif); background-repeat:no-repeat; background-position:right 0px ; + + +} +.dropdown-dark:before { + border-bottom-color: #aaa; +} +.dropdown-dark:after { + border-top-color: #aaa; +} +.dropdown-dark .dropdown-select { + color: #fff; + text-shadow: 0 1px black; + /* Fallback for IE 8 */ + background: #444; +} +.dropdown-dark .dropdown-select:focus { + color: #ccc; +} +.dropdown-dark .dropdown-select > option { + background: #444; + text-shadow: 0 1px rgba(0, 0, 0, 0.4); +} diff --git a/styles/dropdown-lists/css/style_lists.css b/styles/dropdown-lists/css/style_lists.css new file mode 100644 index 00000000..b6a86a2b --- /dev/null +++ b/styles/dropdown-lists/css/style_lists.css @@ -0,0 +1,156 @@ + +/* + * Copyright (c) 2012-2013 Thibaut Courouble + * http://www.cssflow.com + * + * Licensed under the MIT License: + * http://www.opensource.org/licenses/mit-license.php + */ + + + + +.dropdown { + + display: inline-block; + position: relative; + overflow: hidden; + height: 20px; + background: #fff; + background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06)); + background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06)); + background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06)); + background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.06)); + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); + width:99%; + margin-bottom:7px; + border: 1px solid; + border-color: #ccc #ccc #ccc; + border-radius: 3px; + + + + + +} +.dropdown:before, .dropdown:after { + content: ''; + position: absolute; + z-index: 2; + top: 7px; + right: 7px; + width: 0; + height: 0; + border: 4px dashed; + border-color: #888 transparent; + pointer-events: none; +} +.dropdown:before { + border-bottom-style: solid; + border-top: none; + margin-top: -2px; + +} +.dropdown:after { + margin-top: 5px; + border-top-style: solid; + border-bottom: none; +} + +.dropdown-select { + position: relative; + overflow:visible; + width: 100%; + margin-top:0px; + padding-bottom:0px; + padding: 1px 8px 6px 5px; + height: 23px; + line-height: 20px; + font-size: 12px; + color: #62717a; + text-shadow: 0 1px white; + /* Fallback for IE 8 */ + background: #f2f2f2; + /* "transparent" doesn't work with Opera */ + background: rgba(0, 0, 0, 0) !important; + border: 0; + border-radius: 0; + -webkit-appearance: none; + + +} +.dropdown-select:focus { + z-index: 3; + width: 90%; + color: #4fa619; + outline: 0px solid #49aff2; + outline: 0px solid -webkit-focus-ring-color; + outline-offset: 5px; + + height:25px; +} +.dropdown-select > option { + margin: 3px; + padding: 6px 8px; + text-shadow: none; + background: #f2f2f2; + border-radius: 3px; + cursor: pointer; + +} + +/* Fix for IE 8 putting the arrows behind the select element. */ +.lt-ie9 .dropdown { + z-index: 1; +} +.lt-ie9 .dropdown-select { + z-index: -1; +} +.lt-ie9 .dropdown-select:focus { + z-index: 3; +} + +/* Dirty fix for Firefox adding padding where it shouldn't. */ +@-moz-document url-prefix() { + .dropdown-select { + padding-left: 6px; + } +} + +.dropdown-dark { + background: #444; + border-color: #111 #0a0a0a black; + background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4)); + background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4)); + background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4)); + background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4)); + -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2); + color:#a6a6a6; + text-shadow:0px 1px rgba(0, 0, 0, 0.25); + + + + +} +.dropdown-dark:before { + border-bottom-color: #aaa; +} +.dropdown-dark:after { + border-top-color: #aaa; +} +.dropdown-dark .dropdown-select { + color: #a6a6a6; + text-shadow: 0 1px black; + /* Fallback for IE 8 */ + background: #444; + +} +.dropdown-dark .dropdown-select:focus { + color: #fff; +} +.dropdown-dark .dropdown-select > option { + background: #56ab1a; + text-shadow: 0 1px rgba(0, 0, 0, 0.4); +} diff --git a/styles/dropdown-lists/index.html b/styles/dropdown-lists/index.html new file mode 100644 index 00000000..f4ef7857 --- /dev/null +++ b/styles/dropdown-lists/index.html @@ -0,0 +1,44 @@ + + + + + + + + + Dark and Light Dropdown Lists + + + + +
    + + +
    + +
    + +

    + © 2012–2013 Thibaut Courouble - + MIT License
    +

    +
    + + diff --git a/styles/dropdown-lists/preview.png b/styles/dropdown-lists/preview.png new file mode 100644 index 00000000..30c70298 Binary files /dev/null and b/styles/dropdown-lists/preview.png differ diff --git a/styles/dropdown-lists/scss/style.scss b/styles/dropdown-lists/scss/style.scss new file mode 100644 index 00000000..596533d8 --- /dev/null +++ b/styles/dropdown-lists/scss/style.scss @@ -0,0 +1,137 @@ +@import '../../shared/mixins', + '../../shared/reset', + '../../shared/about-dark'; + +/* + * Copyright (c) 2012-2013 Thibaut Courouble + * http://www.cssflow.com + * + * Licensed under the MIT License: + * http://www.opensource.org/licenses/mit-license.php + */ + +body { + font: 13px/20px 'Lucida Grande', Tahoma, Verdana, sans-serif; + color: #404040; + background: #93cedf; +} + +.container { + margin: 50px auto; + width: 500px; + text-align: center; + + > .dropdown { + margin: 0 20px; + vertical-align: top; + } +} + +.dropdown { + display: inline-block; + position: relative; + overflow: hidden; + height: 28px; + width: 150px; + background: #f2f2f2; + border: 1px solid; + border-color: white #f7f7f7 #f5f5f5; + border-radius: 3px; + @include linear-gradient(top, transparent, rgba(black, .06)); + @include box-shadow(0 1px 1px rgba(black, .08)); + + &:before, &:after { + content: ''; + position: absolute; + z-index: 2; + top: 9px; + right: 10px; + width: 0; + height: 0; + border: 4px dashed; + border-color: #888 transparent; + pointer-events: none; + } + + &:before { + border-bottom-style: solid; + border-top: none; + } + + &:after { + margin-top: 7px; + border-top-style: solid; + border-bottom: none; + } +} + +.dropdown-select { + position: relative; + width: 130%; + margin: 0; + padding: 6px 8px 6px 10px; + height: 28px; + line-height: 14px; + font-size: 12px; + color: #62717a; + text-shadow: 0 1px white; + /* Fallback for IE 8 */ + background: #f2f2f2; + /* "transparent" doesn't work with Opera */ + background: rgba(black, 0) !important; + border: 0; + border-radius: 0; + -webkit-appearance: none; + + &:focus { + z-index: 3; + width: 100%; + color: #394349; + outline: 2px solid #49aff2; + outline: 2px solid -webkit-focus-ring-color; + outline-offset: -2px; + } + + > option { + margin: 3px; + padding: 6px 8px; + text-shadow: none; + background: #f2f2f2; + border-radius: 3px; + cursor: pointer; + } +} + +/* Fix for IE 8 putting the arrows behind the select element. */ +.lt-ie9 { + .dropdown { z-index: 1; } + .dropdown-select { z-index: -1; } + .dropdown-select:focus { z-index: 3; } +} + +/* Dirty fix for Firefox adding padding where it shouldn't. */ +@-moz-document url-prefix() { .dropdown-select { padding-left: 6px; } } + +.dropdown-dark { + background: #444; + border-color: #111 #0a0a0a black; + @include linear-gradient(top, transparent, rgba(black, .4)); + @include box-shadow(inset 0 1px rgba(white, .1), 0 1px 1px rgba(black, .2)); + + &:before { border-bottom-color: #aaa; } + &:after { border-top-color: #aaa; } + + .dropdown-select { + color: #aaa; + text-shadow: 0 1px black; + /* Fallback for IE 8 */ + background: #444; + + &:focus { color: #ccc; } + + > option { + background: #444; + text-shadow: 0 1px rgba(black, .4); + } + } +} diff --git a/styles/opensans_webfontkit/fonts.css b/styles/opensans_webfontkit/fonts.css new file mode 100644 index 00000000..9cfc70c7 --- /dev/null +++ b/styles/opensans_webfontkit/fonts.css @@ -0,0 +1,120 @@ +/* Definition of Fonts */ + +@font-face { + font-family: 'open_sanssemibold'; + src: url('opensans-semibold-webfont.eot'); + src: url('opensans-semibold-webfont.eot?#iefix') format('embedded-opentype'), + url('opensans-semibold-webfont.woff2') format('woff2'), + url('opensans-semibold-webfont.woff') format('woff'), + url('opensans-semibold-webfont.ttf') format('truetype'), + url('opensans-semibold-webfont.svg#open_sanssemibold') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'open_sansregular'; + src: url('opensans-regular-webfont.eot'); + src: url('opensans-regular-webfont.eot?#iefix') format('embedded-opentype'), + url('opensans-regular-webfont.woff2') format('woff2'), + url('opensans-regular-webfont.woff') format('woff'), + url('opensans-regular-webfont.ttf') format('truetype'), + url('opensans-regular-webfont.svg#open_sansregular') format('svg'); + font-weight: normal; + font-style: normal; +} + + +@font-face { + font-family: 'open_sanslight'; + src: url('opensans-light-webfont.eot'); + src: url('opensans-light-webfont.eot?#iefix') format('embedded-opentype'), + url('opensans-light-webfont.woff2') format('woff2'), + url('opensans-light-webfont.woff') format('woff'), + url('opensans-light-webfont.ttf') format('truetype'), + url('opensans-light-webfont.svg#open_sanslight') format('svg'); + font-weight: normal; + font-style: normal; +} + + +@font-face { + font-family: 'open_sansitalic'; + src: url('opensans-italic-webfont.eot'); + src: url('opensans-italic-webfont.eot?#iefix') format('embedded-opentype'), + url('opensans-italic-webfont.woff2') format('woff2'), + url('opensans-italic-webfont.woff') format('woff'), + url('opensans-italic-webfont.ttf') format('truetype'), + url('opensans-italic-webfont.svg#open_sansitalic') format('svg'); + font-weight: normal; + font-style: normal; +} + + +@font-face { + font-family: 'open_sansbold_italic'; + src: url('opensans-bolditalic-webfont.eot'); + src: url('opensans-bolditalic-webfont.eot?#iefix') format('embedded-opentype'), + url('opensans-bolditalic-webfont.woff2') format('woff2'), + url('opensans-bolditalic-webfont.woff') format('woff'), + url('opensans-bolditalic-webfont.ttf') format('truetype'), + url('opensans-bolditalic-webfont.svg#open_sansbold_italic') format('svg'); + font-weight: normal; + font-style: normal; +} + + +@font-face { + font-family: 'open_sansbold'; + src: url('opensans-bold-webfont.eot'); + src: url('opensans-bold-webfont.eot?#iefix') format('embedded-opentype'), + url('opensans-bold-webfont.woff2') format('woff2'), + url('opensans-bold-webfont.woff') format('woff'), + url('opensans-bold-webfont.ttf') format('truetype'), + url('opensans-bold-webfont.svg#open_sansbold') format('svg'); + font-weight: normal; + font-style: normal; +} + + +/* Fonts shouldn't be transformed by browser. +Using specific fonts for bold, italic and bold_italic instead.*/ + +i { + font-family: 'open_sansitalic'; + font-weight: normal; + font-style: normal; +} + +em { + font-family: 'open_sansitalic'; + font-style:normal; + font-weight: normal; +} + + +em strong { + font-family: 'open_sansbold_italic'; + font-style:normal; + font-weight: normal; +} + + strong em { + font-family: 'open_sansbold_italic'; + font-style:normal; + font-weight: normal; +} + + +strong { + font-family: 'open_sansbold'; + font-weight: normal; + font-style: normal; +} + + +b { + font-family: 'open_sansbold'; + font-weight: normal; + font-style: normal; +} \ No newline at end of file diff --git a/styles/opensans_webfontkit/generator_config.txt b/styles/opensans_webfontkit/generator_config.txt new file mode 100644 index 00000000..c71db934 --- /dev/null +++ b/styles/opensans_webfontkit/generator_config.txt @@ -0,0 +1,5 @@ +# Font Squirrel Font-face Generator Configuration File +# Upload this file to the generator to recreate the settings +# you used to create these fonts. + +{"mode":"optimal","formats":["ttf","woff","woff2","eotz"],"tt_instructor":"default","fix_vertical_metrics":"Y","fix_gasp":"xy","add_spaces":"Y","add_hyphens":"Y","fallback":"none","fallback_custom":"100","options_subset":"basic","subset_custom":"","subset_custom_range":"","subset_ot_features_list":"","css_stylesheet":"stylesheet.css","filename_suffix":"-webfont","emsquare":"2048","spacing_adjustment":"0"} \ No newline at end of file diff --git a/styles/opensans_webfontkit/opensans-bold-demo.html b/styles/opensans_webfontkit/opensans-bold-demo.html new file mode 100644 index 00000000..b923c326 --- /dev/null +++ b/styles/opensans_webfontkit/opensans-bold-demo.html @@ -0,0 +1,614 @@ + + + + + + + + + + + + + Open Sans Bold Specimen + + + + + + +
    + + + +
    + + +
    + +
    +
    +
    AaBb
    +
    +
    + +
    +
    A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
    +
    +
    +
    + + + + + + + + + + + + + + + + +
    10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    + +
    + +
    + + + +
    + + +
    +
    ◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body
    body
    body
    body
    +
    + bodyOpen Sans Bold +
    +
    + bodyArial +
    +
    + bodyVerdana +
    +
    + bodyGeorgia +
    + + + +
    + + +
    + +
    +

    10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    +
    +
    +

    14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    + +
    + +
    + +
    +
    +

    20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    +

    24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    + +
    + +
    + +
    +
    +

    30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    + +
    + + + +
    +
    +

    10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    + +
    +
    +

    14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    + +
    +
    +

    20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    +

    24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    + +
    + +
    + +
    +
    +

    30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +

    Lorem Ipsum Dolor

    +

    Etiam porta sem malesuada magna mollis euismod

    + + +
    +
    +
    +
    +

    Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

    + + +

    Pellentesque ornare sem

    + +

    Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

    + +

    Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

    + +

    Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

    + +

    Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

    + +

    Cras mattis consectetur

    + +

    Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

    + +

    Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

    +
    + + +
    + +
    + + + + + + +
    +
    +
    + +

    Language Support

    +

    The subset of Open Sans Bold in this kit supports the following languages:
    + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish

    +

    Glyph Chart

    +

    The subset of Open Sans Bold in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

    +
    + +

    &#13;

    +

    &#32;

    +

    &#33;

    !
    +

    &#34;

    "
    +

    &#35;

    #
    +

    &#36;

    $
    +

    &#37;

    %
    +

    &#38;

    &
    +

    &#39;

    '
    +

    &#40;

    (
    +

    &#41;

    )
    +

    &#42;

    *
    +

    &#43;

    +
    +

    &#44;

    ,
    +

    &#45;

    -
    +

    &#46;

    .
    +

    &#47;

    /
    +

    &#48;

    0
    +

    &#49;

    1
    +

    &#50;

    2
    +

    &#51;

    3
    +

    &#52;

    4
    +

    &#53;

    5
    +

    &#54;

    6
    +

    &#55;

    7
    +

    &#56;

    8
    +

    &#57;

    9
    +

    &#58;

    :
    +

    &#59;

    ;
    +

    &#60;

    <
    +

    &#61;

    =
    +

    &#62;

    >
    +

    &#63;

    ?
    +

    &#64;

    @
    +

    &#65;

    A
    +

    &#66;

    B
    +

    &#67;

    C
    +

    &#68;

    D
    +

    &#69;

    E
    +

    &#70;

    F
    +

    &#71;

    G
    +

    &#72;

    H
    +

    &#73;

    I
    +

    &#74;

    J
    +

    &#75;

    K
    +

    &#76;

    L
    +

    &#77;

    M
    +

    &#78;

    N
    +

    &#79;

    O
    +

    &#80;

    P
    +

    &#81;

    Q
    +

    &#82;

    R
    +

    &#83;

    S
    +

    &#84;

    T
    +

    &#85;

    U
    +

    &#86;

    V
    +

    &#87;

    W
    +

    &#88;

    X
    +

    &#89;

    Y
    +

    &#90;

    Z
    +

    &#91;

    [
    +

    &#92;

    \
    +

    &#93;

    ]
    +

    &#94;

    ^
    +

    &#95;

    _
    +

    &#96;

    `
    +

    &#97;

    a
    +

    &#98;

    b
    +

    &#99;

    c
    +

    &#100;

    d
    +

    &#101;

    e
    +

    &#102;

    f
    +

    &#103;

    g
    +

    &#104;

    h
    +

    &#105;

    i
    +

    &#106;

    j
    +

    &#107;

    k
    +

    &#108;

    l
    +

    &#109;

    m
    +

    &#110;

    n
    +

    &#111;

    o
    +

    &#112;

    p
    +

    &#113;

    q
    +

    &#114;

    r
    +

    &#115;

    s
    +

    &#116;

    t
    +

    &#117;

    u
    +

    &#118;

    v
    +

    &#119;

    w
    +

    &#120;

    x
    +

    &#121;

    y
    +

    &#122;

    z
    +

    &#123;

    {
    +

    &#124;

    |
    +

    &#125;

    }
    +

    &#126;

    ~
    +

    &#160;

     
    +

    &#161;

    ¡
    +

    &#162;

    ¢
    +

    &#163;

    £
    +

    &#164;

    ¤
    +

    &#165;

    ¥
    +

    &#166;

    ¦
    +

    &#167;

    §
    +

    &#168;

    ¨
    +

    &#169;

    ©
    +

    &#170;

    ª
    +

    &#171;

    «
    +

    &#172;

    ¬
    +

    &#173;

    ­
    +

    &#174;

    ®
    +

    &#175;

    ¯
    +

    &#176;

    °
    +

    &#177;

    ±
    +

    &#178;

    ²
    +

    &#179;

    ³
    +

    &#180;

    ´
    +

    &#181;

    µ
    +

    &#182;

    +

    &#183;

    ·
    +

    &#184;

    ¸
    +

    &#185;

    ¹
    +

    &#186;

    º
    +

    &#187;

    »
    +

    &#188;

    ¼
    +

    &#189;

    ½
    +

    &#190;

    ¾
    +

    &#191;

    ¿
    +

    &#192;

    À
    +

    &#193;

    Á
    +

    &#194;

    Â
    +

    &#195;

    Ã
    +

    &#196;

    Ä
    +

    &#197;

    Å
    +

    &#198;

    Æ
    +

    &#199;

    Ç
    +

    &#200;

    È
    +

    &#201;

    É
    +

    &#202;

    Ê
    +

    &#203;

    Ë
    +

    &#204;

    Ì
    +

    &#205;

    Í
    +

    &#206;

    Î
    +

    &#207;

    Ï
    +

    &#208;

    Ð
    +

    &#209;

    Ñ
    +

    &#210;

    Ò
    +

    &#211;

    Ó
    +

    &#212;

    Ô
    +

    &#213;

    Õ
    +

    &#214;

    Ö
    +

    &#215;

    ×
    +

    &#216;

    Ø
    +

    &#217;

    Ù
    +

    &#218;

    Ú
    +

    &#219;

    Û
    +

    &#220;

    Ü
    +

    &#221;

    Ý
    +

    &#222;

    Þ
    +

    &#223;

    ß
    +

    &#224;

    à
    +

    &#225;

    á
    +

    &#226;

    â
    +

    &#227;

    ã
    +

    &#228;

    ä
    +

    &#229;

    å
    +

    &#230;

    æ
    +

    &#231;

    ç
    +

    &#232;

    è
    +

    &#233;

    é
    +

    &#234;

    ê
    +

    &#235;

    ë
    +

    &#236;

    ì
    +

    &#237;

    í
    +

    &#238;

    î
    +

    &#239;

    ï
    +

    &#240;

    ð
    +

    &#241;

    ñ
    +

    &#242;

    ò
    +

    &#243;

    ó
    +

    &#244;

    ô
    +

    &#245;

    õ
    +

    &#246;

    ö
    +

    &#247;

    ÷
    +

    &#248;

    ø
    +

    &#249;

    ù
    +

    &#250;

    ú
    +

    &#251;

    û
    +

    &#252;

    ü
    +

    &#253;

    ý
    +

    &#254;

    þ
    +

    &#255;

    ÿ
    +

    &#338;

    Œ
    +

    &#339;

    œ
    +

    &#376;

    Ÿ
    +

    &#710;

    ˆ
    +

    &#732;

    ˜
    +

    &#8192;

     
    +

    &#8193;

    +

    &#8194;

    +

    &#8195;

    +

    &#8196;

    +

    &#8197;

    +

    &#8198;

    +

    &#8199;

    +

    &#8200;

    +

    &#8201;

    +

    &#8202;

    +

    &#8208;

    +

    &#8209;

    +

    &#8210;

    +

    &#8211;

    +

    &#8212;

    +

    &#8216;

    +

    &#8217;

    +

    &#8218;

    +

    &#8220;

    +

    &#8221;

    +

    &#8222;

    +

    &#8226;

    +

    &#8230;

    +

    &#8239;

    +

    &#8249;

    +

    &#8250;

    +

    &#8287;

    +

    &#8364;

    +

    &#8482;

    +

    &#9724;

    +

    &#64257;

    +

    &#64258;

    +

    &#64259;

    +

    &#64260;

    +
    +
    + + +
    +
    + + +
    + +
    + +
    +
    +
    +

    Installing Webfonts

    + +

    Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

    + +

    1. Upload your webfonts

    +

    You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

    + +

    2. Include the webfont stylesheet

    +

    A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

    + + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

    We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

    + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

    3. Modify your own stylesheet

    +

    To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

    +p { font-family: 'WebFont', Arial, sans-serif; } + +

    4. Test

    +

    Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

    +
    + + +
    + +
    + +
    + +
    + + diff --git a/styles/opensans_webfontkit/opensans-bold-webfont.eot b/styles/opensans_webfontkit/opensans-bold-webfont.eot new file mode 100644 index 00000000..05918cef Binary files /dev/null and b/styles/opensans_webfontkit/opensans-bold-webfont.eot differ diff --git a/styles/opensans_webfontkit/opensans-bold-webfont.svg b/styles/opensans_webfontkit/opensans-bold-webfont.svg new file mode 100644 index 00000000..ff239cf1 --- /dev/null +++ b/styles/opensans_webfontkit/opensans-bold-webfont.svg @@ -0,0 +1,1824 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/styles/opensans_webfontkit/opensans-bold-webfont.ttf b/styles/opensans_webfontkit/opensans-bold-webfont.ttf new file mode 100644 index 00000000..11cf076b Binary files /dev/null and b/styles/opensans_webfontkit/opensans-bold-webfont.ttf differ diff --git a/styles/opensans_webfontkit/opensans-bold-webfont.woff b/styles/opensans_webfontkit/opensans-bold-webfont.woff new file mode 100644 index 00000000..41b10c98 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-bold-webfont.woff differ diff --git a/styles/opensans_webfontkit/opensans-bold-webfont.woff2 b/styles/opensans_webfontkit/opensans-bold-webfont.woff2 new file mode 100644 index 00000000..3be7ade8 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-bold-webfont.woff2 differ diff --git a/styles/opensans_webfontkit/opensans-bolditalic-demo.html b/styles/opensans_webfontkit/opensans-bolditalic-demo.html new file mode 100644 index 00000000..ff76ca13 --- /dev/null +++ b/styles/opensans_webfontkit/opensans-bolditalic-demo.html @@ -0,0 +1,614 @@ + + + + + + + + + + + + + Open Sans Bold Italic Specimen + + + + + + +
    + + + +
    + + +
    + +
    +
    +
    AaBb
    +
    +
    + +
    +
    A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
    +
    +
    +
    + + + + + + + + + + + + + + + + +
    10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    + +
    + +
    + + + +
    + + +
    +
    ◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body
    body
    body
    body
    +
    + bodyOpen Sans Bold Italic +
    +
    + bodyArial +
    +
    + bodyVerdana +
    +
    + bodyGeorgia +
    + + + +
    + + +
    + +
    +

    10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    +
    +
    +

    14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    + +
    + +
    + +
    +
    +

    20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    +

    24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    + +
    + +
    + +
    +
    +

    30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    + +
    + + + +
    +
    +

    10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    + +
    +
    +

    14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    + +
    +
    +

    20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    +

    24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    + +
    + +
    + +
    +
    +

    30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +

    Lorem Ipsum Dolor

    +

    Etiam porta sem malesuada magna mollis euismod

    + + +
    +
    +
    +
    +

    Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

    + + +

    Pellentesque ornare sem

    + +

    Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

    + +

    Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

    + +

    Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

    + +

    Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

    + +

    Cras mattis consectetur

    + +

    Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

    + +

    Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

    +
    + + +
    + +
    + + + + + + +
    +
    +
    + +

    Language Support

    +

    The subset of Open Sans Bold Italic in this kit supports the following languages:
    + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish

    +

    Glyph Chart

    +

    The subset of Open Sans Bold Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

    +
    + +

    &#13;

    +

    &#32;

    +

    &#33;

    !
    +

    &#34;

    "
    +

    &#35;

    #
    +

    &#36;

    $
    +

    &#37;

    %
    +

    &#38;

    &
    +

    &#39;

    '
    +

    &#40;

    (
    +

    &#41;

    )
    +

    &#42;

    *
    +

    &#43;

    +
    +

    &#44;

    ,
    +

    &#45;

    -
    +

    &#46;

    .
    +

    &#47;

    /
    +

    &#48;

    0
    +

    &#49;

    1
    +

    &#50;

    2
    +

    &#51;

    3
    +

    &#52;

    4
    +

    &#53;

    5
    +

    &#54;

    6
    +

    &#55;

    7
    +

    &#56;

    8
    +

    &#57;

    9
    +

    &#58;

    :
    +

    &#59;

    ;
    +

    &#60;

    <
    +

    &#61;

    =
    +

    &#62;

    >
    +

    &#63;

    ?
    +

    &#64;

    @
    +

    &#65;

    A
    +

    &#66;

    B
    +

    &#67;

    C
    +

    &#68;

    D
    +

    &#69;

    E
    +

    &#70;

    F
    +

    &#71;

    G
    +

    &#72;

    H
    +

    &#73;

    I
    +

    &#74;

    J
    +

    &#75;

    K
    +

    &#76;

    L
    +

    &#77;

    M
    +

    &#78;

    N
    +

    &#79;

    O
    +

    &#80;

    P
    +

    &#81;

    Q
    +

    &#82;

    R
    +

    &#83;

    S
    +

    &#84;

    T
    +

    &#85;

    U
    +

    &#86;

    V
    +

    &#87;

    W
    +

    &#88;

    X
    +

    &#89;

    Y
    +

    &#90;

    Z
    +

    &#91;

    [
    +

    &#92;

    \
    +

    &#93;

    ]
    +

    &#94;

    ^
    +

    &#95;

    _
    +

    &#96;

    `
    +

    &#97;

    a
    +

    &#98;

    b
    +

    &#99;

    c
    +

    &#100;

    d
    +

    &#101;

    e
    +

    &#102;

    f
    +

    &#103;

    g
    +

    &#104;

    h
    +

    &#105;

    i
    +

    &#106;

    j
    +

    &#107;

    k
    +

    &#108;

    l
    +

    &#109;

    m
    +

    &#110;

    n
    +

    &#111;

    o
    +

    &#112;

    p
    +

    &#113;

    q
    +

    &#114;

    r
    +

    &#115;

    s
    +

    &#116;

    t
    +

    &#117;

    u
    +

    &#118;

    v
    +

    &#119;

    w
    +

    &#120;

    x
    +

    &#121;

    y
    +

    &#122;

    z
    +

    &#123;

    {
    +

    &#124;

    |
    +

    &#125;

    }
    +

    &#126;

    ~
    +

    &#160;

     
    +

    &#161;

    ¡
    +

    &#162;

    ¢
    +

    &#163;

    £
    +

    &#164;

    ¤
    +

    &#165;

    ¥
    +

    &#166;

    ¦
    +

    &#167;

    §
    +

    &#168;

    ¨
    +

    &#169;

    ©
    +

    &#170;

    ª
    +

    &#171;

    «
    +

    &#172;

    ¬
    +

    &#173;

    ­
    +

    &#174;

    ®
    +

    &#175;

    ¯
    +

    &#176;

    °
    +

    &#177;

    ±
    +

    &#178;

    ²
    +

    &#179;

    ³
    +

    &#180;

    ´
    +

    &#181;

    µ
    +

    &#182;

    +

    &#183;

    ·
    +

    &#184;

    ¸
    +

    &#185;

    ¹
    +

    &#186;

    º
    +

    &#187;

    »
    +

    &#188;

    ¼
    +

    &#189;

    ½
    +

    &#190;

    ¾
    +

    &#191;

    ¿
    +

    &#192;

    À
    +

    &#193;

    Á
    +

    &#194;

    Â
    +

    &#195;

    Ã
    +

    &#196;

    Ä
    +

    &#197;

    Å
    +

    &#198;

    Æ
    +

    &#199;

    Ç
    +

    &#200;

    È
    +

    &#201;

    É
    +

    &#202;

    Ê
    +

    &#203;

    Ë
    +

    &#204;

    Ì
    +

    &#205;

    Í
    +

    &#206;

    Î
    +

    &#207;

    Ï
    +

    &#208;

    Ð
    +

    &#209;

    Ñ
    +

    &#210;

    Ò
    +

    &#211;

    Ó
    +

    &#212;

    Ô
    +

    &#213;

    Õ
    +

    &#214;

    Ö
    +

    &#215;

    ×
    +

    &#216;

    Ø
    +

    &#217;

    Ù
    +

    &#218;

    Ú
    +

    &#219;

    Û
    +

    &#220;

    Ü
    +

    &#221;

    Ý
    +

    &#222;

    Þ
    +

    &#223;

    ß
    +

    &#224;

    à
    +

    &#225;

    á
    +

    &#226;

    â
    +

    &#227;

    ã
    +

    &#228;

    ä
    +

    &#229;

    å
    +

    &#230;

    æ
    +

    &#231;

    ç
    +

    &#232;

    è
    +

    &#233;

    é
    +

    &#234;

    ê
    +

    &#235;

    ë
    +

    &#236;

    ì
    +

    &#237;

    í
    +

    &#238;

    î
    +

    &#239;

    ï
    +

    &#240;

    ð
    +

    &#241;

    ñ
    +

    &#242;

    ò
    +

    &#243;

    ó
    +

    &#244;

    ô
    +

    &#245;

    õ
    +

    &#246;

    ö
    +

    &#247;

    ÷
    +

    &#248;

    ø
    +

    &#249;

    ù
    +

    &#250;

    ú
    +

    &#251;

    û
    +

    &#252;

    ü
    +

    &#253;

    ý
    +

    &#254;

    þ
    +

    &#255;

    ÿ
    +

    &#338;

    Œ
    +

    &#339;

    œ
    +

    &#376;

    Ÿ
    +

    &#710;

    ˆ
    +

    &#732;

    ˜
    +

    &#8192;

     
    +

    &#8193;

    +

    &#8194;

    +

    &#8195;

    +

    &#8196;

    +

    &#8197;

    +

    &#8198;

    +

    &#8199;

    +

    &#8200;

    +

    &#8201;

    +

    &#8202;

    +

    &#8208;

    +

    &#8209;

    +

    &#8210;

    +

    &#8211;

    +

    &#8212;

    +

    &#8216;

    +

    &#8217;

    +

    &#8218;

    +

    &#8220;

    +

    &#8221;

    +

    &#8222;

    +

    &#8226;

    +

    &#8230;

    +

    &#8239;

    +

    &#8249;

    +

    &#8250;

    +

    &#8287;

    +

    &#8364;

    +

    &#8482;

    +

    &#9724;

    +

    &#64257;

    +

    &#64258;

    +

    &#64259;

    +

    &#64260;

    +
    +
    + + +
    +
    + + +
    + +
    + +
    +
    +
    +

    Installing Webfonts

    + +

    Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

    + +

    1. Upload your webfonts

    +

    You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

    + +

    2. Include the webfont stylesheet

    +

    A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

    + + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

    We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

    + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

    3. Modify your own stylesheet

    +

    To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

    +p { font-family: 'WebFont', Arial, sans-serif; } + +

    4. Test

    +

    Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

    +
    + + +
    + +
    + +
    + +
    + + diff --git a/styles/opensans_webfontkit/opensans-bolditalic-webfont.eot b/styles/opensans_webfontkit/opensans-bolditalic-webfont.eot new file mode 100644 index 00000000..00109af3 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-bolditalic-webfont.eot differ diff --git a/styles/opensans_webfontkit/opensans-bolditalic-webfont.svg b/styles/opensans_webfontkit/opensans-bolditalic-webfont.svg new file mode 100644 index 00000000..f3c12738 --- /dev/null +++ b/styles/opensans_webfontkit/opensans-bolditalic-webfont.svg @@ -0,0 +1,1824 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/styles/opensans_webfontkit/opensans-bolditalic-webfont.ttf b/styles/opensans_webfontkit/opensans-bolditalic-webfont.ttf new file mode 100644 index 00000000..ee6fc4a4 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-bolditalic-webfont.ttf differ diff --git a/styles/opensans_webfontkit/opensans-bolditalic-webfont.woff b/styles/opensans_webfontkit/opensans-bolditalic-webfont.woff new file mode 100644 index 00000000..d9239e90 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-bolditalic-webfont.woff differ diff --git a/styles/opensans_webfontkit/opensans-bolditalic-webfont.woff2 b/styles/opensans_webfontkit/opensans-bolditalic-webfont.woff2 new file mode 100644 index 00000000..b9bffd41 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-bolditalic-webfont.woff2 differ diff --git a/styles/opensans_webfontkit/opensans-italic-demo.html b/styles/opensans_webfontkit/opensans-italic-demo.html new file mode 100644 index 00000000..46e69c24 --- /dev/null +++ b/styles/opensans_webfontkit/opensans-italic-demo.html @@ -0,0 +1,614 @@ + + + + + + + + + + + + + Open Sans Italic Specimen + + + + + + +
    + + + +
    + + +
    + +
    +
    +
    AaBb
    +
    +
    + +
    +
    A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
    +
    +
    +
    + + + + + + + + + + + + + + + + +
    10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    + +
    + +
    + + + +
    + + +
    +
    ◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body
    body
    body
    body
    +
    + bodyOpen Sans Italic +
    +
    + bodyArial +
    +
    + bodyVerdana +
    +
    + bodyGeorgia +
    + + + +
    + + +
    + +
    +

    10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    +
    +
    +

    14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    + +
    + +
    + +
    +
    +

    20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    +

    24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    + +
    + +
    + +
    +
    +

    30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    + +
    + + + +
    +
    +

    10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    + +
    +
    +

    14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    + +
    +
    +

    20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    +

    24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    + +
    + +
    + +
    +
    +

    30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +

    Lorem Ipsum Dolor

    +

    Etiam porta sem malesuada magna mollis euismod

    + + +
    +
    +
    +
    +

    Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

    + + +

    Pellentesque ornare sem

    + +

    Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

    + +

    Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

    + +

    Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

    + +

    Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

    + +

    Cras mattis consectetur

    + +

    Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

    + +

    Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

    +
    + + +
    + +
    + + + + + + +
    +
    +
    + +

    Language Support

    +

    The subset of Open Sans Italic in this kit supports the following languages:
    + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish

    +

    Glyph Chart

    +

    The subset of Open Sans Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

    +
    + +

    &#13;

    +

    &#32;

    +

    &#33;

    !
    +

    &#34;

    "
    +

    &#35;

    #
    +

    &#36;

    $
    +

    &#37;

    %
    +

    &#38;

    &
    +

    &#39;

    '
    +

    &#40;

    (
    +

    &#41;

    )
    +

    &#42;

    *
    +

    &#43;

    +
    +

    &#44;

    ,
    +

    &#45;

    -
    +

    &#46;

    .
    +

    &#47;

    /
    +

    &#48;

    0
    +

    &#49;

    1
    +

    &#50;

    2
    +

    &#51;

    3
    +

    &#52;

    4
    +

    &#53;

    5
    +

    &#54;

    6
    +

    &#55;

    7
    +

    &#56;

    8
    +

    &#57;

    9
    +

    &#58;

    :
    +

    &#59;

    ;
    +

    &#60;

    <
    +

    &#61;

    =
    +

    &#62;

    >
    +

    &#63;

    ?
    +

    &#64;

    @
    +

    &#65;

    A
    +

    &#66;

    B
    +

    &#67;

    C
    +

    &#68;

    D
    +

    &#69;

    E
    +

    &#70;

    F
    +

    &#71;

    G
    +

    &#72;

    H
    +

    &#73;

    I
    +

    &#74;

    J
    +

    &#75;

    K
    +

    &#76;

    L
    +

    &#77;

    M
    +

    &#78;

    N
    +

    &#79;

    O
    +

    &#80;

    P
    +

    &#81;

    Q
    +

    &#82;

    R
    +

    &#83;

    S
    +

    &#84;

    T
    +

    &#85;

    U
    +

    &#86;

    V
    +

    &#87;

    W
    +

    &#88;

    X
    +

    &#89;

    Y
    +

    &#90;

    Z
    +

    &#91;

    [
    +

    &#92;

    \
    +

    &#93;

    ]
    +

    &#94;

    ^
    +

    &#95;

    _
    +

    &#96;

    `
    +

    &#97;

    a
    +

    &#98;

    b
    +

    &#99;

    c
    +

    &#100;

    d
    +

    &#101;

    e
    +

    &#102;

    f
    +

    &#103;

    g
    +

    &#104;

    h
    +

    &#105;

    i
    +

    &#106;

    j
    +

    &#107;

    k
    +

    &#108;

    l
    +

    &#109;

    m
    +

    &#110;

    n
    +

    &#111;

    o
    +

    &#112;

    p
    +

    &#113;

    q
    +

    &#114;

    r
    +

    &#115;

    s
    +

    &#116;

    t
    +

    &#117;

    u
    +

    &#118;

    v
    +

    &#119;

    w
    +

    &#120;

    x
    +

    &#121;

    y
    +

    &#122;

    z
    +

    &#123;

    {
    +

    &#124;

    |
    +

    &#125;

    }
    +

    &#126;

    ~
    +

    &#160;

     
    +

    &#161;

    ¡
    +

    &#162;

    ¢
    +

    &#163;

    £
    +

    &#164;

    ¤
    +

    &#165;

    ¥
    +

    &#166;

    ¦
    +

    &#167;

    §
    +

    &#168;

    ¨
    +

    &#169;

    ©
    +

    &#170;

    ª
    +

    &#171;

    «
    +

    &#172;

    ¬
    +

    &#173;

    ­
    +

    &#174;

    ®
    +

    &#175;

    ¯
    +

    &#176;

    °
    +

    &#177;

    ±
    +

    &#178;

    ²
    +

    &#179;

    ³
    +

    &#180;

    ´
    +

    &#181;

    µ
    +

    &#182;

    +

    &#183;

    ·
    +

    &#184;

    ¸
    +

    &#185;

    ¹
    +

    &#186;

    º
    +

    &#187;

    »
    +

    &#188;

    ¼
    +

    &#189;

    ½
    +

    &#190;

    ¾
    +

    &#191;

    ¿
    +

    &#192;

    À
    +

    &#193;

    Á
    +

    &#194;

    Â
    +

    &#195;

    Ã
    +

    &#196;

    Ä
    +

    &#197;

    Å
    +

    &#198;

    Æ
    +

    &#199;

    Ç
    +

    &#200;

    È
    +

    &#201;

    É
    +

    &#202;

    Ê
    +

    &#203;

    Ë
    +

    &#204;

    Ì
    +

    &#205;

    Í
    +

    &#206;

    Î
    +

    &#207;

    Ï
    +

    &#208;

    Ð
    +

    &#209;

    Ñ
    +

    &#210;

    Ò
    +

    &#211;

    Ó
    +

    &#212;

    Ô
    +

    &#213;

    Õ
    +

    &#214;

    Ö
    +

    &#215;

    ×
    +

    &#216;

    Ø
    +

    &#217;

    Ù
    +

    &#218;

    Ú
    +

    &#219;

    Û
    +

    &#220;

    Ü
    +

    &#221;

    Ý
    +

    &#222;

    Þ
    +

    &#223;

    ß
    +

    &#224;

    à
    +

    &#225;

    á
    +

    &#226;

    â
    +

    &#227;

    ã
    +

    &#228;

    ä
    +

    &#229;

    å
    +

    &#230;

    æ
    +

    &#231;

    ç
    +

    &#232;

    è
    +

    &#233;

    é
    +

    &#234;

    ê
    +

    &#235;

    ë
    +

    &#236;

    ì
    +

    &#237;

    í
    +

    &#238;

    î
    +

    &#239;

    ï
    +

    &#240;

    ð
    +

    &#241;

    ñ
    +

    &#242;

    ò
    +

    &#243;

    ó
    +

    &#244;

    ô
    +

    &#245;

    õ
    +

    &#246;

    ö
    +

    &#247;

    ÷
    +

    &#248;

    ø
    +

    &#249;

    ù
    +

    &#250;

    ú
    +

    &#251;

    û
    +

    &#252;

    ü
    +

    &#253;

    ý
    +

    &#254;

    þ
    +

    &#255;

    ÿ
    +

    &#338;

    Œ
    +

    &#339;

    œ
    +

    &#376;

    Ÿ
    +

    &#710;

    ˆ
    +

    &#732;

    ˜
    +

    &#8192;

     
    +

    &#8193;

    +

    &#8194;

    +

    &#8195;

    +

    &#8196;

    +

    &#8197;

    +

    &#8198;

    +

    &#8199;

    +

    &#8200;

    +

    &#8201;

    +

    &#8202;

    +

    &#8208;

    +

    &#8209;

    +

    &#8210;

    +

    &#8211;

    +

    &#8212;

    +

    &#8216;

    +

    &#8217;

    +

    &#8218;

    +

    &#8220;

    +

    &#8221;

    +

    &#8222;

    +

    &#8226;

    +

    &#8230;

    +

    &#8239;

    +

    &#8249;

    +

    &#8250;

    +

    &#8287;

    +

    &#8364;

    +

    &#8482;

    +

    &#9724;

    +

    &#64257;

    +

    &#64258;

    +

    &#64259;

    +

    &#64260;

    +
    +
    + + +
    +
    + + +
    + +
    + +
    +
    +
    +

    Installing Webfonts

    + +

    Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

    + +

    1. Upload your webfonts

    +

    You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

    + +

    2. Include the webfont stylesheet

    +

    A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

    + + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

    We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

    + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

    3. Modify your own stylesheet

    +

    To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

    +p { font-family: 'WebFont', Arial, sans-serif; } + +

    4. Test

    +

    Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

    +
    + + +
    + +
    + +
    + +
    + + diff --git a/styles/opensans_webfontkit/opensans-italic-webfont.eot b/styles/opensans_webfontkit/opensans-italic-webfont.eot new file mode 100644 index 00000000..5f5526b3 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-italic-webfont.eot differ diff --git a/styles/opensans_webfontkit/opensans-italic-webfont.svg b/styles/opensans_webfontkit/opensans-italic-webfont.svg new file mode 100644 index 00000000..ab4bb7e1 --- /dev/null +++ b/styles/opensans_webfontkit/opensans-italic-webfont.svg @@ -0,0 +1,1824 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/styles/opensans_webfontkit/opensans-italic-webfont.ttf b/styles/opensans_webfontkit/opensans-italic-webfont.ttf new file mode 100644 index 00000000..ef736828 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-italic-webfont.ttf differ diff --git a/styles/opensans_webfontkit/opensans-italic-webfont.woff b/styles/opensans_webfontkit/opensans-italic-webfont.woff new file mode 100644 index 00000000..fb739406 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-italic-webfont.woff differ diff --git a/styles/opensans_webfontkit/opensans-italic-webfont.woff2 b/styles/opensans_webfontkit/opensans-italic-webfont.woff2 new file mode 100644 index 00000000..2d270031 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-italic-webfont.woff2 differ diff --git a/styles/opensans_webfontkit/opensans-light-demo.html b/styles/opensans_webfontkit/opensans-light-demo.html new file mode 100644 index 00000000..50e999ef --- /dev/null +++ b/styles/opensans_webfontkit/opensans-light-demo.html @@ -0,0 +1,614 @@ + + + + + + + + + + + + + Open Sans Light Regular Specimen + + + + + + +
    + + + +
    + + +
    + +
    +
    +
    AaBb
    +
    +
    + +
    +
    A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
    +
    +
    +
    + + + + + + + + + + + + + + + + +
    10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    + +
    + +
    + + + +
    + + +
    +
    ◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body
    body
    body
    body
    +
    + bodyOpen Sans Light Regular +
    +
    + bodyArial +
    +
    + bodyVerdana +
    +
    + bodyGeorgia +
    + + + +
    + + +
    + +
    +

    10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    +
    +
    +

    14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    + +
    + +
    + +
    +
    +

    20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    +

    24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    + +
    + +
    + +
    +
    +

    30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    + +
    + + + +
    +
    +

    10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    + +
    +
    +

    14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    + +
    +
    +

    20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    +

    24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    + +
    + +
    + +
    +
    +

    30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +

    Lorem Ipsum Dolor

    +

    Etiam porta sem malesuada magna mollis euismod

    + + +
    +
    +
    +
    +

    Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

    + + +

    Pellentesque ornare sem

    + +

    Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

    + +

    Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

    + +

    Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

    + +

    Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

    + +

    Cras mattis consectetur

    + +

    Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

    + +

    Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

    +
    + + +
    + +
    + + + + + + +
    +
    +
    + +

    Language Support

    +

    The subset of Open Sans Light Regular in this kit supports the following languages:
    + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish

    +

    Glyph Chart

    +

    The subset of Open Sans Light Regular in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

    +
    + +

    &#13;

    +

    &#32;

    +

    &#33;

    !
    +

    &#34;

    "
    +

    &#35;

    #
    +

    &#36;

    $
    +

    &#37;

    %
    +

    &#38;

    &
    +

    &#39;

    '
    +

    &#40;

    (
    +

    &#41;

    )
    +

    &#42;

    *
    +

    &#43;

    +
    +

    &#44;

    ,
    +

    &#45;

    -
    +

    &#46;

    .
    +

    &#47;

    /
    +

    &#48;

    0
    +

    &#49;

    1
    +

    &#50;

    2
    +

    &#51;

    3
    +

    &#52;

    4
    +

    &#53;

    5
    +

    &#54;

    6
    +

    &#55;

    7
    +

    &#56;

    8
    +

    &#57;

    9
    +

    &#58;

    :
    +

    &#59;

    ;
    +

    &#60;

    <
    +

    &#61;

    =
    +

    &#62;

    >
    +

    &#63;

    ?
    +

    &#64;

    @
    +

    &#65;

    A
    +

    &#66;

    B
    +

    &#67;

    C
    +

    &#68;

    D
    +

    &#69;

    E
    +

    &#70;

    F
    +

    &#71;

    G
    +

    &#72;

    H
    +

    &#73;

    I
    +

    &#74;

    J
    +

    &#75;

    K
    +

    &#76;

    L
    +

    &#77;

    M
    +

    &#78;

    N
    +

    &#79;

    O
    +

    &#80;

    P
    +

    &#81;

    Q
    +

    &#82;

    R
    +

    &#83;

    S
    +

    &#84;

    T
    +

    &#85;

    U
    +

    &#86;

    V
    +

    &#87;

    W
    +

    &#88;

    X
    +

    &#89;

    Y
    +

    &#90;

    Z
    +

    &#91;

    [
    +

    &#92;

    \
    +

    &#93;

    ]
    +

    &#94;

    ^
    +

    &#95;

    _
    +

    &#96;

    `
    +

    &#97;

    a
    +

    &#98;

    b
    +

    &#99;

    c
    +

    &#100;

    d
    +

    &#101;

    e
    +

    &#102;

    f
    +

    &#103;

    g
    +

    &#104;

    h
    +

    &#105;

    i
    +

    &#106;

    j
    +

    &#107;

    k
    +

    &#108;

    l
    +

    &#109;

    m
    +

    &#110;

    n
    +

    &#111;

    o
    +

    &#112;

    p
    +

    &#113;

    q
    +

    &#114;

    r
    +

    &#115;

    s
    +

    &#116;

    t
    +

    &#117;

    u
    +

    &#118;

    v
    +

    &#119;

    w
    +

    &#120;

    x
    +

    &#121;

    y
    +

    &#122;

    z
    +

    &#123;

    {
    +

    &#124;

    |
    +

    &#125;

    }
    +

    &#126;

    ~
    +

    &#160;

     
    +

    &#161;

    ¡
    +

    &#162;

    ¢
    +

    &#163;

    £
    +

    &#164;

    ¤
    +

    &#165;

    ¥
    +

    &#166;

    ¦
    +

    &#167;

    §
    +

    &#168;

    ¨
    +

    &#169;

    ©
    +

    &#170;

    ª
    +

    &#171;

    «
    +

    &#172;

    ¬
    +

    &#173;

    ­
    +

    &#174;

    ®
    +

    &#175;

    ¯
    +

    &#176;

    °
    +

    &#177;

    ±
    +

    &#178;

    ²
    +

    &#179;

    ³
    +

    &#180;

    ´
    +

    &#181;

    µ
    +

    &#182;

    +

    &#183;

    ·
    +

    &#184;

    ¸
    +

    &#185;

    ¹
    +

    &#186;

    º
    +

    &#187;

    »
    +

    &#188;

    ¼
    +

    &#189;

    ½
    +

    &#190;

    ¾
    +

    &#191;

    ¿
    +

    &#192;

    À
    +

    &#193;

    Á
    +

    &#194;

    Â
    +

    &#195;

    Ã
    +

    &#196;

    Ä
    +

    &#197;

    Å
    +

    &#198;

    Æ
    +

    &#199;

    Ç
    +

    &#200;

    È
    +

    &#201;

    É
    +

    &#202;

    Ê
    +

    &#203;

    Ë
    +

    &#204;

    Ì
    +

    &#205;

    Í
    +

    &#206;

    Î
    +

    &#207;

    Ï
    +

    &#208;

    Ð
    +

    &#209;

    Ñ
    +

    &#210;

    Ò
    +

    &#211;

    Ó
    +

    &#212;

    Ô
    +

    &#213;

    Õ
    +

    &#214;

    Ö
    +

    &#215;

    ×
    +

    &#216;

    Ø
    +

    &#217;

    Ù
    +

    &#218;

    Ú
    +

    &#219;

    Û
    +

    &#220;

    Ü
    +

    &#221;

    Ý
    +

    &#222;

    Þ
    +

    &#223;

    ß
    +

    &#224;

    à
    +

    &#225;

    á
    +

    &#226;

    â
    +

    &#227;

    ã
    +

    &#228;

    ä
    +

    &#229;

    å
    +

    &#230;

    æ
    +

    &#231;

    ç
    +

    &#232;

    è
    +

    &#233;

    é
    +

    &#234;

    ê
    +

    &#235;

    ë
    +

    &#236;

    ì
    +

    &#237;

    í
    +

    &#238;

    î
    +

    &#239;

    ï
    +

    &#240;

    ð
    +

    &#241;

    ñ
    +

    &#242;

    ò
    +

    &#243;

    ó
    +

    &#244;

    ô
    +

    &#245;

    õ
    +

    &#246;

    ö
    +

    &#247;

    ÷
    +

    &#248;

    ø
    +

    &#249;

    ù
    +

    &#250;

    ú
    +

    &#251;

    û
    +

    &#252;

    ü
    +

    &#253;

    ý
    +

    &#254;

    þ
    +

    &#255;

    ÿ
    +

    &#338;

    Œ
    +

    &#339;

    œ
    +

    &#376;

    Ÿ
    +

    &#710;

    ˆ
    +

    &#732;

    ˜
    +

    &#8192;

     
    +

    &#8193;

    +

    &#8194;

    +

    &#8195;

    +

    &#8196;

    +

    &#8197;

    +

    &#8198;

    +

    &#8199;

    +

    &#8200;

    +

    &#8201;

    +

    &#8202;

    +

    &#8208;

    +

    &#8209;

    +

    &#8210;

    +

    &#8211;

    +

    &#8212;

    +

    &#8216;

    +

    &#8217;

    +

    &#8218;

    +

    &#8220;

    +

    &#8221;

    +

    &#8222;

    +

    &#8226;

    +

    &#8230;

    +

    &#8239;

    +

    &#8249;

    +

    &#8250;

    +

    &#8287;

    +

    &#8364;

    +

    &#8482;

    +

    &#9724;

    +

    &#64257;

    +

    &#64258;

    +

    &#64259;

    +

    &#64260;

    +
    +
    + + +
    +
    + + +
    + +
    + +
    +
    +
    +

    Installing Webfonts

    + +

    Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

    + +

    1. Upload your webfonts

    +

    You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

    + +

    2. Include the webfont stylesheet

    +

    A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

    + + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

    We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

    + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

    3. Modify your own stylesheet

    +

    To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

    +p { font-family: 'WebFont', Arial, sans-serif; } + +

    4. Test

    +

    Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

    +
    + + +
    + +
    + +
    + +
    + + diff --git a/styles/opensans_webfontkit/opensans-light-webfont.eot b/styles/opensans_webfontkit/opensans-light-webfont.eot new file mode 100644 index 00000000..baff2cd3 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-light-webfont.eot differ diff --git a/styles/opensans_webfontkit/opensans-light-webfont.svg b/styles/opensans_webfontkit/opensans-light-webfont.svg new file mode 100644 index 00000000..a36a5b7e --- /dev/null +++ b/styles/opensans_webfontkit/opensans-light-webfont.svg @@ -0,0 +1,1824 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/styles/opensans_webfontkit/opensans-light-webfont.ttf b/styles/opensans_webfontkit/opensans-light-webfont.ttf new file mode 100644 index 00000000..7b58522d Binary files /dev/null and b/styles/opensans_webfontkit/opensans-light-webfont.ttf differ diff --git a/styles/opensans_webfontkit/opensans-light-webfont.woff b/styles/opensans_webfontkit/opensans-light-webfont.woff new file mode 100644 index 00000000..52d4cbbf Binary files /dev/null and b/styles/opensans_webfontkit/opensans-light-webfont.woff differ diff --git a/styles/opensans_webfontkit/opensans-light-webfont.woff2 b/styles/opensans_webfontkit/opensans-light-webfont.woff2 new file mode 100644 index 00000000..5031cb82 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-light-webfont.woff2 differ diff --git a/styles/opensans_webfontkit/opensans-regular-demo.html b/styles/opensans_webfontkit/opensans-regular-demo.html new file mode 100644 index 00000000..5bc67b0d --- /dev/null +++ b/styles/opensans_webfontkit/opensans-regular-demo.html @@ -0,0 +1,614 @@ + + + + + + + + + + + + + Open Sans Regular Specimen + + + + + + +
    + + + +
    + + +
    + +
    +
    +
    AaBb
    +
    +
    + +
    +
    A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
    +
    +
    +
    + + + + + + + + + + + + + + + + +
    10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    + +
    + +
    + + + +
    + + +
    +
    ◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body
    body
    body
    body
    +
    + bodyOpen Sans Regular +
    +
    + bodyArial +
    +
    + bodyVerdana +
    +
    + bodyGeorgia +
    + + + +
    + + +
    + +
    +

    10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    +
    +
    +

    14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    + +
    + +
    + +
    +
    +

    20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    +

    24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    + +
    + +
    + +
    +
    +

    30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    + +
    + + + +
    +
    +

    10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    + +
    +
    +

    14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    + +
    +
    +

    20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    +

    24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    + +
    + +
    + +
    +
    +

    30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +

    Lorem Ipsum Dolor

    +

    Etiam porta sem malesuada magna mollis euismod

    + + +
    +
    +
    +
    +

    Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

    + + +

    Pellentesque ornare sem

    + +

    Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

    + +

    Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

    + +

    Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

    + +

    Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

    + +

    Cras mattis consectetur

    + +

    Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

    + +

    Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

    +
    + + +
    + +
    + + + + + + +
    +
    +
    + +

    Language Support

    +

    The subset of Open Sans Regular in this kit supports the following languages:
    + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish

    +

    Glyph Chart

    +

    The subset of Open Sans Regular in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

    +
    + +

    &#13;

    +

    &#32;

    +

    &#33;

    !
    +

    &#34;

    "
    +

    &#35;

    #
    +

    &#36;

    $
    +

    &#37;

    %
    +

    &#38;

    &
    +

    &#39;

    '
    +

    &#40;

    (
    +

    &#41;

    )
    +

    &#42;

    *
    +

    &#43;

    +
    +

    &#44;

    ,
    +

    &#45;

    -
    +

    &#46;

    .
    +

    &#47;

    /
    +

    &#48;

    0
    +

    &#49;

    1
    +

    &#50;

    2
    +

    &#51;

    3
    +

    &#52;

    4
    +

    &#53;

    5
    +

    &#54;

    6
    +

    &#55;

    7
    +

    &#56;

    8
    +

    &#57;

    9
    +

    &#58;

    :
    +

    &#59;

    ;
    +

    &#60;

    <
    +

    &#61;

    =
    +

    &#62;

    >
    +

    &#63;

    ?
    +

    &#64;

    @
    +

    &#65;

    A
    +

    &#66;

    B
    +

    &#67;

    C
    +

    &#68;

    D
    +

    &#69;

    E
    +

    &#70;

    F
    +

    &#71;

    G
    +

    &#72;

    H
    +

    &#73;

    I
    +

    &#74;

    J
    +

    &#75;

    K
    +

    &#76;

    L
    +

    &#77;

    M
    +

    &#78;

    N
    +

    &#79;

    O
    +

    &#80;

    P
    +

    &#81;

    Q
    +

    &#82;

    R
    +

    &#83;

    S
    +

    &#84;

    T
    +

    &#85;

    U
    +

    &#86;

    V
    +

    &#87;

    W
    +

    &#88;

    X
    +

    &#89;

    Y
    +

    &#90;

    Z
    +

    &#91;

    [
    +

    &#92;

    \
    +

    &#93;

    ]
    +

    &#94;

    ^
    +

    &#95;

    _
    +

    &#96;

    `
    +

    &#97;

    a
    +

    &#98;

    b
    +

    &#99;

    c
    +

    &#100;

    d
    +

    &#101;

    e
    +

    &#102;

    f
    +

    &#103;

    g
    +

    &#104;

    h
    +

    &#105;

    i
    +

    &#106;

    j
    +

    &#107;

    k
    +

    &#108;

    l
    +

    &#109;

    m
    +

    &#110;

    n
    +

    &#111;

    o
    +

    &#112;

    p
    +

    &#113;

    q
    +

    &#114;

    r
    +

    &#115;

    s
    +

    &#116;

    t
    +

    &#117;

    u
    +

    &#118;

    v
    +

    &#119;

    w
    +

    &#120;

    x
    +

    &#121;

    y
    +

    &#122;

    z
    +

    &#123;

    {
    +

    &#124;

    |
    +

    &#125;

    }
    +

    &#126;

    ~
    +

    &#160;

     
    +

    &#161;

    ¡
    +

    &#162;

    ¢
    +

    &#163;

    £
    +

    &#164;

    ¤
    +

    &#165;

    ¥
    +

    &#166;

    ¦
    +

    &#167;

    §
    +

    &#168;

    ¨
    +

    &#169;

    ©
    +

    &#170;

    ª
    +

    &#171;

    «
    +

    &#172;

    ¬
    +

    &#173;

    ­
    +

    &#174;

    ®
    +

    &#175;

    ¯
    +

    &#176;

    °
    +

    &#177;

    ±
    +

    &#178;

    ²
    +

    &#179;

    ³
    +

    &#180;

    ´
    +

    &#181;

    µ
    +

    &#182;

    +

    &#183;

    ·
    +

    &#184;

    ¸
    +

    &#185;

    ¹
    +

    &#186;

    º
    +

    &#187;

    »
    +

    &#188;

    ¼
    +

    &#189;

    ½
    +

    &#190;

    ¾
    +

    &#191;

    ¿
    +

    &#192;

    À
    +

    &#193;

    Á
    +

    &#194;

    Â
    +

    &#195;

    Ã
    +

    &#196;

    Ä
    +

    &#197;

    Å
    +

    &#198;

    Æ
    +

    &#199;

    Ç
    +

    &#200;

    È
    +

    &#201;

    É
    +

    &#202;

    Ê
    +

    &#203;

    Ë
    +

    &#204;

    Ì
    +

    &#205;

    Í
    +

    &#206;

    Î
    +

    &#207;

    Ï
    +

    &#208;

    Ð
    +

    &#209;

    Ñ
    +

    &#210;

    Ò
    +

    &#211;

    Ó
    +

    &#212;

    Ô
    +

    &#213;

    Õ
    +

    &#214;

    Ö
    +

    &#215;

    ×
    +

    &#216;

    Ø
    +

    &#217;

    Ù
    +

    &#218;

    Ú
    +

    &#219;

    Û
    +

    &#220;

    Ü
    +

    &#221;

    Ý
    +

    &#222;

    Þ
    +

    &#223;

    ß
    +

    &#224;

    à
    +

    &#225;

    á
    +

    &#226;

    â
    +

    &#227;

    ã
    +

    &#228;

    ä
    +

    &#229;

    å
    +

    &#230;

    æ
    +

    &#231;

    ç
    +

    &#232;

    è
    +

    &#233;

    é
    +

    &#234;

    ê
    +

    &#235;

    ë
    +

    &#236;

    ì
    +

    &#237;

    í
    +

    &#238;

    î
    +

    &#239;

    ï
    +

    &#240;

    ð
    +

    &#241;

    ñ
    +

    &#242;

    ò
    +

    &#243;

    ó
    +

    &#244;

    ô
    +

    &#245;

    õ
    +

    &#246;

    ö
    +

    &#247;

    ÷
    +

    &#248;

    ø
    +

    &#249;

    ù
    +

    &#250;

    ú
    +

    &#251;

    û
    +

    &#252;

    ü
    +

    &#253;

    ý
    +

    &#254;

    þ
    +

    &#255;

    ÿ
    +

    &#338;

    Œ
    +

    &#339;

    œ
    +

    &#376;

    Ÿ
    +

    &#710;

    ˆ
    +

    &#732;

    ˜
    +

    &#8192;

     
    +

    &#8193;

    +

    &#8194;

    +

    &#8195;

    +

    &#8196;

    +

    &#8197;

    +

    &#8198;

    +

    &#8199;

    +

    &#8200;

    +

    &#8201;

    +

    &#8202;

    +

    &#8208;

    +

    &#8209;

    +

    &#8210;

    +

    &#8211;

    +

    &#8212;

    +

    &#8216;

    +

    &#8217;

    +

    &#8218;

    +

    &#8220;

    +

    &#8221;

    +

    &#8222;

    +

    &#8226;

    +

    &#8230;

    +

    &#8239;

    +

    &#8249;

    +

    &#8250;

    +

    &#8287;

    +

    &#8364;

    +

    &#8482;

    +

    &#9724;

    +

    &#64257;

    +

    &#64258;

    +

    &#64259;

    +

    &#64260;

    +
    +
    + + +
    +
    + + +
    + +
    + +
    +
    +
    +

    Installing Webfonts

    + +

    Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

    + +

    1. Upload your webfonts

    +

    You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

    + +

    2. Include the webfont stylesheet

    +

    A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

    + + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

    We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

    + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

    3. Modify your own stylesheet

    +

    To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

    +p { font-family: 'WebFont', Arial, sans-serif; } + +

    4. Test

    +

    Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

    +
    + + +
    + +
    + +
    + +
    + + diff --git a/styles/opensans_webfontkit/opensans-regular-webfont.eot b/styles/opensans_webfontkit/opensans-regular-webfont.eot new file mode 100644 index 00000000..94451d07 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-regular-webfont.eot differ diff --git a/styles/opensans_webfontkit/opensans-regular-webfont.svg b/styles/opensans_webfontkit/opensans-regular-webfont.svg new file mode 100644 index 00000000..a169e01a --- /dev/null +++ b/styles/opensans_webfontkit/opensans-regular-webfont.svg @@ -0,0 +1,1824 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/styles/opensans_webfontkit/opensans-regular-webfont.ttf b/styles/opensans_webfontkit/opensans-regular-webfont.ttf new file mode 100644 index 00000000..eafd74b2 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-regular-webfont.ttf differ diff --git a/styles/opensans_webfontkit/opensans-regular-webfont.woff b/styles/opensans_webfontkit/opensans-regular-webfont.woff new file mode 100644 index 00000000..306d9647 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-regular-webfont.woff differ diff --git a/styles/opensans_webfontkit/opensans-regular-webfont.woff2 b/styles/opensans_webfontkit/opensans-regular-webfont.woff2 new file mode 100644 index 00000000..6c69ce83 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-regular-webfont.woff2 differ diff --git a/styles/opensans_webfontkit/opensans-semibold-demo.html b/styles/opensans_webfontkit/opensans-semibold-demo.html new file mode 100644 index 00000000..6cb12e7b --- /dev/null +++ b/styles/opensans_webfontkit/opensans-semibold-demo.html @@ -0,0 +1,614 @@ + + + + + + + + + + + + + Open Sans Semibold Regular Specimen + + + + + + +
    + + + +
    + + +
    + +
    +
    +
    AaBb
    +
    +
    + +
    +
    A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
    +
    +
    +
    + + + + + + + + + + + + + + + + +
    10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    + +
    + +
    + + + +
    + + +
    +
    ◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body
    body
    body
    body
    +
    + bodyOpen Sans Semibold Regular +
    +
    + bodyArial +
    +
    + bodyVerdana +
    +
    + bodyGeorgia +
    + + + +
    + + +
    + +
    +

    10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    +
    +
    +

    14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    + +
    + +
    + +
    +
    +

    20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    +

    24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    + +
    + +
    + +
    +
    +

    30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    + +
    + + + +
    +
    +

    10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    + +
    +
    +

    14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    +

    18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    + +
    +
    + +
    + +
    +
    +

    20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    +

    24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    + +
    + +
    + +
    +
    +

    30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +

    Lorem Ipsum Dolor

    +

    Etiam porta sem malesuada magna mollis euismod

    + + +
    +
    +
    +
    +

    Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

    + + +

    Pellentesque ornare sem

    + +

    Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

    + +

    Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

    + +

    Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

    + +

    Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

    + +

    Cras mattis consectetur

    + +

    Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

    + +

    Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

    +
    + + +
    + +
    + + + + + + +
    +
    +
    + +

    Language Support

    +

    The subset of Open Sans Semibold Regular in this kit supports the following languages:
    + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish

    +

    Glyph Chart

    +

    The subset of Open Sans Semibold Regular in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

    +
    + +

    &#13;

    +

    &#32;

    +

    &#33;

    !
    +

    &#34;

    "
    +

    &#35;

    #
    +

    &#36;

    $
    +

    &#37;

    %
    +

    &#38;

    &
    +

    &#39;

    '
    +

    &#40;

    (
    +

    &#41;

    )
    +

    &#42;

    *
    +

    &#43;

    +
    +

    &#44;

    ,
    +

    &#45;

    -
    +

    &#46;

    .
    +

    &#47;

    /
    +

    &#48;

    0
    +

    &#49;

    1
    +

    &#50;

    2
    +

    &#51;

    3
    +

    &#52;

    4
    +

    &#53;

    5
    +

    &#54;

    6
    +

    &#55;

    7
    +

    &#56;

    8
    +

    &#57;

    9
    +

    &#58;

    :
    +

    &#59;

    ;
    +

    &#60;

    <
    +

    &#61;

    =
    +

    &#62;

    >
    +

    &#63;

    ?
    +

    &#64;

    @
    +

    &#65;

    A
    +

    &#66;

    B
    +

    &#67;

    C
    +

    &#68;

    D
    +

    &#69;

    E
    +

    &#70;

    F
    +

    &#71;

    G
    +

    &#72;

    H
    +

    &#73;

    I
    +

    &#74;

    J
    +

    &#75;

    K
    +

    &#76;

    L
    +

    &#77;

    M
    +

    &#78;

    N
    +

    &#79;

    O
    +

    &#80;

    P
    +

    &#81;

    Q
    +

    &#82;

    R
    +

    &#83;

    S
    +

    &#84;

    T
    +

    &#85;

    U
    +

    &#86;

    V
    +

    &#87;

    W
    +

    &#88;

    X
    +

    &#89;

    Y
    +

    &#90;

    Z
    +

    &#91;

    [
    +

    &#92;

    \
    +

    &#93;

    ]
    +

    &#94;

    ^
    +

    &#95;

    _
    +

    &#96;

    `
    +

    &#97;

    a
    +

    &#98;

    b
    +

    &#99;

    c
    +

    &#100;

    d
    +

    &#101;

    e
    +

    &#102;

    f
    +

    &#103;

    g
    +

    &#104;

    h
    +

    &#105;

    i
    +

    &#106;

    j
    +

    &#107;

    k
    +

    &#108;

    l
    +

    &#109;

    m
    +

    &#110;

    n
    +

    &#111;

    o
    +

    &#112;

    p
    +

    &#113;

    q
    +

    &#114;

    r
    +

    &#115;

    s
    +

    &#116;

    t
    +

    &#117;

    u
    +

    &#118;

    v
    +

    &#119;

    w
    +

    &#120;

    x
    +

    &#121;

    y
    +

    &#122;

    z
    +

    &#123;

    {
    +

    &#124;

    |
    +

    &#125;

    }
    +

    &#126;

    ~
    +

    &#160;

     
    +

    &#161;

    ¡
    +

    &#162;

    ¢
    +

    &#163;

    £
    +

    &#164;

    ¤
    +

    &#165;

    ¥
    +

    &#166;

    ¦
    +

    &#167;

    §
    +

    &#168;

    ¨
    +

    &#169;

    ©
    +

    &#170;

    ª
    +

    &#171;

    «
    +

    &#172;

    ¬
    +

    &#173;

    ­
    +

    &#174;

    ®
    +

    &#175;

    ¯
    +

    &#176;

    °
    +

    &#177;

    ±
    +

    &#178;

    ²
    +

    &#179;

    ³
    +

    &#180;

    ´
    +

    &#181;

    µ
    +

    &#182;

    +

    &#183;

    ·
    +

    &#184;

    ¸
    +

    &#185;

    ¹
    +

    &#186;

    º
    +

    &#187;

    »
    +

    &#188;

    ¼
    +

    &#189;

    ½
    +

    &#190;

    ¾
    +

    &#191;

    ¿
    +

    &#192;

    À
    +

    &#193;

    Á
    +

    &#194;

    Â
    +

    &#195;

    Ã
    +

    &#196;

    Ä
    +

    &#197;

    Å
    +

    &#198;

    Æ
    +

    &#199;

    Ç
    +

    &#200;

    È
    +

    &#201;

    É
    +

    &#202;

    Ê
    +

    &#203;

    Ë
    +

    &#204;

    Ì
    +

    &#205;

    Í
    +

    &#206;

    Î
    +

    &#207;

    Ï
    +

    &#208;

    Ð
    +

    &#209;

    Ñ
    +

    &#210;

    Ò
    +

    &#211;

    Ó
    +

    &#212;

    Ô
    +

    &#213;

    Õ
    +

    &#214;

    Ö
    +

    &#215;

    ×
    +

    &#216;

    Ø
    +

    &#217;

    Ù
    +

    &#218;

    Ú
    +

    &#219;

    Û
    +

    &#220;

    Ü
    +

    &#221;

    Ý
    +

    &#222;

    Þ
    +

    &#223;

    ß
    +

    &#224;

    à
    +

    &#225;

    á
    +

    &#226;

    â
    +

    &#227;

    ã
    +

    &#228;

    ä
    +

    &#229;

    å
    +

    &#230;

    æ
    +

    &#231;

    ç
    +

    &#232;

    è
    +

    &#233;

    é
    +

    &#234;

    ê
    +

    &#235;

    ë
    +

    &#236;

    ì
    +

    &#237;

    í
    +

    &#238;

    î
    +

    &#239;

    ï
    +

    &#240;

    ð
    +

    &#241;

    ñ
    +

    &#242;

    ò
    +

    &#243;

    ó
    +

    &#244;

    ô
    +

    &#245;

    õ
    +

    &#246;

    ö
    +

    &#247;

    ÷
    +

    &#248;

    ø
    +

    &#249;

    ù
    +

    &#250;

    ú
    +

    &#251;

    û
    +

    &#252;

    ü
    +

    &#253;

    ý
    +

    &#254;

    þ
    +

    &#255;

    ÿ
    +

    &#338;

    Œ
    +

    &#339;

    œ
    +

    &#376;

    Ÿ
    +

    &#710;

    ˆ
    +

    &#732;

    ˜
    +

    &#8192;

     
    +

    &#8193;

    +

    &#8194;

    +

    &#8195;

    +

    &#8196;

    +

    &#8197;

    +

    &#8198;

    +

    &#8199;

    +

    &#8200;

    +

    &#8201;

    +

    &#8202;

    +

    &#8208;

    +

    &#8209;

    +

    &#8210;

    +

    &#8211;

    +

    &#8212;

    +

    &#8216;

    +

    &#8217;

    +

    &#8218;

    +

    &#8220;

    +

    &#8221;

    +

    &#8222;

    +

    &#8226;

    +

    &#8230;

    +

    &#8239;

    +

    &#8249;

    +

    &#8250;

    +

    &#8287;

    +

    &#8364;

    +

    &#8482;

    +

    &#9724;

    +

    &#64257;

    +

    &#64258;

    +

    &#64259;

    +

    &#64260;

    +
    +
    + + +
    +
    + + +
    + +
    + +
    +
    +
    +

    Installing Webfonts

    + +

    Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

    + +

    1. Upload your webfonts

    +

    You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

    + +

    2. Include the webfont stylesheet

    +

    A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

    + + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

    We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

    + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

    3. Modify your own stylesheet

    +

    To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

    +p { font-family: 'WebFont', Arial, sans-serif; } + +

    4. Test

    +

    Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

    +
    + + +
    + +
    + +
    + +
    + + diff --git a/styles/opensans_webfontkit/opensans-semibold-webfont.eot b/styles/opensans_webfontkit/opensans-semibold-webfont.eot new file mode 100644 index 00000000..e4c246de Binary files /dev/null and b/styles/opensans_webfontkit/opensans-semibold-webfont.eot differ diff --git a/styles/opensans_webfontkit/opensans-semibold-webfont.svg b/styles/opensans_webfontkit/opensans-semibold-webfont.svg new file mode 100644 index 00000000..2704ab44 --- /dev/null +++ b/styles/opensans_webfontkit/opensans-semibold-webfont.svg @@ -0,0 +1,1824 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/styles/opensans_webfontkit/opensans-semibold-webfont.ttf b/styles/opensans_webfontkit/opensans-semibold-webfont.ttf new file mode 100644 index 00000000..d1e7fc2b Binary files /dev/null and b/styles/opensans_webfontkit/opensans-semibold-webfont.ttf differ diff --git a/styles/opensans_webfontkit/opensans-semibold-webfont.woff b/styles/opensans_webfontkit/opensans-semibold-webfont.woff new file mode 100644 index 00000000..e2b7cd43 Binary files /dev/null and b/styles/opensans_webfontkit/opensans-semibold-webfont.woff differ diff --git a/styles/opensans_webfontkit/opensans-semibold-webfont.woff2 b/styles/opensans_webfontkit/opensans-semibold-webfont.woff2 new file mode 100644 index 00000000..7a21b61c Binary files /dev/null and b/styles/opensans_webfontkit/opensans-semibold-webfont.woff2 differ diff --git a/styles/opensans_webfontkit/specimen_files/grid_12-825-55-15.css b/styles/opensans_webfontkit/specimen_files/grid_12-825-55-15.css new file mode 100644 index 00000000..3d6aef78 --- /dev/null +++ b/styles/opensans_webfontkit/specimen_files/grid_12-825-55-15.css @@ -0,0 +1,129 @@ +/*Notes about grid: +Columns: 12 +Grid Width: 825px +Column Width: 55px +Gutter Width: 15px +-------------------------------*/ + + + +.section {margin-bottom: 18px; +} +.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;} +.section {*zoom: 1;} + +.section .firstcolumn, +.section .firstcol {margin-left: 0;} + + +/* Border on left hand side of a column. */ +.border { + padding-left: 7px; + margin-left: 7px; + border-left: 1px solid #eee; +} + +/* Border with more whitespace, spans one column. */ +.colborder { + padding-left: 42px; + margin-left: 42px; + border-left: 1px solid #eee; +} + + + +/* The Grid Classes */ +.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12 +{margin-left: 15px;float: left;display: inline; overflow: hidden;} + + +.width1, .grid1, .span-1 {width: 55px;} +.width1_2cols,.grid1_2cols {width: 20px;} +.width1_3cols,.grid1_3cols {width: 8px;} +.width1_4cols,.grid1_4cols {width: 2px;} +.input_width1 {width: 49px;} + +.width2, .grid2, .span-2 {width: 125px;} +.width2_3cols,.grid2_3cols {width: 31px;} +.width2_4cols,.grid2_4cols {width: 20px;} +.input_width2 {width: 119px;} + +.width3, .grid3, .span-3 {width: 195px;} +.width3_2cols,.grid3_2cols {width: 90px;} +.width3_4cols,.grid3_4cols {width: 37px;} +.input_width3 {width: 189px;} + +.width4, .grid4, .span-4 {width: 265px;} +.width4_3cols,.grid4_3cols {width: 78px;} +.input_width4 {width: 259px;} + +.width5, .grid5, .span-5 {width: 335px;} +.width5_2cols,.grid5_2cols {width: 160px;} +.width5_3cols,.grid5_3cols {width: 101px;} +.width5_4cols,.grid5_4cols {width: 72px;} +.input_width5 {width: 329px;} + +.width6, .grid6, .span-6 {width: 405px;} +.width6_4cols,.grid6_4cols {width: 90px;} +.input_width6 {width: 399px;} + +.width7, .grid7, .span-7 {width: 475px;} +.width7_2cols,.grid7_2cols {width: 230px;} +.width7_3cols,.grid7_3cols {width: 148px;} +.width7_4cols,.grid7_4cols {width: 107px;} +.input_width7 {width: 469px;} + +.width8, .grid8, .span-8 {width: 545px;} +.width8_3cols,.grid8_3cols {width: 171px;} +.input_width8 {width: 539px;} + +.width9, .grid9, .span-9 {width: 615px;} +.width9_2cols,.grid9_2cols {width: 300px;} +.width9_4cols,.grid9_4cols {width: 142px;} +.input_width9 {width: 609px;} + +.width10, .grid10, .span-10 {width: 685px;} +.width10_3cols,.grid10_3cols {width: 218px;} +.width10_4cols,.grid10_4cols {width: 160px;} +.input_width10 {width: 679px;} + +.width11, .grid11, .span-11 {width: 755px;} +.width11_2cols,.grid11_2cols {width: 370px;} +.width11_3cols,.grid11_3cols {width: 241px;} +.width11_4cols,.grid11_4cols {width: 177px;} +.input_width11 {width: 749px;} + +.width12, .grid12, .span-12 {width: 825px;} +.input_width12 {width: 819px;} + +/* Subdivided grid spaces */ +.emptycols_left1, .prepend-1 {padding-left: 70px;} +.emptycols_right1, .append-1 {padding-right: 70px;} +.emptycols_left2, .prepend-2 {padding-left: 140px;} +.emptycols_right2, .append-2 {padding-right: 140px;} +.emptycols_left3, .prepend-3 {padding-left: 210px;} +.emptycols_right3, .append-3 {padding-right: 210px;} +.emptycols_left4, .prepend-4 {padding-left: 280px;} +.emptycols_right4, .append-4 {padding-right: 280px;} +.emptycols_left5, .prepend-5 {padding-left: 350px;} +.emptycols_right5, .append-5 {padding-right: 350px;} +.emptycols_left6, .prepend-6 {padding-left: 420px;} +.emptycols_right6, .append-6 {padding-right: 420px;} +.emptycols_left7, .prepend-7 {padding-left: 490px;} +.emptycols_right7, .append-7 {padding-right: 490px;} +.emptycols_left8, .prepend-8 {padding-left: 560px;} +.emptycols_right8, .append-8 {padding-right: 560px;} +.emptycols_left9, .prepend-9 {padding-left: 630px;} +.emptycols_right9, .append-9 {padding-right: 630px;} +.emptycols_left10, .prepend-10 {padding-left: 700px;} +.emptycols_right10, .append-10 {padding-right: 700px;} +.emptycols_left11, .prepend-11 {padding-left: 770px;} +.emptycols_right11, .append-11 {padding-right: 770px;} +.pull-1 {margin-left: -70px;} +.push-1 {margin-right: -70px;margin-left: 18px;float: right;} +.pull-2 {margin-left: -140px;} +.push-2 {margin-right: -140px;margin-left: 18px;float: right;} +.pull-3 {margin-left: -210px;} +.push-3 {margin-right: -210px;margin-left: 18px;float: right;} +.pull-4 {margin-left: -280px;} +.push-4 {margin-right: -280px;margin-left: 18px;float: right;} \ No newline at end of file diff --git a/styles/opensans_webfontkit/specimen_files/specimen_stylesheet.css b/styles/opensans_webfontkit/specimen_files/specimen_stylesheet.css new file mode 100644 index 00000000..aecc43c3 --- /dev/null +++ b/styles/opensans_webfontkit/specimen_files/specimen_stylesheet.css @@ -0,0 +1,396 @@ +@import url('grid_12-825-55-15.css'); + +/* + CSS Reset by Eric Meyer - Released under Public Domain + http://meyerweb.com/eric/tools/css/reset/ +*/ +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, font, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, table, +caption, tbody, tfoot, thead, tr, th, td + {margin: 0;padding: 0;border: 0;outline: 0; + font-size: 100%;vertical-align: baseline; + background: transparent;} +body {line-height: 1;} +ol, ul {list-style: none;} +blockquote, q {quotes: none;} +blockquote:before, blockquote:after, +q:before, q:after {content: ''; content: none;} +:focus {outline: 0;} +ins {text-decoration: none;} +del {text-decoration: line-through;} +table {border-collapse: collapse;border-spacing: 0;} + + + + +body { + color: #000; + background-color: #dcdcdc; +} + +a { + text-decoration: none; + color: #1883ba; +} + +h1{ + font-size: 32px; + font-weight: normal; + font-style: normal; + margin-bottom: 18px; +} + +h2{ + font-size: 18px; +} + +#container { + width: 865px; + margin: 0px auto; +} + + +#header { + padding: 20px; + font-size: 36px; + background-color: #000; + color: #fff; +} + +#header span { + color: #666; +} +#main_content { + background-color: #fff; + padding: 60px 20px 20px; +} + + +#footer p { + margin: 0; + padding-top: 10px; + padding-bottom: 50px; + color: #333; + font: 10px Arial, sans-serif; +} + +.tabs { + width: 100%; + height: 31px; + background-color: #444; +} +.tabs li { + float: left; + margin: 0; + overflow: hidden; + background-color: #444; +} +.tabs li a { + display: block; + color: #fff; + text-decoration: none; + font: bold 11px/11px 'Arial'; + text-transform: uppercase; + padding: 10px 15px; + border-right: 1px solid #fff; +} + +.tabs li a:hover { + background-color: #00b3ff; + +} + +.tabs li.active a { + color: #000; + background-color: #fff; +} + + + +div.huge { + + font-size: 300px; + line-height: 1em; + padding: 0; + letter-spacing: -.02em; + overflow: hidden; +} +div.glyph_range { + font-size: 72px; + line-height: 1.1em; +} + +.size10{ font-size: 10px; } +.size11{ font-size: 11px; } +.size12{ font-size: 12px; } +.size13{ font-size: 13px; } +.size14{ font-size: 14px; } +.size16{ font-size: 16px; } +.size18{ font-size: 18px; } +.size20{ font-size: 20px; } +.size24{ font-size: 24px; } +.size30{ font-size: 30px; } +.size36{ font-size: 36px; } +.size48{ font-size: 48px; } +.size60{ font-size: 60px; } +.size72{ font-size: 72px; } +.size90{ font-size: 90px; } + + +.psample_row1 { height: 120px;} +.psample_row1 { height: 120px;} +.psample_row2 { height: 160px;} +.psample_row3 { height: 160px;} +.psample_row4 { height: 160px;} + +.psample { + overflow: hidden; + position: relative; +} +.psample p { + line-height: 1.3em; + display: block; + overflow: hidden; + margin: 0; +} + +.psample span { + margin-right: .5em; +} + +.white_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==); + position: absolute; + bottom: 0; +} +.black_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC); + position: absolute; + bottom: 0; +} +.fullreverse { + background: #000 !important; + color: #fff !important; + margin-left: -20px; + padding-left: 20px; + margin-right: -20px; + padding-right: 20px; + padding: 20px; + margin-bottom:0; +} + + +.sample_table td { + padding-top: 3px; + padding-bottom:5px; + padding-left: 5px; + vertical-align: middle; + line-height: 1.2em; +} + +.sample_table td:first-child { + background-color: #eee; + text-align: right; + padding-right: 5px; + padding-left: 0; + padding: 5px; + font: 11px/12px "Courier New", Courier, mono; +} + +code { + white-space: pre; + background-color: #eee; + display: block; + padding: 10px; + margin-bottom: 18px; + overflow: auto; +} + + +.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;} + +.box { + padding: 18px; + margin-bottom: 18px; + background: #eee; +} + +.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;} + +#bodycomparison { + position: relative; + overflow: hidden; + font-size: 72px; + height: 90px; + white-space: nowrap; +} + +#bodycomparison div{ + font-size: 72px; + line-height: 90px; + display: inline; + margin: 0 15px 0 0; + padding: 0; +} + +#bodycomparison div span{ + font: 10px Arial; + position: absolute; + left: 0; +} +#xheight { + float: none; + position: absolute; + color: #d9f3ff; + font-size: 72px; + line-height: 90px; +} + +.fontbody { + position: relative; +} +.arialbody{ + font-family: Arial; + position: relative; +} +.verdanabody{ + font-family: Verdana; + position: relative; +} +.georgiabody{ + font-family: Georgia; + position: relative; +} + +/* @group Layout page + */ + +#layout h1 { + font-size: 36px; + line-height: 42px; + font-weight: normal; + font-style: normal; +} + +#layout h2 { + font-size: 24px; + line-height: 23px; + font-weight: normal; + font-style: normal; +} + +#layout h3 { + font-size: 22px; + line-height: 1.4em; + margin-top: 1em; + font-weight: normal; + font-style: normal; +} + + +#layout p.byline { + font-size: 12px; + margin-top: 18px; + line-height: 12px; + margin-bottom: 0; +} +#layout p { + font-size: 14px; + line-height: 21px; + margin-bottom: .5em; +} + +#layout p.large{ + font-size: 18px; + line-height: 26px; +} + +#layout .sidebar p{ + font-size: 12px; + line-height: 1.4em; +} + +#layout p.caption { + font-size: 10px; + margin-top: -16px; + margin-bottom: 18px; +} + +/* @end */ + +/* @group Glyphs */ + +#glyph_chart div{ + background-color: #d9f3ff; + color: black; + float: left; + font-size: 36px; + height: 1.2em; + line-height: 1.2em; + margin-bottom: 1px; + margin-right: 1px; + text-align: center; + width: 1.2em; + position: relative; + padding: .6em .2em .2em; +} + +#glyph_chart div p { + position: absolute; + left: 0; + top: 0; + display: block; + text-align: center; + font: bold 9px Arial, sans-serif; + background-color: #3a768f; + width: 100%; + color: #fff; + padding: 2px 0; +} + + +#glyphs h1 { + font-family: Arial, sans-serif; +} +/* @end */ + +/* @group Installing */ + +#installing { + font: 13px Arial, sans-serif; +} + +#installing p, +#glyphs p{ + line-height: 1.2em; + margin-bottom: 18px; + font: 13px Arial, sans-serif; +} + + + +#installing h3{ + font-size: 15px; + margin-top: 18px; +} + +/* @end */ + +#rendering h1 { + font-family: Arial, sans-serif; +} +.render_table td { + font: 11px "Courier New", Courier, mono; + vertical-align: middle; +} + + diff --git a/tabs/setup.html b/tabs/setup.html index 9168ebf7..77c7ff07 100644 --- a/tabs/setup.html +++ b/tabs/setup.html @@ -57,3 +57,5 @@
+ +