Clean up and Bootstrap added to core
|
@ -6,7 +6,7 @@ AddDefaultCharset UTF-8
|
|||
RewriteEngine on
|
||||
|
||||
# Base directory
|
||||
#RewriteBase /
|
||||
RewriteBase /
|
||||
|
||||
# Deny direct access to .txt files
|
||||
RewriteRule ^bl-content/(.*)\.txt$ - [R=404,L]
|
||||
|
|
|
@ -1,123 +0,0 @@
|
|||
<?php defined('BLUDIT') or die('Bludit CMS.');
|
||||
|
||||
// ============================================================================
|
||||
// Check role
|
||||
// ============================================================================
|
||||
|
||||
// ============================================================================
|
||||
// Functions
|
||||
// ============================================================================
|
||||
|
||||
function checkPost($args)
|
||||
{
|
||||
global $Security;
|
||||
global $Language;
|
||||
global $dbUsers;
|
||||
global $Site;
|
||||
|
||||
if($Security->isBlocked()) {
|
||||
Alert::set($Language->g('IP address has been blocked').'<br>'.$Language->g('Try again in a few minutes'));
|
||||
return false;
|
||||
}
|
||||
|
||||
// Remove illegal characters from email
|
||||
$email = Sanitize::email($args['email']);
|
||||
|
||||
if(Valid::email($email))
|
||||
{
|
||||
// Get username associated to an email.
|
||||
$username = $dbUsers->getByEmail($email);
|
||||
if($username!=false)
|
||||
{
|
||||
// Generate the token and the token expiration date.
|
||||
$token = $dbUsers->setTokenEmail($username);
|
||||
|
||||
// ---- EMAIL ----
|
||||
$link = $Site->url().'admin/login-email?tokenEmail='.$token.'&username='.$username;
|
||||
$subject = $Language->g('BLUDIT Login access code');
|
||||
$message = Text::replaceAssoc(
|
||||
array(
|
||||
'{{WEBSITE_NAME}}'=>$Site->title(),
|
||||
'{{LINK}}'=>'<a href="'.$link.'">'.$link.'</a>'
|
||||
),
|
||||
$Language->g('email-notification-login-access-code')
|
||||
);
|
||||
|
||||
$sent = Email::send(array(
|
||||
'from'=>$Site->emailFrom(),
|
||||
'fromName'=>$Site->title(),
|
||||
'to'=>$email,
|
||||
'subject'=>$subject,
|
||||
'message'=>$message
|
||||
));
|
||||
|
||||
if($sent) {
|
||||
Alert::set($Language->g('check-your-inbox-for-your-login-access-code'));
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
Alert::set($Language->g('There was a problem sending the email'));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Bruteforce protection, add IP to blacklist.
|
||||
$Security->addLoginFail();
|
||||
Alert::set($Language->g('check-your-inbox-for-your-login-access-code'));
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
function checkGet($args)
|
||||
{
|
||||
global $Security;
|
||||
global $Language;
|
||||
global $Login;
|
||||
|
||||
if($Security->isBlocked()) {
|
||||
Alert::set($Language->g('IP address has been blocked').'<br>'.$Language->g('Try again in a few minutes'));
|
||||
return false;
|
||||
}
|
||||
|
||||
// Verify User sanitize the input
|
||||
if( $Login->verifyUserByToken($args['username'], $args['tokenEmail']) )
|
||||
{
|
||||
// Renew the tokenCRFS. This token will be the same inside the session for multiple forms.
|
||||
$Security->generateTokenCSRF();
|
||||
|
||||
Redirect::page('admin', 'dashboard');
|
||||
return true;
|
||||
}
|
||||
|
||||
// Bruteforce protection, add IP to blacklist.
|
||||
$Security->addToBlacklist();
|
||||
return false;
|
||||
}
|
||||
|
||||
// ============================================================================
|
||||
// Main before POST
|
||||
// ============================================================================
|
||||
|
||||
// ============================================================================
|
||||
// GET Method
|
||||
// ============================================================================
|
||||
|
||||
if( !empty($_GET['tokenEmail']) && !empty($_GET['username']) )
|
||||
{
|
||||
checkGet($_GET);
|
||||
}
|
||||
|
||||
|
||||
// ============================================================================
|
||||
// POST Method
|
||||
// ============================================================================
|
||||
|
||||
if( $_SERVER['REQUEST_METHOD'] == 'POST' )
|
||||
{
|
||||
checkPost($_POST);
|
||||
}
|
||||
|
||||
// ============================================================================
|
||||
// Main after POST
|
||||
// ============================================================================
|
|
@ -1,330 +0,0 @@
|
|||
/*!
|
||||
* Bootstrap Reboot v4.0.0 (https://getbootstrap.com)
|
||||
* Copyright 2011-2018 The Bootstrap Authors
|
||||
* Copyright 2011-2018 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||
*/
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
font-family: sans-serif;
|
||||
line-height: 1.15;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-ms-text-size-adjust: 100%;
|
||||
-ms-overflow-style: scrollbar;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
@-ms-viewport {
|
||||
width: device-width;
|
||||
}
|
||||
|
||||
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
|
||||
display: block;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||
font-size: 1rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.5;
|
||||
color: #212529;
|
||||
text-align: left;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
[tabindex="-1"]:focus {
|
||||
outline: 0 !important;
|
||||
}
|
||||
|
||||
hr {
|
||||
box-sizing: content-box;
|
||||
height: 0;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
abbr[title],
|
||||
abbr[data-original-title] {
|
||||
text-decoration: underline;
|
||||
-webkit-text-decoration: underline dotted;
|
||||
text-decoration: underline dotted;
|
||||
cursor: help;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
address {
|
||||
margin-bottom: 1rem;
|
||||
font-style: normal;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul,
|
||||
dl {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
ol ol,
|
||||
ul ul,
|
||||
ol ul,
|
||||
ul ol {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
dt {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin-bottom: .5rem;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
sub,
|
||||
sup {
|
||||
position: relative;
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -.5em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #007bff;
|
||||
text-decoration: none;
|
||||
background-color: transparent;
|
||||
-webkit-text-decoration-skip: objects;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #0056b3;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a:not([href]):not([tabindex]) {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:not([href]):not([tabindex]):focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
pre,
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: monospace, monospace;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
pre {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
overflow: auto;
|
||||
-ms-overflow-style: scrollbar;
|
||||
}
|
||||
|
||||
figure {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
img {
|
||||
vertical-align: middle;
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
caption {
|
||||
padding-top: 0.75rem;
|
||||
padding-bottom: 0.75rem;
|
||||
color: #6c757d;
|
||||
text-align: left;
|
||||
caption-side: bottom;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: inherit;
|
||||
}
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
margin-bottom: .5rem;
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
button:focus {
|
||||
outline: 1px dotted;
|
||||
outline: 5px auto -webkit-focus-ring-color;
|
||||
}
|
||||
|
||||
input,
|
||||
button,
|
||||
select,
|
||||
optgroup,
|
||||
textarea {
|
||||
margin: 0;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
button,
|
||||
input {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
button,
|
||||
html [type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
button::-moz-focus-inner,
|
||||
[type="button"]::-moz-focus-inner,
|
||||
[type="reset"]::-moz-focus-inner,
|
||||
[type="submit"]::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
input[type="radio"],
|
||||
input[type="checkbox"] {
|
||||
box-sizing: border-box;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
input[type="date"],
|
||||
input[type="time"],
|
||||
input[type="datetime-local"],
|
||||
input[type="month"] {
|
||||
-webkit-appearance: listbox;
|
||||
}
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
legend {
|
||||
display: block;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
padding: 0;
|
||||
margin-bottom: .5rem;
|
||||
font-size: 1.5rem;
|
||||
line-height: inherit;
|
||||
color: inherit;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
[type="number"]::-webkit-inner-spin-button,
|
||||
[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
[type="search"] {
|
||||
outline-offset: -2px;
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
[type="search"]::-webkit-search-cancel-button,
|
||||
[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
font: inherit;
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
output {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
[hidden] {
|
||||
display: none !important;
|
||||
}
|
||||
/*# sourceMappingURL=bootstrap-reboot.css.map */
|
|
@ -1,8 +0,0 @@
|
|||
/*!
|
||||
* Bootstrap Reboot v4.0.0 (https://getbootstrap.com)
|
||||
* Copyright 2011-2018 The Bootstrap Authors
|
||||
* Copyright 2011-2018 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||
*/*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}
|
||||
/*# sourceMappingURL=bootstrap-reboot.min.css.map */
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 54 KiB |
|
@ -1 +0,0 @@
|
|||
.DS_Store
|
|
@ -1,86 +0,0 @@
|
|||
SIL OPEN FONT LICENSE Version 1.1
|
||||
|
||||
Copyright (c) 2014 Waybury
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
@ -1,21 +0,0 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2014 Waybury
|
||||
|
||||
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.
|
|
@ -1,114 +0,0 @@
|
|||
[Open Iconic v1.1.1](http://useiconic.com/open)
|
||||
===========
|
||||
|
||||
### Open Iconic is the open source sibling of [Iconic](http://useiconic.com). It is a hyper-legible collection of 223 icons with a tiny footprint—ready to use with Bootstrap and Foundation. [View the collection](http://useiconic.com/open#icons)
|
||||
|
||||
|
||||
|
||||
## What's in Open Iconic?
|
||||
|
||||
* 223 icons designed to be legible down to 8 pixels
|
||||
* Super-light SVG files - 61.8 for the entire set
|
||||
* SVG sprite—the modern replacement for icon fonts
|
||||
* Webfont (EOT, OTF, SVG, TTF, WOFF), PNG and WebP formats
|
||||
* Webfont stylesheets (including versions for Bootstrap and Foundation) in CSS, LESS, SCSS and Stylus formats
|
||||
* PNG and WebP raster images in 8px, 16px, 24px, 32px, 48px and 64px.
|
||||
|
||||
|
||||
## Getting Started
|
||||
|
||||
#### For code samples and everything else you need to get started with Open Iconic, check out our [Icons](http://useiconic.com/open#icons) and [Reference](http://useiconic.com/open#reference) sections.
|
||||
|
||||
### General Usage
|
||||
|
||||
#### Using Open Iconic's SVGs
|
||||
|
||||
We like SVGs and we think they're the way to display icons on the web. Since Open Iconic are just basic SVGs, we suggest you display them like you would any other image (don't forget the `alt` attribute).
|
||||
|
||||
```
|
||||
<img src="/open-iconic/svg/icon-name.svg" alt="icon name">
|
||||
```
|
||||
|
||||
#### Using Open Iconic's SVG Sprite
|
||||
|
||||
Open Iconic also comes in a SVG sprite which allows you to display all the icons in the set with a single request. It's like an icon font, without being a hack.
|
||||
|
||||
Adding an icon from an SVG sprite is a little different than what you're used to, but it's still a piece of cake. *Tip: To make your icons easily style able, we suggest adding a general class to the* `<svg>` *tag and a unique class name for each different icon in the* `<use>` *tag.*
|
||||
|
||||
```
|
||||
<svg class="icon">
|
||||
<use xlink:href="open-iconic.svg#account-login" class="icon-account-login"></use>
|
||||
</svg>
|
||||
```
|
||||
|
||||
Sizing icons only needs basic CSS. All the icons are in a square format, so just set the `<svg>` tag with equal width and height dimensions.
|
||||
|
||||
```
|
||||
.icon {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
```
|
||||
|
||||
Coloring icons is even easier. All you need to do is set the `fill` rule on the `<use>` tag.
|
||||
|
||||
```
|
||||
.icon-account-login {
|
||||
fill: #f00;
|
||||
}
|
||||
```
|
||||
|
||||
To learn more about SVG Sprites, read [Chris Coyier's guide](http://css-tricks.com/svg-sprites-use-better-icon-fonts/).
|
||||
|
||||
#### Using Open Iconic's Icon Font...
|
||||
|
||||
|
||||
##### …with Bootstrap
|
||||
|
||||
You can find our Bootstrap stylesheets in `font/css/open-iconic-bootstrap.{css, less, scss, styl}`
|
||||
|
||||
|
||||
```
|
||||
<link href="/open-iconic/font/css/open-iconic-bootstrap.css" rel="stylesheet">
|
||||
```
|
||||
|
||||
|
||||
```
|
||||
<span class="oi oi-icon-name" title="icon name" aria-hidden="true"></span>
|
||||
```
|
||||
|
||||
##### …with Foundation
|
||||
|
||||
You can find our Foundation stylesheets in `font/css/open-iconic-foundation.{css, less, scss, styl}`
|
||||
|
||||
```
|
||||
<link href="/open-iconic/font/css/open-iconic-foundation.css" rel="stylesheet">
|
||||
```
|
||||
|
||||
|
||||
```
|
||||
<span class="fi-icon-name" title="icon name" aria-hidden="true"></span>
|
||||
```
|
||||
|
||||
##### …on its own
|
||||
|
||||
You can find our default stylesheets in `font/css/open-iconic.{css, less, scss, styl}`
|
||||
|
||||
```
|
||||
<link href="/open-iconic/font/css/open-iconic.css" rel="stylesheet">
|
||||
```
|
||||
|
||||
```
|
||||
<span class="oi" data-glyph="icon-name" title="icon name" aria-hidden="true"></span>
|
||||
```
|
||||
|
||||
|
||||
## License
|
||||
|
||||
### Icons
|
||||
|
||||
All code (including SVG markup) is under the [MIT License](http://opensource.org/licenses/MIT).
|
||||
|
||||
### Fonts
|
||||
|
||||
All fonts are under the [SIL Licensed](http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web).
|
|
@ -1,21 +0,0 @@
|
|||
{
|
||||
"name": "open-iconic",
|
||||
"description": "An open source icon set in SVG, webfont and raster formats",
|
||||
"version": "1.1.1",
|
||||
"license": [
|
||||
"MIT",
|
||||
"OFL-1.1"
|
||||
],
|
||||
"homepage": "https://useiconic.com/open",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/iconic/open-iconic.git"
|
||||
},
|
||||
"main": [
|
||||
"./sprite/open-iconic.min.svg"
|
||||
],
|
||||
"ignore": [
|
||||
"*.json",
|
||||
"*.md"
|
||||
]
|
||||
}
|
|
@ -1,952 +0,0 @@
|
|||
/* Bootstrap */
|
||||
|
||||
@font-face {
|
||||
font-family: 'Icons';
|
||||
src: url('../fonts/open-iconic.eot');
|
||||
src: url('../fonts/open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('../fonts/open-iconic.woff') format('woff'), url('../fonts/open-iconic.ttf') format('truetype'), url('../fonts/open-iconic.otf') format('opentype'), url('../fonts/open-iconic.svg#iconic-sm') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.oi {
|
||||
position: relative;
|
||||
top: 1px;
|
||||
display: inline-block;
|
||||
speak:none;
|
||||
font-family: 'Icons';
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.oi:empty:before {
|
||||
width: 1em;
|
||||
text-align: center;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
.oi.oi-align-center:before {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.oi.oi-align-left:before {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.oi.oi-align-right:before {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
|
||||
.oi.oi-flip-horizontal:before {
|
||||
-webkit-transform: scale(-1, 1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(-1, 1);
|
||||
}
|
||||
|
||||
.oi.oi-flip-vertical:before {
|
||||
-webkit-transform: scale(1, -1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(1, -1);
|
||||
}
|
||||
|
||||
.oi.oi-flip-horizontal-vertical:before {
|
||||
-webkit-transform: scale(-1, -1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(-1, -1);
|
||||
}
|
||||
|
||||
|
||||
.oi-account-login:before {
|
||||
content:'\e000';
|
||||
}
|
||||
|
||||
.oi-account-logout:before {
|
||||
content:'\e001';
|
||||
}
|
||||
|
||||
.oi-action-redo:before {
|
||||
content:'\e002';
|
||||
}
|
||||
|
||||
.oi-action-undo:before {
|
||||
content:'\e003';
|
||||
}
|
||||
|
||||
.oi-align-center:before {
|
||||
content:'\e004';
|
||||
}
|
||||
|
||||
.oi-align-left:before {
|
||||
content:'\e005';
|
||||
}
|
||||
|
||||
.oi-align-right:before {
|
||||
content:'\e006';
|
||||
}
|
||||
|
||||
.oi-aperture:before {
|
||||
content:'\e007';
|
||||
}
|
||||
|
||||
.oi-arrow-bottom:before {
|
||||
content:'\e008';
|
||||
}
|
||||
|
||||
.oi-arrow-circle-bottom:before {
|
||||
content:'\e009';
|
||||
}
|
||||
|
||||
.oi-arrow-circle-left:before {
|
||||
content:'\e00a';
|
||||
}
|
||||
|
||||
.oi-arrow-circle-right:before {
|
||||
content:'\e00b';
|
||||
}
|
||||
|
||||
.oi-arrow-circle-top:before {
|
||||
content:'\e00c';
|
||||
}
|
||||
|
||||
.oi-arrow-left:before {
|
||||
content:'\e00d';
|
||||
}
|
||||
|
||||
.oi-arrow-right:before {
|
||||
content:'\e00e';
|
||||
}
|
||||
|
||||
.oi-arrow-thick-bottom:before {
|
||||
content:'\e00f';
|
||||
}
|
||||
|
||||
.oi-arrow-thick-left:before {
|
||||
content:'\e010';
|
||||
}
|
||||
|
||||
.oi-arrow-thick-right:before {
|
||||
content:'\e011';
|
||||
}
|
||||
|
||||
.oi-arrow-thick-top:before {
|
||||
content:'\e012';
|
||||
}
|
||||
|
||||
.oi-arrow-top:before {
|
||||
content:'\e013';
|
||||
}
|
||||
|
||||
.oi-audio-spectrum:before {
|
||||
content:'\e014';
|
||||
}
|
||||
|
||||
.oi-audio:before {
|
||||
content:'\e015';
|
||||
}
|
||||
|
||||
.oi-badge:before {
|
||||
content:'\e016';
|
||||
}
|
||||
|
||||
.oi-ban:before {
|
||||
content:'\e017';
|
||||
}
|
||||
|
||||
.oi-bar-chart:before {
|
||||
content:'\e018';
|
||||
}
|
||||
|
||||
.oi-basket:before {
|
||||
content:'\e019';
|
||||
}
|
||||
|
||||
.oi-battery-empty:before {
|
||||
content:'\e01a';
|
||||
}
|
||||
|
||||
.oi-battery-full:before {
|
||||
content:'\e01b';
|
||||
}
|
||||
|
||||
.oi-beaker:before {
|
||||
content:'\e01c';
|
||||
}
|
||||
|
||||
.oi-bell:before {
|
||||
content:'\e01d';
|
||||
}
|
||||
|
||||
.oi-bluetooth:before {
|
||||
content:'\e01e';
|
||||
}
|
||||
|
||||
.oi-bold:before {
|
||||
content:'\e01f';
|
||||
}
|
||||
|
||||
.oi-bolt:before {
|
||||
content:'\e020';
|
||||
}
|
||||
|
||||
.oi-book:before {
|
||||
content:'\e021';
|
||||
}
|
||||
|
||||
.oi-bookmark:before {
|
||||
content:'\e022';
|
||||
}
|
||||
|
||||
.oi-box:before {
|
||||
content:'\e023';
|
||||
}
|
||||
|
||||
.oi-briefcase:before {
|
||||
content:'\e024';
|
||||
}
|
||||
|
||||
.oi-british-pound:before {
|
||||
content:'\e025';
|
||||
}
|
||||
|
||||
.oi-browser:before {
|
||||
content:'\e026';
|
||||
}
|
||||
|
||||
.oi-brush:before {
|
||||
content:'\e027';
|
||||
}
|
||||
|
||||
.oi-bug:before {
|
||||
content:'\e028';
|
||||
}
|
||||
|
||||
.oi-bullhorn:before {
|
||||
content:'\e029';
|
||||
}
|
||||
|
||||
.oi-calculator:before {
|
||||
content:'\e02a';
|
||||
}
|
||||
|
||||
.oi-calendar:before {
|
||||
content:'\e02b';
|
||||
}
|
||||
|
||||
.oi-camera-slr:before {
|
||||
content:'\e02c';
|
||||
}
|
||||
|
||||
.oi-caret-bottom:before {
|
||||
content:'\e02d';
|
||||
}
|
||||
|
||||
.oi-caret-left:before {
|
||||
content:'\e02e';
|
||||
}
|
||||
|
||||
.oi-caret-right:before {
|
||||
content:'\e02f';
|
||||
}
|
||||
|
||||
.oi-caret-top:before {
|
||||
content:'\e030';
|
||||
}
|
||||
|
||||
.oi-cart:before {
|
||||
content:'\e031';
|
||||
}
|
||||
|
||||
.oi-chat:before {
|
||||
content:'\e032';
|
||||
}
|
||||
|
||||
.oi-check:before {
|
||||
content:'\e033';
|
||||
}
|
||||
|
||||
.oi-chevron-bottom:before {
|
||||
content:'\e034';
|
||||
}
|
||||
|
||||
.oi-chevron-left:before {
|
||||
content:'\e035';
|
||||
}
|
||||
|
||||
.oi-chevron-right:before {
|
||||
content:'\e036';
|
||||
}
|
||||
|
||||
.oi-chevron-top:before {
|
||||
content:'\e037';
|
||||
}
|
||||
|
||||
.oi-circle-check:before {
|
||||
content:'\e038';
|
||||
}
|
||||
|
||||
.oi-circle-x:before {
|
||||
content:'\e039';
|
||||
}
|
||||
|
||||
.oi-clipboard:before {
|
||||
content:'\e03a';
|
||||
}
|
||||
|
||||
.oi-clock:before {
|
||||
content:'\e03b';
|
||||
}
|
||||
|
||||
.oi-cloud-download:before {
|
||||
content:'\e03c';
|
||||
}
|
||||
|
||||
.oi-cloud-upload:before {
|
||||
content:'\e03d';
|
||||
}
|
||||
|
||||
.oi-cloud:before {
|
||||
content:'\e03e';
|
||||
}
|
||||
|
||||
.oi-cloudy:before {
|
||||
content:'\e03f';
|
||||
}
|
||||
|
||||
.oi-code:before {
|
||||
content:'\e040';
|
||||
}
|
||||
|
||||
.oi-cog:before {
|
||||
content:'\e041';
|
||||
}
|
||||
|
||||
.oi-collapse-down:before {
|
||||
content:'\e042';
|
||||
}
|
||||
|
||||
.oi-collapse-left:before {
|
||||
content:'\e043';
|
||||
}
|
||||
|
||||
.oi-collapse-right:before {
|
||||
content:'\e044';
|
||||
}
|
||||
|
||||
.oi-collapse-up:before {
|
||||
content:'\e045';
|
||||
}
|
||||
|
||||
.oi-command:before {
|
||||
content:'\e046';
|
||||
}
|
||||
|
||||
.oi-comment-square:before {
|
||||
content:'\e047';
|
||||
}
|
||||
|
||||
.oi-compass:before {
|
||||
content:'\e048';
|
||||
}
|
||||
|
||||
.oi-contrast:before {
|
||||
content:'\e049';
|
||||
}
|
||||
|
||||
.oi-copywriting:before {
|
||||
content:'\e04a';
|
||||
}
|
||||
|
||||
.oi-credit-card:before {
|
||||
content:'\e04b';
|
||||
}
|
||||
|
||||
.oi-crop:before {
|
||||
content:'\e04c';
|
||||
}
|
||||
|
||||
.oi-dashboard:before {
|
||||
content:'\e04d';
|
||||
}
|
||||
|
||||
.oi-data-transfer-download:before {
|
||||
content:'\e04e';
|
||||
}
|
||||
|
||||
.oi-data-transfer-upload:before {
|
||||
content:'\e04f';
|
||||
}
|
||||
|
||||
.oi-delete:before {
|
||||
content:'\e050';
|
||||
}
|
||||
|
||||
.oi-dial:before {
|
||||
content:'\e051';
|
||||
}
|
||||
|
||||
.oi-document:before {
|
||||
content:'\e052';
|
||||
}
|
||||
|
||||
.oi-dollar:before {
|
||||
content:'\e053';
|
||||
}
|
||||
|
||||
.oi-double-quote-sans-left:before {
|
||||
content:'\e054';
|
||||
}
|
||||
|
||||
.oi-double-quote-sans-right:before {
|
||||
content:'\e055';
|
||||
}
|
||||
|
||||
.oi-double-quote-serif-left:before {
|
||||
content:'\e056';
|
||||
}
|
||||
|
||||
.oi-double-quote-serif-right:before {
|
||||
content:'\e057';
|
||||
}
|
||||
|
||||
.oi-droplet:before {
|
||||
content:'\e058';
|
||||
}
|
||||
|
||||
.oi-eject:before {
|
||||
content:'\e059';
|
||||
}
|
||||
|
||||
.oi-elevator:before {
|
||||
content:'\e05a';
|
||||
}
|
||||
|
||||
.oi-ellipses:before {
|
||||
content:'\e05b';
|
||||
}
|
||||
|
||||
.oi-envelope-closed:before {
|
||||
content:'\e05c';
|
||||
}
|
||||
|
||||
.oi-envelope-open:before {
|
||||
content:'\e05d';
|
||||
}
|
||||
|
||||
.oi-euro:before {
|
||||
content:'\e05e';
|
||||
}
|
||||
|
||||
.oi-excerpt:before {
|
||||
content:'\e05f';
|
||||
}
|
||||
|
||||
.oi-expand-down:before {
|
||||
content:'\e060';
|
||||
}
|
||||
|
||||
.oi-expand-left:before {
|
||||
content:'\e061';
|
||||
}
|
||||
|
||||
.oi-expand-right:before {
|
||||
content:'\e062';
|
||||
}
|
||||
|
||||
.oi-expand-up:before {
|
||||
content:'\e063';
|
||||
}
|
||||
|
||||
.oi-external-link:before {
|
||||
content:'\e064';
|
||||
}
|
||||
|
||||
.oi-eye:before {
|
||||
content:'\e065';
|
||||
}
|
||||
|
||||
.oi-eyedropper:before {
|
||||
content:'\e066';
|
||||
}
|
||||
|
||||
.oi-file:before {
|
||||
content:'\e067';
|
||||
}
|
||||
|
||||
.oi-fire:before {
|
||||
content:'\e068';
|
||||
}
|
||||
|
||||
.oi-flag:before {
|
||||
content:'\e069';
|
||||
}
|
||||
|
||||
.oi-flash:before {
|
||||
content:'\e06a';
|
||||
}
|
||||
|
||||
.oi-folder:before {
|
||||
content:'\e06b';
|
||||
}
|
||||
|
||||
.oi-fork:before {
|
||||
content:'\e06c';
|
||||
}
|
||||
|
||||
.oi-fullscreen-enter:before {
|
||||
content:'\e06d';
|
||||
}
|
||||
|
||||
.oi-fullscreen-exit:before {
|
||||
content:'\e06e';
|
||||
}
|
||||
|
||||
.oi-globe:before {
|
||||
content:'\e06f';
|
||||
}
|
||||
|
||||
.oi-graph:before {
|
||||
content:'\e070';
|
||||
}
|
||||
|
||||
.oi-grid-four-up:before {
|
||||
content:'\e071';
|
||||
}
|
||||
|
||||
.oi-grid-three-up:before {
|
||||
content:'\e072';
|
||||
}
|
||||
|
||||
.oi-grid-two-up:before {
|
||||
content:'\e073';
|
||||
}
|
||||
|
||||
.oi-hard-drive:before {
|
||||
content:'\e074';
|
||||
}
|
||||
|
||||
.oi-header:before {
|
||||
content:'\e075';
|
||||
}
|
||||
|
||||
.oi-headphones:before {
|
||||
content:'\e076';
|
||||
}
|
||||
|
||||
.oi-heart:before {
|
||||
content:'\e077';
|
||||
}
|
||||
|
||||
.oi-home:before {
|
||||
content:'\e078';
|
||||
}
|
||||
|
||||
.oi-image:before {
|
||||
content:'\e079';
|
||||
}
|
||||
|
||||
.oi-inbox:before {
|
||||
content:'\e07a';
|
||||
}
|
||||
|
||||
.oi-infinity:before {
|
||||
content:'\e07b';
|
||||
}
|
||||
|
||||
.oi-info:before {
|
||||
content:'\e07c';
|
||||
}
|
||||
|
||||
.oi-italic:before {
|
||||
content:'\e07d';
|
||||
}
|
||||
|
||||
.oi-justify-center:before {
|
||||
content:'\e07e';
|
||||
}
|
||||
|
||||
.oi-justify-left:before {
|
||||
content:'\e07f';
|
||||
}
|
||||
|
||||
.oi-justify-right:before {
|
||||
content:'\e080';
|
||||
}
|
||||
|
||||
.oi-key:before {
|
||||
content:'\e081';
|
||||
}
|
||||
|
||||
.oi-laptop:before {
|
||||
content:'\e082';
|
||||
}
|
||||
|
||||
.oi-layers:before {
|
||||
content:'\e083';
|
||||
}
|
||||
|
||||
.oi-lightbulb:before {
|
||||
content:'\e084';
|
||||
}
|
||||
|
||||
.oi-link-broken:before {
|
||||
content:'\e085';
|
||||
}
|
||||
|
||||
.oi-link-intact:before {
|
||||
content:'\e086';
|
||||
}
|
||||
|
||||
.oi-list-rich:before {
|
||||
content:'\e087';
|
||||
}
|
||||
|
||||
.oi-list:before {
|
||||
content:'\e088';
|
||||
}
|
||||
|
||||
.oi-location:before {
|
||||
content:'\e089';
|
||||
}
|
||||
|
||||
.oi-lock-locked:before {
|
||||
content:'\e08a';
|
||||
}
|
||||
|
||||
.oi-lock-unlocked:before {
|
||||
content:'\e08b';
|
||||
}
|
||||
|
||||
.oi-loop-circular:before {
|
||||
content:'\e08c';
|
||||
}
|
||||
|
||||
.oi-loop-square:before {
|
||||
content:'\e08d';
|
||||
}
|
||||
|
||||
.oi-loop:before {
|
||||
content:'\e08e';
|
||||
}
|
||||
|
||||
.oi-magnifying-glass:before {
|
||||
content:'\e08f';
|
||||
}
|
||||
|
||||
.oi-map-marker:before {
|
||||
content:'\e090';
|
||||
}
|
||||
|
||||
.oi-map:before {
|
||||
content:'\e091';
|
||||
}
|
||||
|
||||
.oi-media-pause:before {
|
||||
content:'\e092';
|
||||
}
|
||||
|
||||
.oi-media-play:before {
|
||||
content:'\e093';
|
||||
}
|
||||
|
||||
.oi-media-record:before {
|
||||
content:'\e094';
|
||||
}
|
||||
|
||||
.oi-media-skip-backward:before {
|
||||
content:'\e095';
|
||||
}
|
||||
|
||||
.oi-media-skip-forward:before {
|
||||
content:'\e096';
|
||||
}
|
||||
|
||||
.oi-media-step-backward:before {
|
||||
content:'\e097';
|
||||
}
|
||||
|
||||
.oi-media-step-forward:before {
|
||||
content:'\e098';
|
||||
}
|
||||
|
||||
.oi-media-stop:before {
|
||||
content:'\e099';
|
||||
}
|
||||
|
||||
.oi-medical-cross:before {
|
||||
content:'\e09a';
|
||||
}
|
||||
|
||||
.oi-menu:before {
|
||||
content:'\e09b';
|
||||
}
|
||||
|
||||
.oi-microphone:before {
|
||||
content:'\e09c';
|
||||
}
|
||||
|
||||
.oi-minus:before {
|
||||
content:'\e09d';
|
||||
}
|
||||
|
||||
.oi-monitor:before {
|
||||
content:'\e09e';
|
||||
}
|
||||
|
||||
.oi-moon:before {
|
||||
content:'\e09f';
|
||||
}
|
||||
|
||||
.oi-move:before {
|
||||
content:'\e0a0';
|
||||
}
|
||||
|
||||
.oi-musical-note:before {
|
||||
content:'\e0a1';
|
||||
}
|
||||
|
||||
.oi-paperclip:before {
|
||||
content:'\e0a2';
|
||||
}
|
||||
|
||||
.oi-pencil:before {
|
||||
content:'\e0a3';
|
||||
}
|
||||
|
||||
.oi-people:before {
|
||||
content:'\e0a4';
|
||||
}
|
||||
|
||||
.oi-person:before {
|
||||
content:'\e0a5';
|
||||
}
|
||||
|
||||
.oi-phone:before {
|
||||
content:'\e0a6';
|
||||
}
|
||||
|
||||
.oi-pie-chart:before {
|
||||
content:'\e0a7';
|
||||
}
|
||||
|
||||
.oi-pin:before {
|
||||
content:'\e0a8';
|
||||
}
|
||||
|
||||
.oi-play-circle:before {
|
||||
content:'\e0a9';
|
||||
}
|
||||
|
||||
.oi-plus:before {
|
||||
content:'\e0aa';
|
||||
}
|
||||
|
||||
.oi-power-standby:before {
|
||||
content:'\e0ab';
|
||||
}
|
||||
|
||||
.oi-print:before {
|
||||
content:'\e0ac';
|
||||
}
|
||||
|
||||
.oi-project:before {
|
||||
content:'\e0ad';
|
||||
}
|
||||
|
||||
.oi-pulse:before {
|
||||
content:'\e0ae';
|
||||
}
|
||||
|
||||
.oi-puzzle-piece:before {
|
||||
content:'\e0af';
|
||||
}
|
||||
|
||||
.oi-question-mark:before {
|
||||
content:'\e0b0';
|
||||
}
|
||||
|
||||
.oi-rain:before {
|
||||
content:'\e0b1';
|
||||
}
|
||||
|
||||
.oi-random:before {
|
||||
content:'\e0b2';
|
||||
}
|
||||
|
||||
.oi-reload:before {
|
||||
content:'\e0b3';
|
||||
}
|
||||
|
||||
.oi-resize-both:before {
|
||||
content:'\e0b4';
|
||||
}
|
||||
|
||||
.oi-resize-height:before {
|
||||
content:'\e0b5';
|
||||
}
|
||||
|
||||
.oi-resize-width:before {
|
||||
content:'\e0b6';
|
||||
}
|
||||
|
||||
.oi-rss-alt:before {
|
||||
content:'\e0b7';
|
||||
}
|
||||
|
||||
.oi-rss:before {
|
||||
content:'\e0b8';
|
||||
}
|
||||
|
||||
.oi-script:before {
|
||||
content:'\e0b9';
|
||||
}
|
||||
|
||||
.oi-share-boxed:before {
|
||||
content:'\e0ba';
|
||||
}
|
||||
|
||||
.oi-share:before {
|
||||
content:'\e0bb';
|
||||
}
|
||||
|
||||
.oi-shield:before {
|
||||
content:'\e0bc';
|
||||
}
|
||||
|
||||
.oi-signal:before {
|
||||
content:'\e0bd';
|
||||
}
|
||||
|
||||
.oi-signpost:before {
|
||||
content:'\e0be';
|
||||
}
|
||||
|
||||
.oi-sort-ascending:before {
|
||||
content:'\e0bf';
|
||||
}
|
||||
|
||||
.oi-sort-descending:before {
|
||||
content:'\e0c0';
|
||||
}
|
||||
|
||||
.oi-spreadsheet:before {
|
||||
content:'\e0c1';
|
||||
}
|
||||
|
||||
.oi-star:before {
|
||||
content:'\e0c2';
|
||||
}
|
||||
|
||||
.oi-sun:before {
|
||||
content:'\e0c3';
|
||||
}
|
||||
|
||||
.oi-tablet:before {
|
||||
content:'\e0c4';
|
||||
}
|
||||
|
||||
.oi-tag:before {
|
||||
content:'\e0c5';
|
||||
}
|
||||
|
||||
.oi-tags:before {
|
||||
content:'\e0c6';
|
||||
}
|
||||
|
||||
.oi-target:before {
|
||||
content:'\e0c7';
|
||||
}
|
||||
|
||||
.oi-task:before {
|
||||
content:'\e0c8';
|
||||
}
|
||||
|
||||
.oi-terminal:before {
|
||||
content:'\e0c9';
|
||||
}
|
||||
|
||||
.oi-text:before {
|
||||
content:'\e0ca';
|
||||
}
|
||||
|
||||
.oi-thumb-down:before {
|
||||
content:'\e0cb';
|
||||
}
|
||||
|
||||
.oi-thumb-up:before {
|
||||
content:'\e0cc';
|
||||
}
|
||||
|
||||
.oi-timer:before {
|
||||
content:'\e0cd';
|
||||
}
|
||||
|
||||
.oi-transfer:before {
|
||||
content:'\e0ce';
|
||||
}
|
||||
|
||||
.oi-trash:before {
|
||||
content:'\e0cf';
|
||||
}
|
||||
|
||||
.oi-underline:before {
|
||||
content:'\e0d0';
|
||||
}
|
||||
|
||||
.oi-vertical-align-bottom:before {
|
||||
content:'\e0d1';
|
||||
}
|
||||
|
||||
.oi-vertical-align-center:before {
|
||||
content:'\e0d2';
|
||||
}
|
||||
|
||||
.oi-vertical-align-top:before {
|
||||
content:'\e0d3';
|
||||
}
|
||||
|
||||
.oi-video:before {
|
||||
content:'\e0d4';
|
||||
}
|
||||
|
||||
.oi-volume-high:before {
|
||||
content:'\e0d5';
|
||||
}
|
||||
|
||||
.oi-volume-low:before {
|
||||
content:'\e0d6';
|
||||
}
|
||||
|
||||
.oi-volume-off:before {
|
||||
content:'\e0d7';
|
||||
}
|
||||
|
||||
.oi-warning:before {
|
||||
content:'\e0d8';
|
||||
}
|
||||
|
||||
.oi-wifi:before {
|
||||
content:'\e0d9';
|
||||
}
|
||||
|
||||
.oi-wrench:before {
|
||||
content:'\e0da';
|
||||
}
|
||||
|
||||
.oi-x:before {
|
||||
content:'\e0db';
|
||||
}
|
||||
|
||||
.oi-yen:before {
|
||||
content:'\e0dc';
|
||||
}
|
||||
|
||||
.oi-zoom-in:before {
|
||||
content:'\e0dd';
|
||||
}
|
||||
|
||||
.oi-zoom-out:before {
|
||||
content:'\e0de';
|
||||
}
|
|
@ -1,960 +0,0 @@
|
|||
/* Bootstrap */
|
||||
|
||||
/* Override Bootstrap default variable */
|
||||
//@icon-font-path: "../fonts/";
|
||||
|
||||
@font-face {
|
||||
font-family: 'Icons';
|
||||
src: ~"url('@{icon-font-path}open-iconic.eot')";
|
||||
src: ~"url('@{icon-font-path}open-iconic.eot?#iconic-sm') format('embedded-opentype')",
|
||||
~"url('@{icon-font-path}open-iconic.woff') format('woff')",
|
||||
~"url('@{icon-font-path}open-iconic.ttf') format('truetype')",
|
||||
~"url('@{icon-font-path}open-iconic.svg#iconic-sm') format('svg')";
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
// Catchall baseclass
|
||||
.oi {
|
||||
position: relative;
|
||||
top: 1px;
|
||||
display: inline-block;
|
||||
font-family: 'Icons';
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
&:empty:before {
|
||||
width: 1em;
|
||||
text-align: center;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
&.oi-align-center:before {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
&.oi-align-left:before {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
&.oi-align-right:before {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
|
||||
&.oi-flip-horizontal:before {
|
||||
-webkit-transform: scale(-1, 1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(-1, 1);
|
||||
}
|
||||
|
||||
&.oi-flip-vertical:before {
|
||||
-webkit-transform: scale(1, -1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(1, -1);
|
||||
}
|
||||
|
||||
&.oi-flip-horizontal-vertical:before {
|
||||
-webkit-transform: scale(-1, -1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(-1, -1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.oi-account-login:before {
|
||||
content:"\e000";
|
||||
}
|
||||
|
||||
.oi-account-logout:before {
|
||||
content:"\e001";
|
||||
}
|
||||
|
||||
.oi-action-redo:before {
|
||||
content:"\e002";
|
||||
}
|
||||
|
||||
.oi-action-undo:before {
|
||||
content:"\e003";
|
||||
}
|
||||
|
||||
.oi-align-center:before {
|
||||
content:"\e004";
|
||||
}
|
||||
|
||||
.oi-align-left:before {
|
||||
content:"\e005";
|
||||
}
|
||||
|
||||
.oi-align-right:before {
|
||||
content:"\e006";
|
||||
}
|
||||
|
||||
.oi-aperture:before {
|
||||
content:"\e007";
|
||||
}
|
||||
|
||||
.oi-arrow-bottom:before {
|
||||
content:"\e008";
|
||||
}
|
||||
|
||||
.oi-arrow-circle-bottom:before {
|
||||
content:"\e009";
|
||||
}
|
||||
|
||||
.oi-arrow-circle-left:before {
|
||||
content:"\e00a";
|
||||
}
|
||||
|
||||
.oi-arrow-circle-right:before {
|
||||
content:"\e00b";
|
||||
}
|
||||
|
||||
.oi-arrow-circle-top:before {
|
||||
content:"\e00c";
|
||||
}
|
||||
|
||||
.oi-arrow-left:before {
|
||||
content:"\e00d";
|
||||
}
|
||||
|
||||
.oi-arrow-right:before {
|
||||
content:"\e00e";
|
||||
}
|
||||
|
||||
.oi-arrow-thick-bottom:before {
|
||||
content:"\e00f";
|
||||
}
|
||||
|
||||
.oi-arrow-thick-left:before {
|
||||
content:"\e010";
|
||||
}
|
||||
|
||||
.oi-arrow-thick-right:before {
|
||||
content:"\e011";
|
||||
}
|
||||
|
||||
.oi-arrow-thick-top:before {
|
||||
content:"\e012";
|
||||
}
|
||||
|
||||
.oi-arrow-top:before {
|
||||
content:"\e013";
|
||||
}
|
||||
|
||||
.oi-audio-spectrum:before {
|
||||
content:"\e014";
|
||||
}
|
||||
|
||||
.oi-audio:before {
|
||||
content:"\e015";
|
||||
}
|
||||
|
||||
.oi-badge:before {
|
||||
content:"\e016";
|
||||
}
|
||||
|
||||
.oi-ban:before {
|
||||
content:"\e017";
|
||||
}
|
||||
|
||||
.oi-bar-chart:before {
|
||||
content:"\e018";
|
||||
}
|
||||
|
||||
.oi-basket:before {
|
||||
content:"\e019";
|
||||
}
|
||||
|
||||
.oi-battery-empty:before {
|
||||
content:"\e01a";
|
||||
}
|
||||
|
||||
.oi-battery-full:before {
|
||||
content:"\e01b";
|
||||
}
|
||||
|
||||
.oi-beaker:before {
|
||||
content:"\e01c";
|
||||
}
|
||||
|
||||
.oi-bell:before {
|
||||
content:"\e01d";
|
||||
}
|
||||
|
||||
.oi-bluetooth:before {
|
||||
content:"\e01e";
|
||||
}
|
||||
|
||||
.oi-bold:before {
|
||||
content:"\e01f";
|
||||
}
|
||||
|
||||
.oi-bolt:before {
|
||||
content:"\e020";
|
||||
}
|
||||
|
||||
.oi-book:before {
|
||||
content:"\e021";
|
||||
}
|
||||
|
||||
.oi-bookmark:before {
|
||||
content:"\e022";
|
||||
}
|
||||
|
||||
.oi-box:before {
|
||||
content:"\e023";
|
||||
}
|
||||
|
||||
.oi-briefcase:before {
|
||||
content:"\e024";
|
||||
}
|
||||
|
||||
.oi-british-pound:before {
|
||||
content:"\e025";
|
||||
}
|
||||
|
||||
.oi-browser:before {
|
||||
content:"\e026";
|
||||
}
|
||||
|
||||
.oi-brush:before {
|
||||
content:"\e027";
|
||||
}
|
||||
|
||||
.oi-bug:before {
|
||||
content:"\e028";
|
||||
}
|
||||
|
||||
.oi-bullhorn:before {
|
||||
content:"\e029";
|
||||
}
|
||||
|
||||
.oi-calculator:before {
|
||||
content:"\e02a";
|
||||
}
|
||||
|
||||
.oi-calendar:before {
|
||||
content:"\e02b";
|
||||
}
|
||||
|
||||
.oi-camera-slr:before {
|
||||
content:"\e02c";
|
||||
}
|
||||
|
||||
.oi-caret-bottom:before {
|
||||
content:"\e02d";
|
||||
}
|
||||
|
||||
.oi-caret-left:before {
|
||||
content:"\e02e";
|
||||
}
|
||||
|
||||
.oi-caret-right:before {
|
||||
content:"\e02f";
|
||||
}
|
||||
|
||||
.oi-caret-top:before {
|
||||
content:"\e030";
|
||||
}
|
||||
|
||||
.oi-cart:before {
|
||||
content:"\e031";
|
||||
}
|
||||
|
||||
.oi-chat:before {
|
||||
content:"\e032";
|
||||
}
|
||||
|
||||
.oi-check:before {
|
||||
content:"\e033";
|
||||
}
|
||||
|
||||
.oi-chevron-bottom:before {
|
||||
content:"\e034";
|
||||
}
|
||||
|
||||
.oi-chevron-left:before {
|
||||
content:"\e035";
|
||||
}
|
||||
|
||||
.oi-chevron-right:before {
|
||||
content:"\e036";
|
||||
}
|
||||
|
||||
.oi-chevron-top:before {
|
||||
content:"\e037";
|
||||
}
|
||||
|
||||
.oi-circle-check:before {
|
||||
content:"\e038";
|
||||
}
|
||||
|
||||
.oi-circle-x:before {
|
||||
content:"\e039";
|
||||
}
|
||||
|
||||
.oi-clipboard:before {
|
||||
content:"\e03a";
|
||||
}
|
||||
|
||||
.oi-clock:before {
|
||||
content:"\e03b";
|
||||
}
|
||||
|
||||
.oi-cloud-download:before {
|
||||
content:"\e03c";
|
||||
}
|
||||
|
||||
.oi-cloud-upload:before {
|
||||
content:"\e03d";
|
||||
}
|
||||
|
||||
.oi-cloud:before {
|
||||
content:"\e03e";
|
||||
}
|
||||
|
||||
.oi-cloudy:before {
|
||||
content:"\e03f";
|
||||
}
|
||||
|
||||
.oi-code:before {
|
||||
content:"\e040";
|
||||
}
|
||||
|
||||
.oi-cog:before {
|
||||
content:"\e041";
|
||||
}
|
||||
|
||||
.oi-collapse-down:before {
|
||||
content:"\e042";
|
||||
}
|
||||
|
||||
.oi-collapse-left:before {
|
||||
content:"\e043";
|
||||
}
|
||||
|
||||
.oi-collapse-right:before {
|
||||
content:"\e044";
|
||||
}
|
||||
|
||||
.oi-collapse-up:before {
|
||||
content:"\e045";
|
||||
}
|
||||
|
||||
.oi-command:before {
|
||||
content:"\e046";
|
||||
}
|
||||
|
||||
.oi-comment-square:before {
|
||||
content:"\e047";
|
||||
}
|
||||
|
||||
.oi-compass:before {
|
||||
content:"\e048";
|
||||
}
|
||||
|
||||
.oi-contrast:before {
|
||||
content:"\e049";
|
||||
}
|
||||
|
||||
.oi-copywriting:before {
|
||||
content:"\e04a";
|
||||
}
|
||||
|
||||
.oi-credit-card:before {
|
||||
content:"\e04b";
|
||||
}
|
||||
|
||||
.oi-crop:before {
|
||||
content:"\e04c";
|
||||
}
|
||||
|
||||
.oi-dashboard:before {
|
||||
content:"\e04d";
|
||||
}
|
||||
|
||||
.oi-data-transfer-download:before {
|
||||
content:"\e04e";
|
||||
}
|
||||
|
||||
.oi-data-transfer-upload:before {
|
||||
content:"\e04f";
|
||||
}
|
||||
|
||||
.oi-delete:before {
|
||||
content:"\e050";
|
||||
}
|
||||
|
||||
.oi-dial:before {
|
||||
content:"\e051";
|
||||
}
|
||||
|
||||
.oi-document:before {
|
||||
content:"\e052";
|
||||
}
|
||||
|
||||
.oi-dollar:before {
|
||||
content:"\e053";
|
||||
}
|
||||
|
||||
.oi-double-quote-sans-left:before {
|
||||
content:"\e054";
|
||||
}
|
||||
|
||||
.oi-double-quote-sans-right:before {
|
||||
content:"\e055";
|
||||
}
|
||||
|
||||
.oi-double-quote-serif-left:before {
|
||||
content:"\e056";
|
||||
}
|
||||
|
||||
.oi-double-quote-serif-right:before {
|
||||
content:"\e057";
|
||||
}
|
||||
|
||||
.oi-droplet:before {
|
||||
content:"\e058";
|
||||
}
|
||||
|
||||
.oi-eject:before {
|
||||
content:"\e059";
|
||||
}
|
||||
|
||||
.oi-elevator:before {
|
||||
content:"\e05a";
|
||||
}
|
||||
|
||||
.oi-ellipses:before {
|
||||
content:"\e05b";
|
||||
}
|
||||
|
||||
.oi-envelope-closed:before {
|
||||
content:"\e05c";
|
||||
}
|
||||
|
||||
.oi-envelope-open:before {
|
||||
content:"\e05d";
|
||||
}
|
||||
|
||||
.oi-euro:before {
|
||||
content:"\e05e";
|
||||
}
|
||||
|
||||
.oi-excerpt:before {
|
||||
content:"\e05f";
|
||||
}
|
||||
|
||||
.oi-expand-down:before {
|
||||
content:"\e060";
|
||||
}
|
||||
|
||||
.oi-expand-left:before {
|
||||
content:"\e061";
|
||||
}
|
||||
|
||||
.oi-expand-right:before {
|
||||
content:"\e062";
|
||||
}
|
||||
|
||||
.oi-expand-up:before {
|
||||
content:"\e063";
|
||||
}
|
||||
|
||||
.oi-external-link:before {
|
||||
content:"\e064";
|
||||
}
|
||||
|
||||
.oi-eye:before {
|
||||
content:"\e065";
|
||||
}
|
||||
|
||||
.oi-eyedropper:before {
|
||||
content:"\e066";
|
||||
}
|
||||
|
||||
.oi-file:before {
|
||||
content:"\e067";
|
||||
}
|
||||
|
||||
.oi-fire:before {
|
||||
content:"\e068";
|
||||
}
|
||||
|
||||
.oi-flag:before {
|
||||
content:"\e069";
|
||||
}
|
||||
|
||||
.oi-flash:before {
|
||||
content:"\e06a";
|
||||
}
|
||||
|
||||
.oi-folder:before {
|
||||
content:"\e06b";
|
||||
}
|
||||
|
||||
.oi-fork:before {
|
||||
content:"\e06c";
|
||||
}
|
||||
|
||||
.oi-fullscreen-enter:before {
|
||||
content:"\e06d";
|
||||
}
|
||||
|
||||
.oi-fullscreen-exit:before {
|
||||
content:"\e06e";
|
||||
}
|
||||
|
||||
.oi-globe:before {
|
||||
content:"\e06f";
|
||||
}
|
||||
|
||||
.oi-graph:before {
|
||||
content:"\e070";
|
||||
}
|
||||
|
||||
.oi-grid-four-up:before {
|
||||
content:"\e071";
|
||||
}
|
||||
|
||||
.oi-grid-three-up:before {
|
||||
content:"\e072";
|
||||
}
|
||||
|
||||
.oi-grid-two-up:before {
|
||||
content:"\e073";
|
||||
}
|
||||
|
||||
.oi-hard-drive:before {
|
||||
content:"\e074";
|
||||
}
|
||||
|
||||
.oi-header:before {
|
||||
content:"\e075";
|
||||
}
|
||||
|
||||
.oi-headphones:before {
|
||||
content:"\e076";
|
||||
}
|
||||
|
||||
.oi-heart:before {
|
||||
content:"\e077";
|
||||
}
|
||||
|
||||
.oi-home:before {
|
||||
content:"\e078";
|
||||
}
|
||||
|
||||
.oi-image:before {
|
||||
content:"\e079";
|
||||
}
|
||||
|
||||
.oi-inbox:before {
|
||||
content:"\e07a";
|
||||
}
|
||||
|
||||
.oi-infinity:before {
|
||||
content:"\e07b";
|
||||
}
|
||||
|
||||
.oi-info:before {
|
||||
content:"\e07c";
|
||||
}
|
||||
|
||||
.oi-italic:before {
|
||||
content:"\e07d";
|
||||
}
|
||||
|
||||
.oi-justify-center:before {
|
||||
content:"\e07e";
|
||||
}
|
||||
|
||||
.oi-justify-left:before {
|
||||
content:"\e07f";
|
||||
}
|
||||
|
||||
.oi-justify-right:before {
|
||||
content:"\e080";
|
||||
}
|
||||
|
||||
.oi-key:before {
|
||||
content:"\e081";
|
||||
}
|
||||
|
||||
.oi-laptop:before {
|
||||
content:"\e082";
|
||||
}
|
||||
|
||||
.oi-layers:before {
|
||||
content:"\e083";
|
||||
}
|
||||
|
||||
.oi-lightbulb:before {
|
||||
content:"\e084";
|
||||
}
|
||||
|
||||
.oi-link-broken:before {
|
||||
content:"\e085";
|
||||
}
|
||||
|
||||
.oi-link-intact:before {
|
||||
content:"\e086";
|
||||
}
|
||||
|
||||
.oi-list-rich:before {
|
||||
content:"\e087";
|
||||
}
|
||||
|
||||
.oi-list:before {
|
||||
content:"\e088";
|
||||
}
|
||||
|
||||
.oi-location:before {
|
||||
content:"\e089";
|
||||
}
|
||||
|
||||
.oi-lock-locked:before {
|
||||
content:"\e08a";
|
||||
}
|
||||
|
||||
.oi-lock-unlocked:before {
|
||||
content:"\e08b";
|
||||
}
|
||||
|
||||
.oi-loop-circular:before {
|
||||
content:"\e08c";
|
||||
}
|
||||
|
||||
.oi-loop-square:before {
|
||||
content:"\e08d";
|
||||
}
|
||||
|
||||
.oi-loop:before {
|
||||
content:"\e08e";
|
||||
}
|
||||
|
||||
.oi-magnifying-glass:before {
|
||||
content:"\e08f";
|
||||
}
|
||||
|
||||
.oi-map-marker:before {
|
||||
content:"\e090";
|
||||
}
|
||||
|
||||
.oi-map:before {
|
||||
content:"\e091";
|
||||
}
|
||||
|
||||
.oi-media-pause:before {
|
||||
content:"\e092";
|
||||
}
|
||||
|
||||
.oi-media-play:before {
|
||||
content:"\e093";
|
||||
}
|
||||
|
||||
.oi-media-record:before {
|
||||
content:"\e094";
|
||||
}
|
||||
|
||||
.oi-media-skip-backward:before {
|
||||
content:"\e095";
|
||||
}
|
||||
|
||||
.oi-media-skip-forward:before {
|
||||
content:"\e096";
|
||||
}
|
||||
|
||||
.oi-media-step-backward:before {
|
||||
content:"\e097";
|
||||
}
|
||||
|
||||
.oi-media-step-forward:before {
|
||||
content:"\e098";
|
||||
}
|
||||
|
||||
.oi-media-stop:before {
|
||||
content:"\e099";
|
||||
}
|
||||
|
||||
.oi-medical-cross:before {
|
||||
content:"\e09a";
|
||||
}
|
||||
|
||||
.oi-menu:before {
|
||||
content:"\e09b";
|
||||
}
|
||||
|
||||
.oi-microphone:before {
|
||||
content:"\e09c";
|
||||
}
|
||||
|
||||
.oi-minus:before {
|
||||
content:"\e09d";
|
||||
}
|
||||
|
||||
.oi-monitor:before {
|
||||
content:"\e09e";
|
||||
}
|
||||
|
||||
.oi-moon:before {
|
||||
content:"\e09f";
|
||||
}
|
||||
|
||||
.oi-move:before {
|
||||
content:"\e0a0";
|
||||
}
|
||||
|
||||
.oi-musical-note:before {
|
||||
content:"\e0a1";
|
||||
}
|
||||
|
||||
.oi-paperclip:before {
|
||||
content:"\e0a2";
|
||||
}
|
||||
|
||||
.oi-pencil:before {
|
||||
content:"\e0a3";
|
||||
}
|
||||
|
||||
.oi-people:before {
|
||||
content:"\e0a4";
|
||||
}
|
||||
|
||||
.oi-person:before {
|
||||
content:"\e0a5";
|
||||
}
|
||||
|
||||
.oi-phone:before {
|
||||
content:"\e0a6";
|
||||
}
|
||||
|
||||
.oi-pie-chart:before {
|
||||
content:"\e0a7";
|
||||
}
|
||||
|
||||
.oi-pin:before {
|
||||
content:"\e0a8";
|
||||
}
|
||||
|
||||
.oi-play-circle:before {
|
||||
content:"\e0a9";
|
||||
}
|
||||
|
||||
.oi-plus:before {
|
||||
content:"\e0aa";
|
||||
}
|
||||
|
||||
.oi-power-standby:before {
|
||||
content:"\e0ab";
|
||||
}
|
||||
|
||||
.oi-print:before {
|
||||
content:"\e0ac";
|
||||
}
|
||||
|
||||
.oi-project:before {
|
||||
content:"\e0ad";
|
||||
}
|
||||
|
||||
.oi-pulse:before {
|
||||
content:"\e0ae";
|
||||
}
|
||||
|
||||
.oi-puzzle-piece:before {
|
||||
content:"\e0af";
|
||||
}
|
||||
|
||||
.oi-question-mark:before {
|
||||
content:"\e0b0";
|
||||
}
|
||||
|
||||
.oi-rain:before {
|
||||
content:"\e0b1";
|
||||
}
|
||||
|
||||
.oi-random:before {
|
||||
content:"\e0b2";
|
||||
}
|
||||
|
||||
.oi-reload:before {
|
||||
content:"\e0b3";
|
||||
}
|
||||
|
||||
.oi-resize-both:before {
|
||||
content:"\e0b4";
|
||||
}
|
||||
|
||||
.oi-resize-height:before {
|
||||
content:"\e0b5";
|
||||
}
|
||||
|
||||
.oi-resize-width:before {
|
||||
content:"\e0b6";
|
||||
}
|
||||
|
||||
.oi-rss-alt:before {
|
||||
content:"\e0b7";
|
||||
}
|
||||
|
||||
.oi-rss:before {
|
||||
content:"\e0b8";
|
||||
}
|
||||
|
||||
.oi-script:before {
|
||||
content:"\e0b9";
|
||||
}
|
||||
|
||||
.oi-share-boxed:before {
|
||||
content:"\e0ba";
|
||||
}
|
||||
|
||||
.oi-share:before {
|
||||
content:"\e0bb";
|
||||
}
|
||||
|
||||
.oi-shield:before {
|
||||
content:"\e0bc";
|
||||
}
|
||||
|
||||
.oi-signal:before {
|
||||
content:"\e0bd";
|
||||
}
|
||||
|
||||
.oi-signpost:before {
|
||||
content:"\e0be";
|
||||
}
|
||||
|
||||
.oi-sort-ascending:before {
|
||||
content:"\e0bf";
|
||||
}
|
||||
|
||||
.oi-sort-descending:before {
|
||||
content:"\e0c0";
|
||||
}
|
||||
|
||||
.oi-spreadsheet:before {
|
||||
content:"\e0c1";
|
||||
}
|
||||
|
||||
.oi-star:before {
|
||||
content:"\e0c2";
|
||||
}
|
||||
|
||||
.oi-sun:before {
|
||||
content:"\e0c3";
|
||||
}
|
||||
|
||||
.oi-tablet:before {
|
||||
content:"\e0c4";
|
||||
}
|
||||
|
||||
.oi-tag:before {
|
||||
content:"\e0c5";
|
||||
}
|
||||
|
||||
.oi-tags:before {
|
||||
content:"\e0c6";
|
||||
}
|
||||
|
||||
.oi-target:before {
|
||||
content:"\e0c7";
|
||||
}
|
||||
|
||||
.oi-task:before {
|
||||
content:"\e0c8";
|
||||
}
|
||||
|
||||
.oi-terminal:before {
|
||||
content:"\e0c9";
|
||||
}
|
||||
|
||||
.oi-text:before {
|
||||
content:"\e0ca";
|
||||
}
|
||||
|
||||
.oi-thumb-down:before {
|
||||
content:"\e0cb";
|
||||
}
|
||||
|
||||
.oi-thumb-up:before {
|
||||
content:"\e0cc";
|
||||
}
|
||||
|
||||
.oi-timer:before {
|
||||
content:"\e0cd";
|
||||
}
|
||||
|
||||
.oi-transfer:before {
|
||||
content:"\e0ce";
|
||||
}
|
||||
|
||||
.oi-trash:before {
|
||||
content:"\e0cf";
|
||||
}
|
||||
|
||||
.oi-underline:before {
|
||||
content:"\e0d0";
|
||||
}
|
||||
|
||||
.oi-vertical-align-bottom:before {
|
||||
content:"\e0d1";
|
||||
}
|
||||
|
||||
.oi-vertical-align-center:before {
|
||||
content:"\e0d2";
|
||||
}
|
||||
|
||||
.oi-vertical-align-top:before {
|
||||
content:"\e0d3";
|
||||
}
|
||||
|
||||
.oi-video:before {
|
||||
content:"\e0d4";
|
||||
}
|
||||
|
||||
.oi-volume-high:before {
|
||||
content:"\e0d5";
|
||||
}
|
||||
|
||||
.oi-volume-low:before {
|
||||
content:"\e0d6";
|
||||
}
|
||||
|
||||
.oi-volume-off:before {
|
||||
content:"\e0d7";
|
||||
}
|
||||
|
||||
.oi-warning:before {
|
||||
content:"\e0d8";
|
||||
}
|
||||
|
||||
.oi-wifi:before {
|
||||
content:"\e0d9";
|
||||
}
|
||||
|
||||
.oi-wrench:before {
|
||||
content:"\e0da";
|
||||
}
|
||||
|
||||
.oi-x:before {
|
||||
content:"\e0db";
|
||||
}
|
||||
|
||||
.oi-yen:before {
|
||||
content:"\e0dc";
|
||||
}
|
||||
|
||||
.oi-zoom-in:before {
|
||||
content:"\e0dd";
|
||||
}
|
||||
|
||||
.oi-zoom-out:before {
|
||||
content:"\e0de";
|
||||
}
|
||||
|
|
@ -1,958 +0,0 @@
|
|||
/* Bootstrap */
|
||||
|
||||
/* Override Bootstrap default variable */
|
||||
$icon-font-path: '../fonts/' !default;
|
||||
|
||||
@font-face {
|
||||
font-family: 'Icons';
|
||||
src: url('#{$icon-font-path}open-iconic.eot');
|
||||
src: url('#{$icon-font-path}open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('#{$icon-font-path}open-iconic.woff') format('woff'), url('#{$icon-font-path}open-iconic.ttf') format('truetype'), url('#{$icon-font-path}open-iconic.svg#iconic-sm') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
// Catchall baseclass
|
||||
.oi {
|
||||
position: relative;
|
||||
top: 1px;
|
||||
display: inline-block;
|
||||
font-family: 'Icons';
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
|
||||
&:empty:before {
|
||||
width: 1em;
|
||||
text-align: center;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
&.oi-align-center:before {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
&.oi-align-left:before {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
&.oi-align-right:before {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
|
||||
&.oi-flip-horizontal:before {
|
||||
-webkit-transform: scale(-1, 1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(-1, 1);
|
||||
}
|
||||
|
||||
&.oi-flip-vertical:before {
|
||||
-webkit-transform: scale(1, -1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(1, -1);
|
||||
}
|
||||
|
||||
&.oi-flip-horizontal-vertical:before {
|
||||
-webkit-transform: scale(-1, -1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(-1, -1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.oi-account-login:before {
|
||||
content:'\e000';
|
||||
}
|
||||
|
||||
.oi-account-logout:before {
|
||||
content:'\e001';
|
||||
}
|
||||
|
||||
.oi-action-redo:before {
|
||||
content:'\e002';
|
||||
}
|
||||
|
||||
.oi-action-undo:before {
|
||||
content:'\e003';
|
||||
}
|
||||
|
||||
.oi-align-center:before {
|
||||
content:'\e004';
|
||||
}
|
||||
|
||||
.oi-align-left:before {
|
||||
content:'\e005';
|
||||
}
|
||||
|
||||
.oi-align-right:before {
|
||||
content:'\e006';
|
||||
}
|
||||
|
||||
.oi-aperture:before {
|
||||
content:'\e007';
|
||||
}
|
||||
|
||||
.oi-arrow-bottom:before {
|
||||
content:'\e008';
|
||||
}
|
||||
|
||||
.oi-arrow-circle-bottom:before {
|
||||
content:'\e009';
|
||||
}
|
||||
|
||||
.oi-arrow-circle-left:before {
|
||||
content:'\e00a';
|
||||
}
|
||||
|
||||
.oi-arrow-circle-right:before {
|
||||
content:'\e00b';
|
||||
}
|
||||
|
||||
.oi-arrow-circle-top:before {
|
||||
content:'\e00c';
|
||||
}
|
||||
|
||||
.oi-arrow-left:before {
|
||||
content:'\e00d';
|
||||
}
|
||||
|
||||
.oi-arrow-right:before {
|
||||
content:'\e00e';
|
||||
}
|
||||
|
||||
.oi-arrow-thick-bottom:before {
|
||||
content:'\e00f';
|
||||
}
|
||||
|
||||
.oi-arrow-thick-left:before {
|
||||
content:'\e010';
|
||||
}
|
||||
|
||||
.oi-arrow-thick-right:before {
|
||||
content:'\e011';
|
||||
}
|
||||
|
||||
.oi-arrow-thick-top:before {
|
||||
content:'\e012';
|
||||
}
|
||||
|
||||
.oi-arrow-top:before {
|
||||
content:'\e013';
|
||||
}
|
||||
|
||||
.oi-audio-spectrum:before {
|
||||
content:'\e014';
|
||||
}
|
||||
|
||||
.oi-audio:before {
|
||||
content:'\e015';
|
||||
}
|
||||
|
||||
.oi-badge:before {
|
||||
content:'\e016';
|
||||
}
|
||||
|
||||
.oi-ban:before {
|
||||
content:'\e017';
|
||||
}
|
||||
|
||||
.oi-bar-chart:before {
|
||||
content:'\e018';
|
||||
}
|
||||
|
||||
.oi-basket:before {
|
||||
content:'\e019';
|
||||
}
|
||||
|
||||
.oi-battery-empty:before {
|
||||
content:'\e01a';
|
||||
}
|
||||
|
||||
.oi-battery-full:before {
|
||||
content:'\e01b';
|
||||
}
|
||||
|
||||
.oi-beaker:before {
|
||||
content:'\e01c';
|
||||
}
|
||||
|
||||
.oi-bell:before {
|
||||
content:'\e01d';
|
||||
}
|
||||
|
||||
.oi-bluetooth:before {
|
||||
content:'\e01e';
|
||||
}
|
||||
|
||||
.oi-bold:before {
|
||||
content:'\e01f';
|
||||
}
|
||||
|
||||
.oi-bolt:before {
|
||||
content:'\e020';
|
||||
}
|
||||
|
||||
.oi-book:before {
|
||||
content:'\e021';
|
||||
}
|
||||
|
||||
.oi-bookmark:before {
|
||||
content:'\e022';
|
||||
}
|
||||
|
||||
.oi-box:before {
|
||||
content:'\e023';
|
||||
}
|
||||
|
||||
.oi-briefcase:before {
|
||||
content:'\e024';
|
||||
}
|
||||
|
||||
.oi-british-pound:before {
|
||||
content:'\e025';
|
||||
}
|
||||
|
||||
.oi-browser:before {
|
||||
content:'\e026';
|
||||
}
|
||||
|
||||
.oi-brush:before {
|
||||
content:'\e027';
|
||||
}
|
||||
|
||||
.oi-bug:before {
|
||||
content:'\e028';
|
||||
}
|
||||
|
||||
.oi-bullhorn:before {
|
||||
content:'\e029';
|
||||
}
|
||||
|
||||
.oi-calculator:before {
|
||||
content:'\e02a';
|
||||
}
|
||||
|
||||
.oi-calendar:before {
|
||||
content:'\e02b';
|
||||
}
|
||||
|
||||
.oi-camera-slr:before {
|
||||
content:'\e02c';
|
||||
}
|
||||
|
||||
.oi-caret-bottom:before {
|
||||
content:'\e02d';
|
||||
}
|
||||
|
||||
.oi-caret-left:before {
|
||||
content:'\e02e';
|
||||
}
|
||||
|
||||
.oi-caret-right:before {
|
||||
content:'\e02f';
|
||||
}
|
||||
|
||||
.oi-caret-top:before {
|
||||
content:'\e030';
|
||||
}
|
||||
|
||||
.oi-cart:before {
|
||||
content:'\e031';
|
||||
}
|
||||
|
||||
.oi-chat:before {
|
||||
content:'\e032';
|
||||
}
|
||||
|
||||
.oi-check:before {
|
||||
content:'\e033';
|
||||
}
|
||||
|
||||
.oi-chevron-bottom:before {
|
||||
content:'\e034';
|
||||
}
|
||||
|
||||
.oi-chevron-left:before {
|
||||
content:'\e035';
|
||||
}
|
||||
|
||||
.oi-chevron-right:before {
|
||||
content:'\e036';
|
||||
}
|
||||
|
||||
.oi-chevron-top:before {
|
||||
content:'\e037';
|
||||
}
|
||||
|
||||
.oi-circle-check:before {
|
||||
content:'\e038';
|
||||
}
|
||||
|
||||
.oi-circle-x:before {
|
||||
content:'\e039';
|
||||
}
|
||||
|
||||
.oi-clipboard:before {
|
||||
content:'\e03a';
|
||||
}
|
||||
|
||||
.oi-clock:before {
|
||||
content:'\e03b';
|
||||
}
|
||||
|
||||
.oi-cloud-download:before {
|
||||
content:'\e03c';
|
||||
}
|
||||
|
||||
.oi-cloud-upload:before {
|
||||
content:'\e03d';
|
||||
}
|
||||
|
||||
.oi-cloud:before {
|
||||
content:'\e03e';
|
||||
}
|
||||
|
||||
.oi-cloudy:before {
|
||||
content:'\e03f';
|
||||
}
|
||||
|
||||
.oi-code:before {
|
||||
content:'\e040';
|
||||
}
|
||||
|
||||
.oi-cog:before {
|
||||
content:'\e041';
|
||||
}
|
||||
|
||||
.oi-collapse-down:before {
|
||||
content:'\e042';
|
||||
}
|
||||
|
||||
.oi-collapse-left:before {
|
||||
content:'\e043';
|
||||
}
|
||||
|
||||
.oi-collapse-right:before {
|
||||
content:'\e044';
|
||||
}
|
||||
|
||||
.oi-collapse-up:before {
|
||||
content:'\e045';
|
||||
}
|
||||
|
||||
.oi-command:before {
|
||||
content:'\e046';
|
||||
}
|
||||
|
||||
.oi-comment-square:before {
|
||||
content:'\e047';
|
||||
}
|
||||
|
||||
.oi-compass:before {
|
||||
content:'\e048';
|
||||
}
|
||||
|
||||
.oi-contrast:before {
|
||||
content:'\e049';
|
||||
}
|
||||
|
||||
.oi-copywriting:before {
|
||||
content:'\e04a';
|
||||
}
|
||||
|
||||
.oi-credit-card:before {
|
||||
content:'\e04b';
|
||||
}
|
||||
|
||||
.oi-crop:before {
|
||||
content:'\e04c';
|
||||
}
|
||||
|
||||
.oi-dashboard:before {
|
||||
content:'\e04d';
|
||||
}
|
||||
|
||||
.oi-data-transfer-download:before {
|
||||
content:'\e04e';
|
||||
}
|
||||
|
||||
.oi-data-transfer-upload:before {
|
||||
content:'\e04f';
|
||||
}
|
||||
|
||||
.oi-delete:before {
|
||||
content:'\e050';
|
||||
}
|
||||
|
||||
.oi-dial:before {
|
||||
content:'\e051';
|
||||
}
|
||||
|
||||
.oi-document:before {
|
||||
content:'\e052';
|
||||
}
|
||||
|
||||
.oi-dollar:before {
|
||||
content:'\e053';
|
||||
}
|
||||
|
||||
.oi-double-quote-sans-left:before {
|
||||
content:'\e054';
|
||||
}
|
||||
|
||||
.oi-double-quote-sans-right:before {
|
||||
content:'\e055';
|
||||
}
|
||||
|
||||
.oi-double-quote-serif-left:before {
|
||||
content:'\e056';
|
||||
}
|
||||
|
||||
.oi-double-quote-serif-right:before {
|
||||
content:'\e057';
|
||||
}
|
||||
|
||||
.oi-droplet:before {
|
||||
content:'\e058';
|
||||
}
|
||||
|
||||
.oi-eject:before {
|
||||
content:'\e059';
|
||||
}
|
||||
|
||||
.oi-elevator:before {
|
||||
content:'\e05a';
|
||||
}
|
||||
|
||||
.oi-ellipses:before {
|
||||
content:'\e05b';
|
||||
}
|
||||
|
||||
.oi-envelope-closed:before {
|
||||
content:'\e05c';
|
||||
}
|
||||
|
||||
.oi-envelope-open:before {
|
||||
content:'\e05d';
|
||||
}
|
||||
|
||||
.oi-euro:before {
|
||||
content:'\e05e';
|
||||
}
|
||||
|
||||
.oi-excerpt:before {
|
||||
content:'\e05f';
|
||||
}
|
||||
|
||||
.oi-expand-down:before {
|
||||
content:'\e060';
|
||||
}
|
||||
|
||||
.oi-expand-left:before {
|
||||
content:'\e061';
|
||||
}
|
||||
|
||||
.oi-expand-right:before {
|
||||
content:'\e062';
|
||||
}
|
||||
|
||||
.oi-expand-up:before {
|
||||
content:'\e063';
|
||||
}
|
||||
|
||||
.oi-external-link:before {
|
||||
content:'\e064';
|
||||
}
|
||||
|
||||
.oi-eye:before {
|
||||
content:'\e065';
|
||||
}
|
||||
|
||||
.oi-eyedropper:before {
|
||||
content:'\e066';
|
||||
}
|
||||
|
||||
.oi-file:before {
|
||||
content:'\e067';
|
||||
}
|
||||
|
||||
.oi-fire:before {
|
||||
content:'\e068';
|
||||
}
|
||||
|
||||
.oi-flag:before {
|
||||
content:'\e069';
|
||||
}
|
||||
|
||||
.oi-flash:before {
|
||||
content:'\e06a';
|
||||
}
|
||||
|
||||
.oi-folder:before {
|
||||
content:'\e06b';
|
||||
}
|
||||
|
||||
.oi-fork:before {
|
||||
content:'\e06c';
|
||||
}
|
||||
|
||||
.oi-fullscreen-enter:before {
|
||||
content:'\e06d';
|
||||
}
|
||||
|
||||
.oi-fullscreen-exit:before {
|
||||
content:'\e06e';
|
||||
}
|
||||
|
||||
.oi-globe:before {
|
||||
content:'\e06f';
|
||||
}
|
||||
|
||||
.oi-graph:before {
|
||||
content:'\e070';
|
||||
}
|
||||
|
||||
.oi-grid-four-up:before {
|
||||
content:'\e071';
|
||||
}
|
||||
|
||||
.oi-grid-three-up:before {
|
||||
content:'\e072';
|
||||
}
|
||||
|
||||
.oi-grid-two-up:before {
|
||||
content:'\e073';
|
||||
}
|
||||
|
||||
.oi-hard-drive:before {
|
||||
content:'\e074';
|
||||
}
|
||||
|
||||
.oi-header:before {
|
||||
content:'\e075';
|
||||
}
|
||||
|
||||
.oi-headphones:before {
|
||||
content:'\e076';
|
||||
}
|
||||
|
||||
.oi-heart:before {
|
||||
content:'\e077';
|
||||
}
|
||||
|
||||
.oi-home:before {
|
||||
content:'\e078';
|
||||
}
|
||||
|
||||
.oi-image:before {
|
||||
content:'\e079';
|
||||
}
|
||||
|
||||
.oi-inbox:before {
|
||||
content:'\e07a';
|
||||
}
|
||||
|
||||
.oi-infinity:before {
|
||||
content:'\e07b';
|
||||
}
|
||||
|
||||
.oi-info:before {
|
||||
content:'\e07c';
|
||||
}
|
||||
|
||||
.oi-italic:before {
|
||||
content:'\e07d';
|
||||
}
|
||||
|
||||
.oi-justify-center:before {
|
||||
content:'\e07e';
|
||||
}
|
||||
|
||||
.oi-justify-left:before {
|
||||
content:'\e07f';
|
||||
}
|
||||
|
||||
.oi-justify-right:before {
|
||||
content:'\e080';
|
||||
}
|
||||
|
||||
.oi-key:before {
|
||||
content:'\e081';
|
||||
}
|
||||
|
||||
.oi-laptop:before {
|
||||
content:'\e082';
|
||||
}
|
||||
|
||||
.oi-layers:before {
|
||||
content:'\e083';
|
||||
}
|
||||
|
||||
.oi-lightbulb:before {
|
||||
content:'\e084';
|
||||
}
|
||||
|
||||
.oi-link-broken:before {
|
||||
content:'\e085';
|
||||
}
|
||||
|
||||
.oi-link-intact:before {
|
||||
content:'\e086';
|
||||
}
|
||||
|
||||
.oi-list-rich:before {
|
||||
content:'\e087';
|
||||
}
|
||||
|
||||
.oi-list:before {
|
||||
content:'\e088';
|
||||
}
|
||||
|
||||
.oi-location:before {
|
||||
content:'\e089';
|
||||
}
|
||||
|
||||
.oi-lock-locked:before {
|
||||
content:'\e08a';
|
||||
}
|
||||
|
||||
.oi-lock-unlocked:before {
|
||||
content:'\e08b';
|
||||
}
|
||||
|
||||
.oi-loop-circular:before {
|
||||
content:'\e08c';
|
||||
}
|
||||
|
||||
.oi-loop-square:before {
|
||||
content:'\e08d';
|
||||
}
|
||||
|
||||
.oi-loop:before {
|
||||
content:'\e08e';
|
||||
}
|
||||
|
||||
.oi-magnifying-glass:before {
|
||||
content:'\e08f';
|
||||
}
|
||||
|
||||
.oi-map-marker:before {
|
||||
content:'\e090';
|
||||
}
|
||||
|
||||
.oi-map:before {
|
||||
content:'\e091';
|
||||
}
|
||||
|
||||
.oi-media-pause:before {
|
||||
content:'\e092';
|
||||
}
|
||||
|
||||
.oi-media-play:before {
|
||||
content:'\e093';
|
||||
}
|
||||
|
||||
.oi-media-record:before {
|
||||
content:'\e094';
|
||||
}
|
||||
|
||||
.oi-media-skip-backward:before {
|
||||
content:'\e095';
|
||||
}
|
||||
|
||||
.oi-media-skip-forward:before {
|
||||
content:'\e096';
|
||||
}
|
||||
|
||||
.oi-media-step-backward:before {
|
||||
content:'\e097';
|
||||
}
|
||||
|
||||
.oi-media-step-forward:before {
|
||||
content:'\e098';
|
||||
}
|
||||
|
||||
.oi-media-stop:before {
|
||||
content:'\e099';
|
||||
}
|
||||
|
||||
.oi-medical-cross:before {
|
||||
content:'\e09a';
|
||||
}
|
||||
|
||||
.oi-menu:before {
|
||||
content:'\e09b';
|
||||
}
|
||||
|
||||
.oi-microphone:before {
|
||||
content:'\e09c';
|
||||
}
|
||||
|
||||
.oi-minus:before {
|
||||
content:'\e09d';
|
||||
}
|
||||
|
||||
.oi-monitor:before {
|
||||
content:'\e09e';
|
||||
}
|
||||
|
||||
.oi-moon:before {
|
||||
content:'\e09f';
|
||||
}
|
||||
|
||||
.oi-move:before {
|
||||
content:'\e0a0';
|
||||
}
|
||||
|
||||
.oi-musical-note:before {
|
||||
content:'\e0a1';
|
||||
}
|
||||
|
||||
.oi-paperclip:before {
|
||||
content:'\e0a2';
|
||||
}
|
||||
|
||||
.oi-pencil:before {
|
||||
content:'\e0a3';
|
||||
}
|
||||
|
||||
.oi-people:before {
|
||||
content:'\e0a4';
|
||||
}
|
||||
|
||||
.oi-person:before {
|
||||
content:'\e0a5';
|
||||
}
|
||||
|
||||
.oi-phone:before {
|
||||
content:'\e0a6';
|
||||
}
|
||||
|
||||
.oi-pie-chart:before {
|
||||
content:'\e0a7';
|
||||
}
|
||||
|
||||
.oi-pin:before {
|
||||
content:'\e0a8';
|
||||
}
|
||||
|
||||
.oi-play-circle:before {
|
||||
content:'\e0a9';
|
||||
}
|
||||
|
||||
.oi-plus:before {
|
||||
content:'\e0aa';
|
||||
}
|
||||
|
||||
.oi-power-standby:before {
|
||||
content:'\e0ab';
|
||||
}
|
||||
|
||||
.oi-print:before {
|
||||
content:'\e0ac';
|
||||
}
|
||||
|
||||
.oi-project:before {
|
||||
content:'\e0ad';
|
||||
}
|
||||
|
||||
.oi-pulse:before {
|
||||
content:'\e0ae';
|
||||
}
|
||||
|
||||
.oi-puzzle-piece:before {
|
||||
content:'\e0af';
|
||||
}
|
||||
|
||||
.oi-question-mark:before {
|
||||
content:'\e0b0';
|
||||
}
|
||||
|
||||
.oi-rain:before {
|
||||
content:'\e0b1';
|
||||
}
|
||||
|
||||
.oi-random:before {
|
||||
content:'\e0b2';
|
||||
}
|
||||
|
||||
.oi-reload:before {
|
||||
content:'\e0b3';
|
||||
}
|
||||
|
||||
.oi-resize-both:before {
|
||||
content:'\e0b4';
|
||||
}
|
||||
|
||||
.oi-resize-height:before {
|
||||
content:'\e0b5';
|
||||
}
|
||||
|
||||
.oi-resize-width:before {
|
||||
content:'\e0b6';
|
||||
}
|
||||
|
||||
.oi-rss-alt:before {
|
||||
content:'\e0b7';
|
||||
}
|
||||
|
||||
.oi-rss:before {
|
||||
content:'\e0b8';
|
||||
}
|
||||
|
||||
.oi-script:before {
|
||||
content:'\e0b9';
|
||||
}
|
||||
|
||||
.oi-share-boxed:before {
|
||||
content:'\e0ba';
|
||||
}
|
||||
|
||||
.oi-share:before {
|
||||
content:'\e0bb';
|
||||
}
|
||||
|
||||
.oi-shield:before {
|
||||
content:'\e0bc';
|
||||
}
|
||||
|
||||
.oi-signal:before {
|
||||
content:'\e0bd';
|
||||
}
|
||||
|
||||
.oi-signpost:before {
|
||||
content:'\e0be';
|
||||
}
|
||||
|
||||
.oi-sort-ascending:before {
|
||||
content:'\e0bf';
|
||||
}
|
||||
|
||||
.oi-sort-descending:before {
|
||||
content:'\e0c0';
|
||||
}
|
||||
|
||||
.oi-spreadsheet:before {
|
||||
content:'\e0c1';
|
||||
}
|
||||
|
||||
.oi-star:before {
|
||||
content:'\e0c2';
|
||||
}
|
||||
|
||||
.oi-sun:before {
|
||||
content:'\e0c3';
|
||||
}
|
||||
|
||||
.oi-tablet:before {
|
||||
content:'\e0c4';
|
||||
}
|
||||
|
||||
.oi-tag:before {
|
||||
content:'\e0c5';
|
||||
}
|
||||
|
||||
.oi-tags:before {
|
||||
content:'\e0c6';
|
||||
}
|
||||
|
||||
.oi-target:before {
|
||||
content:'\e0c7';
|
||||
}
|
||||
|
||||
.oi-task:before {
|
||||
content:'\e0c8';
|
||||
}
|
||||
|
||||
.oi-terminal:before {
|
||||
content:'\e0c9';
|
||||
}
|
||||
|
||||
.oi-text:before {
|
||||
content:'\e0ca';
|
||||
}
|
||||
|
||||
.oi-thumb-down:before {
|
||||
content:'\e0cb';
|
||||
}
|
||||
|
||||
.oi-thumb-up:before {
|
||||
content:'\e0cc';
|
||||
}
|
||||
|
||||
.oi-timer:before {
|
||||
content:'\e0cd';
|
||||
}
|
||||
|
||||
.oi-transfer:before {
|
||||
content:'\e0ce';
|
||||
}
|
||||
|
||||
.oi-trash:before {
|
||||
content:'\e0cf';
|
||||
}
|
||||
|
||||
.oi-underline:before {
|
||||
content:'\e0d0';
|
||||
}
|
||||
|
||||
.oi-vertical-align-bottom:before {
|
||||
content:'\e0d1';
|
||||
}
|
||||
|
||||
.oi-vertical-align-center:before {
|
||||
content:'\e0d2';
|
||||
}
|
||||
|
||||
.oi-vertical-align-top:before {
|
||||
content:'\e0d3';
|
||||
}
|
||||
|
||||
.oi-video:before {
|
||||
content:'\e0d4';
|
||||
}
|
||||
|
||||
.oi-volume-high:before {
|
||||
content:'\e0d5';
|
||||
}
|
||||
|
||||
.oi-volume-low:before {
|
||||
content:'\e0d6';
|
||||
}
|
||||
|
||||
.oi-volume-off:before {
|
||||
content:'\e0d7';
|
||||
}
|
||||
|
||||
.oi-warning:before {
|
||||
content:'\e0d8';
|
||||
}
|
||||
|
||||
.oi-wifi:before {
|
||||
content:'\e0d9';
|
||||
}
|
||||
|
||||
.oi-wrench:before {
|
||||
content:'\e0da';
|
||||
}
|
||||
|
||||
.oi-x:before {
|
||||
content:'\e0db';
|
||||
}
|
||||
|
||||
.oi-yen:before {
|
||||
content:'\e0dc';
|
||||
}
|
||||
|
||||
.oi-zoom-in:before {
|
||||
content:'\e0dd';
|
||||
}
|
||||
|
||||
.oi-zoom-out:before {
|
||||
content:'\e0de';
|
||||
}
|
||||
|
|
@ -1,954 +0,0 @@
|
|||
/* Bootstrap */
|
||||
|
||||
@font-face
|
||||
font-family 'Icons'
|
||||
src url('../fonts/open-iconic.eot')
|
||||
src url('../fonts/open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('../fonts/open-iconic.woff') format('woff'), url('../fonts/open-iconic.ttf') format('truetype'), url('../fonts/open-iconic.svg#iconic-sm') format('svg')
|
||||
font-weight normal
|
||||
font-style normal
|
||||
|
||||
|
||||
// Catchall baseclass
|
||||
.oi
|
||||
position relative
|
||||
top 1px
|
||||
display inline-block
|
||||
font-family 'Icons'
|
||||
font-style normal
|
||||
font-weight normal
|
||||
line-height 1
|
||||
-webkit-font-smoothing antialiased
|
||||
-moz-osx-font-smoothing grayscale
|
||||
|
||||
|
||||
&:empty:before
|
||||
width 1em
|
||||
text-align center
|
||||
box-sizing content-box
|
||||
|
||||
&.oi-align-center:before
|
||||
text-align center
|
||||
|
||||
|
||||
&.oi-align-left:before
|
||||
text-align left
|
||||
|
||||
|
||||
&.oi-align-right:before
|
||||
text-align right
|
||||
|
||||
|
||||
|
||||
&.oi-flip-horizontal:before
|
||||
-webkit-transform scale(-1, 1)
|
||||
-ms-transform scale(-1, 1)
|
||||
transform scale(-1, 1)
|
||||
|
||||
|
||||
&.oi-flip-vertical:before
|
||||
-webkit-transform scale(1, -1)
|
||||
-ms-transform scale(-1, 1)
|
||||
transform scale(1, -1)
|
||||
|
||||
|
||||
&.oi-flip-horizontal-vertical:before
|
||||
-webkit-transform scale(-1, -1)
|
||||
-ms-transform scale(-1, 1)
|
||||
transform scale(-1, -1)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.oi-account-login:before {
|
||||
content'\e000'
|
||||
}
|
||||
|
||||
.oi-account-logout:before {
|
||||
content'\e001'
|
||||
}
|
||||
|
||||
.oi-action-redo:before {
|
||||
content'\e002'
|
||||
}
|
||||
|
||||
.oi-action-undo:before {
|
||||
content'\e003'
|
||||
}
|
||||
|
||||
.oi-align-center:before {
|
||||
content'\e004'
|
||||
}
|
||||
|
||||
.oi-align-left:before {
|
||||
content'\e005'
|
||||
}
|
||||
|
||||
.oi-align-right:before {
|
||||
content'\e006'
|
||||
}
|
||||
|
||||
.oi-aperture:before {
|
||||
content'\e007'
|
||||
}
|
||||
|
||||
.oi-arrow-bottom:before {
|
||||
content'\e008'
|
||||
}
|
||||
|
||||
.oi-arrow-circle-bottom:before {
|
||||
content'\e009'
|
||||
}
|
||||
|
||||
.oi-arrow-circle-left:before {
|
||||
content'\e00a'
|
||||
}
|
||||
|
||||
.oi-arrow-circle-right:before {
|
||||
content'\e00b'
|
||||
}
|
||||
|
||||
.oi-arrow-circle-top:before {
|
||||
content'\e00c'
|
||||
}
|
||||
|
||||
.oi-arrow-left:before {
|
||||
content'\e00d'
|
||||
}
|
||||
|
||||
.oi-arrow-right:before {
|
||||
content'\e00e'
|
||||
}
|
||||
|
||||
.oi-arrow-thick-bottom:before {
|
||||
content'\e00f'
|
||||
}
|
||||
|
||||
.oi-arrow-thick-left:before {
|
||||
content'\e010'
|
||||
}
|
||||
|
||||
.oi-arrow-thick-right:before {
|
||||
content'\e011'
|
||||
}
|
||||
|
||||
.oi-arrow-thick-top:before {
|
||||
content'\e012'
|
||||
}
|
||||
|
||||
.oi-arrow-top:before {
|
||||
content'\e013'
|
||||
}
|
||||
|
||||
.oi-audio-spectrum:before {
|
||||
content'\e014'
|
||||
}
|
||||
|
||||
.oi-audio:before {
|
||||
content'\e015'
|
||||
}
|
||||
|
||||
.oi-badge:before {
|
||||
content'\e016'
|
||||
}
|
||||
|
||||
.oi-ban:before {
|
||||
content'\e017'
|
||||
}
|
||||
|
||||
.oi-bar-chart:before {
|
||||
content'\e018'
|
||||
}
|
||||
|
||||
.oi-basket:before {
|
||||
content'\e019'
|
||||
}
|
||||
|
||||
.oi-battery-empty:before {
|
||||
content'\e01a'
|
||||
}
|
||||
|
||||
.oi-battery-full:before {
|
||||
content'\e01b'
|
||||
}
|
||||
|
||||
.oi-beaker:before {
|
||||
content'\e01c'
|
||||
}
|
||||
|
||||
.oi-bell:before {
|
||||
content'\e01d'
|
||||
}
|
||||
|
||||
.oi-bluetooth:before {
|
||||
content'\e01e'
|
||||
}
|
||||
|
||||
.oi-bold:before {
|
||||
content'\e01f'
|
||||
}
|
||||
|
||||
.oi-bolt:before {
|
||||
content'\e020'
|
||||
}
|
||||
|
||||
.oi-book:before {
|
||||
content'\e021'
|
||||
}
|
||||
|
||||
.oi-bookmark:before {
|
||||
content'\e022'
|
||||
}
|
||||
|
||||
.oi-box:before {
|
||||
content'\e023'
|
||||
}
|
||||
|
||||
.oi-briefcase:before {
|
||||
content'\e024'
|
||||
}
|
||||
|
||||
.oi-british-pound:before {
|
||||
content'\e025'
|
||||
}
|
||||
|
||||
.oi-browser:before {
|
||||
content'\e026'
|
||||
}
|
||||
|
||||
.oi-brush:before {
|
||||
content'\e027'
|
||||
}
|
||||
|
||||
.oi-bug:before {
|
||||
content'\e028'
|
||||
}
|
||||
|
||||
.oi-bullhorn:before {
|
||||
content'\e029'
|
||||
}
|
||||
|
||||
.oi-calculator:before {
|
||||
content'\e02a'
|
||||
}
|
||||
|
||||
.oi-calendar:before {
|
||||
content'\e02b'
|
||||
}
|
||||
|
||||
.oi-camera-slr:before {
|
||||
content'\e02c'
|
||||
}
|
||||
|
||||
.oi-caret-bottom:before {
|
||||
content'\e02d'
|
||||
}
|
||||
|
||||
.oi-caret-left:before {
|
||||
content'\e02e'
|
||||
}
|
||||
|
||||
.oi-caret-right:before {
|
||||
content'\e02f'
|
||||
}
|
||||
|
||||
.oi-caret-top:before {
|
||||
content'\e030'
|
||||
}
|
||||
|
||||
.oi-cart:before {
|
||||
content'\e031'
|
||||
}
|
||||
|
||||
.oi-chat:before {
|
||||
content'\e032'
|
||||
}
|
||||
|
||||
.oi-check:before {
|
||||
content'\e033'
|
||||
}
|
||||
|
||||
.oi-chevron-bottom:before {
|
||||
content'\e034'
|
||||
}
|
||||
|
||||
.oi-chevron-left:before {
|
||||
content'\e035'
|
||||
}
|
||||
|
||||
.oi-chevron-right:before {
|
||||
content'\e036'
|
||||
}
|
||||
|
||||
.oi-chevron-top:before {
|
||||
content'\e037'
|
||||
}
|
||||
|
||||
.oi-circle-check:before {
|
||||
content'\e038'
|
||||
}
|
||||
|
||||
.oi-circle-x:before {
|
||||
content'\e039'
|
||||
}
|
||||
|
||||
.oi-clipboard:before {
|
||||
content'\e03a'
|
||||
}
|
||||
|
||||
.oi-clock:before {
|
||||
content'\e03b'
|
||||
}
|
||||
|
||||
.oi-cloud-download:before {
|
||||
content'\e03c'
|
||||
}
|
||||
|
||||
.oi-cloud-upload:before {
|
||||
content'\e03d'
|
||||
}
|
||||
|
||||
.oi-cloud:before {
|
||||
content'\e03e'
|
||||
}
|
||||
|
||||
.oi-cloudy:before {
|
||||
content'\e03f'
|
||||
}
|
||||
|
||||
.oi-code:before {
|
||||
content'\e040'
|
||||
}
|
||||
|
||||
.oi-cog:before {
|
||||
content'\e041'
|
||||
}
|
||||
|
||||
.oi-collapse-down:before {
|
||||
content'\e042'
|
||||
}
|
||||
|
||||
.oi-collapse-left:before {
|
||||
content'\e043'
|
||||
}
|
||||
|
||||
.oi-collapse-right:before {
|
||||
content'\e044'
|
||||
}
|
||||
|
||||
.oi-collapse-up:before {
|
||||
content'\e045'
|
||||
}
|
||||
|
||||
.oi-command:before {
|
||||
content'\e046'
|
||||
}
|
||||
|
||||
.oi-comment-square:before {
|
||||
content'\e047'
|
||||
}
|
||||
|
||||
.oi-compass:before {
|
||||
content'\e048'
|
||||
}
|
||||
|
||||
.oi-contrast:before {
|
||||
content'\e049'
|
||||
}
|
||||
|
||||
.oi-copywriting:before {
|
||||
content'\e04a'
|
||||
}
|
||||
|
||||
.oi-credit-card:before {
|
||||
content'\e04b'
|
||||
}
|
||||
|
||||
.oi-crop:before {
|
||||
content'\e04c'
|
||||
}
|
||||
|
||||
.oi-dashboard:before {
|
||||
content'\e04d'
|
||||
}
|
||||
|
||||
.oi-data-transfer-download:before {
|
||||
content'\e04e'
|
||||
}
|
||||
|
||||
.oi-data-transfer-upload:before {
|
||||
content'\e04f'
|
||||
}
|
||||
|
||||
.oi-delete:before {
|
||||
content'\e050'
|
||||
}
|
||||
|
||||
.oi-dial:before {
|
||||
content'\e051'
|
||||
}
|
||||
|
||||
.oi-document:before {
|
||||
content'\e052'
|
||||
}
|
||||
|
||||
.oi-dollar:before {
|
||||
content'\e053'
|
||||
}
|
||||
|
||||
.oi-double-quote-sans-left:before {
|
||||
content'\e054'
|
||||
}
|
||||
|
||||
.oi-double-quote-sans-right:before {
|
||||
content'\e055'
|
||||
}
|
||||
|
||||
.oi-double-quote-serif-left:before {
|
||||
content'\e056'
|
||||
}
|
||||
|
||||
.oi-double-quote-serif-right:before {
|
||||
content'\e057'
|
||||
}
|
||||
|
||||
.oi-droplet:before {
|
||||
content'\e058'
|
||||
}
|
||||
|
||||
.oi-eject:before {
|
||||
content'\e059'
|
||||
}
|
||||
|
||||
.oi-elevator:before {
|
||||
content'\e05a'
|
||||
}
|
||||
|
||||
.oi-ellipses:before {
|
||||
content'\e05b'
|
||||
}
|
||||
|
||||
.oi-envelope-closed:before {
|
||||
content'\e05c'
|
||||
}
|
||||
|
||||
.oi-envelope-open:before {
|
||||
content'\e05d'
|
||||
}
|
||||
|
||||
.oi-euro:before {
|
||||
content'\e05e'
|
||||
}
|
||||
|
||||
.oi-excerpt:before {
|
||||
content'\e05f'
|
||||
}
|
||||
|
||||
.oi-expand-down:before {
|
||||
content'\e060'
|
||||
}
|
||||
|
||||
.oi-expand-left:before {
|
||||
content'\e061'
|
||||
}
|
||||
|
||||
.oi-expand-right:before {
|
||||
content'\e062'
|
||||
}
|
||||
|
||||
.oi-expand-up:before {
|
||||
content'\e063'
|
||||
}
|
||||
|
||||
.oi-external-link:before {
|
||||
content'\e064'
|
||||
}
|
||||
|
||||
.oi-eye:before {
|
||||
content'\e065'
|
||||
}
|
||||
|
||||
.oi-eyedropper:before {
|
||||
content'\e066'
|
||||
}
|
||||
|
||||
.oi-file:before {
|
||||
content'\e067'
|
||||
}
|
||||
|
||||
.oi-fire:before {
|
||||
content'\e068'
|
||||
}
|
||||
|
||||
.oi-flag:before {
|
||||
content'\e069'
|
||||
}
|
||||
|
||||
.oi-flash:before {
|
||||
content'\e06a'
|
||||
}
|
||||
|
||||
.oi-folder:before {
|
||||
content'\e06b'
|
||||
}
|
||||
|
||||
.oi-fork:before {
|
||||
content'\e06c'
|
||||
}
|
||||
|
||||
.oi-fullscreen-enter:before {
|
||||
content'\e06d'
|
||||
}
|
||||
|
||||
.oi-fullscreen-exit:before {
|
||||
content'\e06e'
|
||||
}
|
||||
|
||||
.oi-globe:before {
|
||||
content'\e06f'
|
||||
}
|
||||
|
||||
.oi-graph:before {
|
||||
content'\e070'
|
||||
}
|
||||
|
||||
.oi-grid-four-up:before {
|
||||
content'\e071'
|
||||
}
|
||||
|
||||
.oi-grid-three-up:before {
|
||||
content'\e072'
|
||||
}
|
||||
|
||||
.oi-grid-two-up:before {
|
||||
content'\e073'
|
||||
}
|
||||
|
||||
.oi-hard-drive:before {
|
||||
content'\e074'
|
||||
}
|
||||
|
||||
.oi-header:before {
|
||||
content'\e075'
|
||||
}
|
||||
|
||||
.oi-headphones:before {
|
||||
content'\e076'
|
||||
}
|
||||
|
||||
.oi-heart:before {
|
||||
content'\e077'
|
||||
}
|
||||
|
||||
.oi-home:before {
|
||||
content'\e078'
|
||||
}
|
||||
|
||||
.oi-image:before {
|
||||
content'\e079'
|
||||
}
|
||||
|
||||
.oi-inbox:before {
|
||||
content'\e07a'
|
||||
}
|
||||
|
||||
.oi-infinity:before {
|
||||
content'\e07b'
|
||||
}
|
||||
|
||||
.oi-info:before {
|
||||
content'\e07c'
|
||||
}
|
||||
|
||||
.oi-italic:before {
|
||||
content'\e07d'
|
||||
}
|
||||
|
||||
.oi-justify-center:before {
|
||||
content'\e07e'
|
||||
}
|
||||
|
||||
.oi-justify-left:before {
|
||||
content'\e07f'
|
||||
}
|
||||
|
||||
.oi-justify-right:before {
|
||||
content'\e080'
|
||||
}
|
||||
|
||||
.oi-key:before {
|
||||
content'\e081'
|
||||
}
|
||||
|
||||
.oi-laptop:before {
|
||||
content'\e082'
|
||||
}
|
||||
|
||||
.oi-layers:before {
|
||||
content'\e083'
|
||||
}
|
||||
|
||||
.oi-lightbulb:before {
|
||||
content'\e084'
|
||||
}
|
||||
|
||||
.oi-link-broken:before {
|
||||
content'\e085'
|
||||
}
|
||||
|
||||
.oi-link-intact:before {
|
||||
content'\e086'
|
||||
}
|
||||
|
||||
.oi-list-rich:before {
|
||||
content'\e087'
|
||||
}
|
||||
|
||||
.oi-list:before {
|
||||
content'\e088'
|
||||
}
|
||||
|
||||
.oi-location:before {
|
||||
content'\e089'
|
||||
}
|
||||
|
||||
.oi-lock-locked:before {
|
||||
content'\e08a'
|
||||
}
|
||||
|
||||
.oi-lock-unlocked:before {
|
||||
content'\e08b'
|
||||
}
|
||||
|
||||
.oi-loop-circular:before {
|
||||
content'\e08c'
|
||||
}
|
||||
|
||||
.oi-loop-square:before {
|
||||
content'\e08d'
|
||||
}
|
||||
|
||||
.oi-loop:before {
|
||||
content'\e08e'
|
||||
}
|
||||
|
||||
.oi-magnifying-glass:before {
|
||||
content'\e08f'
|
||||
}
|
||||
|
||||
.oi-map-marker:before {
|
||||
content'\e090'
|
||||
}
|
||||
|
||||
.oi-map:before {
|
||||
content'\e091'
|
||||
}
|
||||
|
||||
.oi-media-pause:before {
|
||||
content'\e092'
|
||||
}
|
||||
|
||||
.oi-media-play:before {
|
||||
content'\e093'
|
||||
}
|
||||
|
||||
.oi-media-record:before {
|
||||
content'\e094'
|
||||
}
|
||||
|
||||
.oi-media-skip-backward:before {
|
||||
content'\e095'
|
||||
}
|
||||
|
||||
.oi-media-skip-forward:before {
|
||||
content'\e096'
|
||||
}
|
||||
|
||||
.oi-media-step-backward:before {
|
||||
content'\e097'
|
||||
}
|
||||
|
||||
.oi-media-step-forward:before {
|
||||
content'\e098'
|
||||
}
|
||||
|
||||
.oi-media-stop:before {
|
||||
content'\e099'
|
||||
}
|
||||
|
||||
.oi-medical-cross:before {
|
||||
content'\e09a'
|
||||
}
|
||||
|
||||
.oi-menu:before {
|
||||
content'\e09b'
|
||||
}
|
||||
|
||||
.oi-microphone:before {
|
||||
content'\e09c'
|
||||
}
|
||||
|
||||
.oi-minus:before {
|
||||
content'\e09d'
|
||||
}
|
||||
|
||||
.oi-monitor:before {
|
||||
content'\e09e'
|
||||
}
|
||||
|
||||
.oi-moon:before {
|
||||
content'\e09f'
|
||||
}
|
||||
|
||||
.oi-move:before {
|
||||
content'\e0a0'
|
||||
}
|
||||
|
||||
.oi-musical-note:before {
|
||||
content'\e0a1'
|
||||
}
|
||||
|
||||
.oi-paperclip:before {
|
||||
content'\e0a2'
|
||||
}
|
||||
|
||||
.oi-pencil:before {
|
||||
content'\e0a3'
|
||||
}
|
||||
|
||||
.oi-people:before {
|
||||
content'\e0a4'
|
||||
}
|
||||
|
||||
.oi-person:before {
|
||||
content'\e0a5'
|
||||
}
|
||||
|
||||
.oi-phone:before {
|
||||
content'\e0a6'
|
||||
}
|
||||
|
||||
.oi-pie-chart:before {
|
||||
content'\e0a7'
|
||||
}
|
||||
|
||||
.oi-pin:before {
|
||||
content'\e0a8'
|
||||
}
|
||||
|
||||
.oi-play-circle:before {
|
||||
content'\e0a9'
|
||||
}
|
||||
|
||||
.oi-plus:before {
|
||||
content'\e0aa'
|
||||
}
|
||||
|
||||
.oi-power-standby:before {
|
||||
content'\e0ab'
|
||||
}
|
||||
|
||||
.oi-print:before {
|
||||
content'\e0ac'
|
||||
}
|
||||
|
||||
.oi-project:before {
|
||||
content'\e0ad'
|
||||
}
|
||||
|
||||
.oi-pulse:before {
|
||||
content'\e0ae'
|
||||
}
|
||||
|
||||
.oi-puzzle-piece:before {
|
||||
content'\e0af'
|
||||
}
|
||||
|
||||
.oi-question-mark:before {
|
||||
content'\e0b0'
|
||||
}
|
||||
|
||||
.oi-rain:before {
|
||||
content'\e0b1'
|
||||
}
|
||||
|
||||
.oi-random:before {
|
||||
content'\e0b2'
|
||||
}
|
||||
|
||||
.oi-reload:before {
|
||||
content'\e0b3'
|
||||
}
|
||||
|
||||
.oi-resize-both:before {
|
||||
content'\e0b4'
|
||||
}
|
||||
|
||||
.oi-resize-height:before {
|
||||
content'\e0b5'
|
||||
}
|
||||
|
||||
.oi-resize-width:before {
|
||||
content'\e0b6'
|
||||
}
|
||||
|
||||
.oi-rss-alt:before {
|
||||
content'\e0b7'
|
||||
}
|
||||
|
||||
.oi-rss:before {
|
||||
content'\e0b8'
|
||||
}
|
||||
|
||||
.oi-script:before {
|
||||
content'\e0b9'
|
||||
}
|
||||
|
||||
.oi-share-boxed:before {
|
||||
content'\e0ba'
|
||||
}
|
||||
|
||||
.oi-share:before {
|
||||
content'\e0bb'
|
||||
}
|
||||
|
||||
.oi-shield:before {
|
||||
content'\e0bc'
|
||||
}
|
||||
|
||||
.oi-signal:before {
|
||||
content'\e0bd'
|
||||
}
|
||||
|
||||
.oi-signpost:before {
|
||||
content'\e0be'
|
||||
}
|
||||
|
||||
.oi-sort-ascending:before {
|
||||
content'\e0bf'
|
||||
}
|
||||
|
||||
.oi-sort-descending:before {
|
||||
content'\e0c0'
|
||||
}
|
||||
|
||||
.oi-spreadsheet:before {
|
||||
content'\e0c1'
|
||||
}
|
||||
|
||||
.oi-star:before {
|
||||
content'\e0c2'
|
||||
}
|
||||
|
||||
.oi-sun:before {
|
||||
content'\e0c3'
|
||||
}
|
||||
|
||||
.oi-tablet:before {
|
||||
content'\e0c4'
|
||||
}
|
||||
|
||||
.oi-tag:before {
|
||||
content'\e0c5'
|
||||
}
|
||||
|
||||
.oi-tags:before {
|
||||
content'\e0c6'
|
||||
}
|
||||
|
||||
.oi-target:before {
|
||||
content'\e0c7'
|
||||
}
|
||||
|
||||
.oi-task:before {
|
||||
content'\e0c8'
|
||||
}
|
||||
|
||||
.oi-terminal:before {
|
||||
content'\e0c9'
|
||||
}
|
||||
|
||||
.oi-text:before {
|
||||
content'\e0ca'
|
||||
}
|
||||
|
||||
.oi-thumb-down:before {
|
||||
content'\e0cb'
|
||||
}
|
||||
|
||||
.oi-thumb-up:before {
|
||||
content'\e0cc'
|
||||
}
|
||||
|
||||
.oi-timer:before {
|
||||
content'\e0cd'
|
||||
}
|
||||
|
||||
.oi-transfer:before {
|
||||
content'\e0ce'
|
||||
}
|
||||
|
||||
.oi-trash:before {
|
||||
content'\e0cf'
|
||||
}
|
||||
|
||||
.oi-underline:before {
|
||||
content'\e0d0'
|
||||
}
|
||||
|
||||
.oi-vertical-align-bottom:before {
|
||||
content'\e0d1'
|
||||
}
|
||||
|
||||
.oi-vertical-align-center:before {
|
||||
content'\e0d2'
|
||||
}
|
||||
|
||||
.oi-vertical-align-top:before {
|
||||
content'\e0d3'
|
||||
}
|
||||
|
||||
.oi-video:before {
|
||||
content'\e0d4'
|
||||
}
|
||||
|
||||
.oi-volume-high:before {
|
||||
content'\e0d5'
|
||||
}
|
||||
|
||||
.oi-volume-low:before {
|
||||
content'\e0d6'
|
||||
}
|
||||
|
||||
.oi-volume-off:before {
|
||||
content'\e0d7'
|
||||
}
|
||||
|
||||
.oi-warning:before {
|
||||
content'\e0d8'
|
||||
}
|
||||
|
||||
.oi-wifi:before {
|
||||
content'\e0d9'
|
||||
}
|
||||
|
||||
.oi-wrench:before {
|
||||
content'\e0da'
|
||||
}
|
||||
|
||||
.oi-x:before {
|
||||
content'\e0db'
|
||||
}
|
||||
|
||||
.oi-yen:before {
|
||||
content'\e0dc'
|
||||
}
|
||||
|
||||
.oi-zoom-in:before {
|
||||
content'\e0dd'
|
||||
}
|
||||
|
||||
.oi-zoom-out:before {
|
||||
content'\e0de'
|
||||
}
|
||||
|
|
@ -1,511 +0,0 @@
|
|||
|
||||
@font-face {
|
||||
font-family: 'Icons';
|
||||
src: url('../fonts/open-iconic.eot');
|
||||
src: url('../fonts/open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('../fonts/open-iconic.woff') format('woff'), url('../fonts/open-iconic.ttf') format('truetype'), url('../fonts/open-iconic.otf') format('opentype'), url('../fonts/open-iconic.svg#iconic-sm') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.oi[data-glyph].oi-text-replace {
|
||||
font-size: 0;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.oi[data-glyph].oi-text-replace:before {
|
||||
width: 1em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.oi[data-glyph]:before {
|
||||
font-family: 'Icons';
|
||||
display: inline-block;
|
||||
speak: none;
|
||||
line-height: 1;
|
||||
vertical-align: baseline;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.oi[data-glyph]:empty:before {
|
||||
width: 1em;
|
||||
text-align: center;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
.oi[data-glyph].oi-align-left:before {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.oi[data-glyph].oi-align-right:before {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.oi[data-glyph].oi-align-center:before {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.oi[data-glyph].oi-flip-horizontal:before {
|
||||
-webkit-transform: scale(-1, 1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(-1, 1);
|
||||
}
|
||||
.oi[data-glyph].oi-flip-vertical:before {
|
||||
-webkit-transform: scale(1, -1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(1, -1);
|
||||
}
|
||||
.oi[data-glyph].oi-flip-horizontal-vertical:before {
|
||||
-webkit-transform: scale(-1, -1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(-1, -1);
|
||||
}
|
||||
|
||||
|
||||
.oi[data-glyph=account-login]:before { content:'\e000'; }
|
||||
|
||||
.oi[data-glyph=account-logout]:before { content:'\e001'; }
|
||||
|
||||
.oi[data-glyph=action-redo]:before { content:'\e002'; }
|
||||
|
||||
.oi[data-glyph=action-undo]:before { content:'\e003'; }
|
||||
|
||||
.oi[data-glyph=align-center]:before { content:'\e004'; }
|
||||
|
||||
.oi[data-glyph=align-left]:before { content:'\e005'; }
|
||||
|
||||
.oi[data-glyph=align-right]:before { content:'\e006'; }
|
||||
|
||||
.oi[data-glyph=aperture]:before { content:'\e007'; }
|
||||
|
||||
.oi[data-glyph=arrow-bottom]:before { content:'\e008'; }
|
||||
|
||||
.oi[data-glyph=arrow-circle-bottom]:before { content:'\e009'; }
|
||||
|
||||
.oi[data-glyph=arrow-circle-left]:before { content:'\e00a'; }
|
||||
|
||||
.oi[data-glyph=arrow-circle-right]:before { content:'\e00b'; }
|
||||
|
||||
.oi[data-glyph=arrow-circle-top]:before { content:'\e00c'; }
|
||||
|
||||
.oi[data-glyph=arrow-left]:before { content:'\e00d'; }
|
||||
|
||||
.oi[data-glyph=arrow-right]:before { content:'\e00e'; }
|
||||
|
||||
.oi[data-glyph=arrow-thick-bottom]:before { content:'\e00f'; }
|
||||
|
||||
.oi[data-glyph=arrow-thick-left]:before { content:'\e010'; }
|
||||
|
||||
.oi[data-glyph=arrow-thick-right]:before { content:'\e011'; }
|
||||
|
||||
.oi[data-glyph=arrow-thick-top]:before { content:'\e012'; }
|
||||
|
||||
.oi[data-glyph=arrow-top]:before { content:'\e013'; }
|
||||
|
||||
.oi[data-glyph=audio-spectrum]:before { content:'\e014'; }
|
||||
|
||||
.oi[data-glyph=audio]:before { content:'\e015'; }
|
||||
|
||||
.oi[data-glyph=badge]:before { content:'\e016'; }
|
||||
|
||||
.oi[data-glyph=ban]:before { content:'\e017'; }
|
||||
|
||||
.oi[data-glyph=bar-chart]:before { content:'\e018'; }
|
||||
|
||||
.oi[data-glyph=basket]:before { content:'\e019'; }
|
||||
|
||||
.oi[data-glyph=battery-empty]:before { content:'\e01a'; }
|
||||
|
||||
.oi[data-glyph=battery-full]:before { content:'\e01b'; }
|
||||
|
||||
.oi[data-glyph=beaker]:before { content:'\e01c'; }
|
||||
|
||||
.oi[data-glyph=bell]:before { content:'\e01d'; }
|
||||
|
||||
.oi[data-glyph=bluetooth]:before { content:'\e01e'; }
|
||||
|
||||
.oi[data-glyph=bold]:before { content:'\e01f'; }
|
||||
|
||||
.oi[data-glyph=bolt]:before { content:'\e020'; }
|
||||
|
||||
.oi[data-glyph=book]:before { content:'\e021'; }
|
||||
|
||||
.oi[data-glyph=bookmark]:before { content:'\e022'; }
|
||||
|
||||
.oi[data-glyph=box]:before { content:'\e023'; }
|
||||
|
||||
.oi[data-glyph=briefcase]:before { content:'\e024'; }
|
||||
|
||||
.oi[data-glyph=british-pound]:before { content:'\e025'; }
|
||||
|
||||
.oi[data-glyph=browser]:before { content:'\e026'; }
|
||||
|
||||
.oi[data-glyph=brush]:before { content:'\e027'; }
|
||||
|
||||
.oi[data-glyph=bug]:before { content:'\e028'; }
|
||||
|
||||
.oi[data-glyph=bullhorn]:before { content:'\e029'; }
|
||||
|
||||
.oi[data-glyph=calculator]:before { content:'\e02a'; }
|
||||
|
||||
.oi[data-glyph=calendar]:before { content:'\e02b'; }
|
||||
|
||||
.oi[data-glyph=camera-slr]:before { content:'\e02c'; }
|
||||
|
||||
.oi[data-glyph=caret-bottom]:before { content:'\e02d'; }
|
||||
|
||||
.oi[data-glyph=caret-left]:before { content:'\e02e'; }
|
||||
|
||||
.oi[data-glyph=caret-right]:before { content:'\e02f'; }
|
||||
|
||||
.oi[data-glyph=caret-top]:before { content:'\e030'; }
|
||||
|
||||
.oi[data-glyph=cart]:before { content:'\e031'; }
|
||||
|
||||
.oi[data-glyph=chat]:before { content:'\e032'; }
|
||||
|
||||
.oi[data-glyph=check]:before { content:'\e033'; }
|
||||
|
||||
.oi[data-glyph=chevron-bottom]:before { content:'\e034'; }
|
||||
|
||||
.oi[data-glyph=chevron-left]:before { content:'\e035'; }
|
||||
|
||||
.oi[data-glyph=chevron-right]:before { content:'\e036'; }
|
||||
|
||||
.oi[data-glyph=chevron-top]:before { content:'\e037'; }
|
||||
|
||||
.oi[data-glyph=circle-check]:before { content:'\e038'; }
|
||||
|
||||
.oi[data-glyph=circle-x]:before { content:'\e039'; }
|
||||
|
||||
.oi[data-glyph=clipboard]:before { content:'\e03a'; }
|
||||
|
||||
.oi[data-glyph=clock]:before { content:'\e03b'; }
|
||||
|
||||
.oi[data-glyph=cloud-download]:before { content:'\e03c'; }
|
||||
|
||||
.oi[data-glyph=cloud-upload]:before { content:'\e03d'; }
|
||||
|
||||
.oi[data-glyph=cloud]:before { content:'\e03e'; }
|
||||
|
||||
.oi[data-glyph=cloudy]:before { content:'\e03f'; }
|
||||
|
||||
.oi[data-glyph=code]:before { content:'\e040'; }
|
||||
|
||||
.oi[data-glyph=cog]:before { content:'\e041'; }
|
||||
|
||||
.oi[data-glyph=collapse-down]:before { content:'\e042'; }
|
||||
|
||||
.oi[data-glyph=collapse-left]:before { content:'\e043'; }
|
||||
|
||||
.oi[data-glyph=collapse-right]:before { content:'\e044'; }
|
||||
|
||||
.oi[data-glyph=collapse-up]:before { content:'\e045'; }
|
||||
|
||||
.oi[data-glyph=command]:before { content:'\e046'; }
|
||||
|
||||
.oi[data-glyph=comment-square]:before { content:'\e047'; }
|
||||
|
||||
.oi[data-glyph=compass]:before { content:'\e048'; }
|
||||
|
||||
.oi[data-glyph=contrast]:before { content:'\e049'; }
|
||||
|
||||
.oi[data-glyph=copywriting]:before { content:'\e04a'; }
|
||||
|
||||
.oi[data-glyph=credit-card]:before { content:'\e04b'; }
|
||||
|
||||
.oi[data-glyph=crop]:before { content:'\e04c'; }
|
||||
|
||||
.oi[data-glyph=dashboard]:before { content:'\e04d'; }
|
||||
|
||||
.oi[data-glyph=data-transfer-download]:before { content:'\e04e'; }
|
||||
|
||||
.oi[data-glyph=data-transfer-upload]:before { content:'\e04f'; }
|
||||
|
||||
.oi[data-glyph=delete]:before { content:'\e050'; }
|
||||
|
||||
.oi[data-glyph=dial]:before { content:'\e051'; }
|
||||
|
||||
.oi[data-glyph=document]:before { content:'\e052'; }
|
||||
|
||||
.oi[data-glyph=dollar]:before { content:'\e053'; }
|
||||
|
||||
.oi[data-glyph=double-quote-sans-left]:before { content:'\e054'; }
|
||||
|
||||
.oi[data-glyph=double-quote-sans-right]:before { content:'\e055'; }
|
||||
|
||||
.oi[data-glyph=double-quote-serif-left]:before { content:'\e056'; }
|
||||
|
||||
.oi[data-glyph=double-quote-serif-right]:before { content:'\e057'; }
|
||||
|
||||
.oi[data-glyph=droplet]:before { content:'\e058'; }
|
||||
|
||||
.oi[data-glyph=eject]:before { content:'\e059'; }
|
||||
|
||||
.oi[data-glyph=elevator]:before { content:'\e05a'; }
|
||||
|
||||
.oi[data-glyph=ellipses]:before { content:'\e05b'; }
|
||||
|
||||
.oi[data-glyph=envelope-closed]:before { content:'\e05c'; }
|
||||
|
||||
.oi[data-glyph=envelope-open]:before { content:'\e05d'; }
|
||||
|
||||
.oi[data-glyph=euro]:before { content:'\e05e'; }
|
||||
|
||||
.oi[data-glyph=excerpt]:before { content:'\e05f'; }
|
||||
|
||||
.oi[data-glyph=expand-down]:before { content:'\e060'; }
|
||||
|
||||
.oi[data-glyph=expand-left]:before { content:'\e061'; }
|
||||
|
||||
.oi[data-glyph=expand-right]:before { content:'\e062'; }
|
||||
|
||||
.oi[data-glyph=expand-up]:before { content:'\e063'; }
|
||||
|
||||
.oi[data-glyph=external-link]:before { content:'\e064'; }
|
||||
|
||||
.oi[data-glyph=eye]:before { content:'\e065'; }
|
||||
|
||||
.oi[data-glyph=eyedropper]:before { content:'\e066'; }
|
||||
|
||||
.oi[data-glyph=file]:before { content:'\e067'; }
|
||||
|
||||
.oi[data-glyph=fire]:before { content:'\e068'; }
|
||||
|
||||
.oi[data-glyph=flag]:before { content:'\e069'; }
|
||||
|
||||
.oi[data-glyph=flash]:before { content:'\e06a'; }
|
||||
|
||||
.oi[data-glyph=folder]:before { content:'\e06b'; }
|
||||
|
||||
.oi[data-glyph=fork]:before { content:'\e06c'; }
|
||||
|
||||
.oi[data-glyph=fullscreen-enter]:before { content:'\e06d'; }
|
||||
|
||||
.oi[data-glyph=fullscreen-exit]:before { content:'\e06e'; }
|
||||
|
||||
.oi[data-glyph=globe]:before { content:'\e06f'; }
|
||||
|
||||
.oi[data-glyph=graph]:before { content:'\e070'; }
|
||||
|
||||
.oi[data-glyph=grid-four-up]:before { content:'\e071'; }
|
||||
|
||||
.oi[data-glyph=grid-three-up]:before { content:'\e072'; }
|
||||
|
||||
.oi[data-glyph=grid-two-up]:before { content:'\e073'; }
|
||||
|
||||
.oi[data-glyph=hard-drive]:before { content:'\e074'; }
|
||||
|
||||
.oi[data-glyph=header]:before { content:'\e075'; }
|
||||
|
||||
.oi[data-glyph=headphones]:before { content:'\e076'; }
|
||||
|
||||
.oi[data-glyph=heart]:before { content:'\e077'; }
|
||||
|
||||
.oi[data-glyph=home]:before { content:'\e078'; }
|
||||
|
||||
.oi[data-glyph=image]:before { content:'\e079'; }
|
||||
|
||||
.oi[data-glyph=inbox]:before { content:'\e07a'; }
|
||||
|
||||
.oi[data-glyph=infinity]:before { content:'\e07b'; }
|
||||
|
||||
.oi[data-glyph=info]:before { content:'\e07c'; }
|
||||
|
||||
.oi[data-glyph=italic]:before { content:'\e07d'; }
|
||||
|
||||
.oi[data-glyph=justify-center]:before { content:'\e07e'; }
|
||||
|
||||
.oi[data-glyph=justify-left]:before { content:'\e07f'; }
|
||||
|
||||
.oi[data-glyph=justify-right]:before { content:'\e080'; }
|
||||
|
||||
.oi[data-glyph=key]:before { content:'\e081'; }
|
||||
|
||||
.oi[data-glyph=laptop]:before { content:'\e082'; }
|
||||
|
||||
.oi[data-glyph=layers]:before { content:'\e083'; }
|
||||
|
||||
.oi[data-glyph=lightbulb]:before { content:'\e084'; }
|
||||
|
||||
.oi[data-glyph=link-broken]:before { content:'\e085'; }
|
||||
|
||||
.oi[data-glyph=link-intact]:before { content:'\e086'; }
|
||||
|
||||
.oi[data-glyph=list-rich]:before { content:'\e087'; }
|
||||
|
||||
.oi[data-glyph=list]:before { content:'\e088'; }
|
||||
|
||||
.oi[data-glyph=location]:before { content:'\e089'; }
|
||||
|
||||
.oi[data-glyph=lock-locked]:before { content:'\e08a'; }
|
||||
|
||||
.oi[data-glyph=lock-unlocked]:before { content:'\e08b'; }
|
||||
|
||||
.oi[data-glyph=loop-circular]:before { content:'\e08c'; }
|
||||
|
||||
.oi[data-glyph=loop-square]:before { content:'\e08d'; }
|
||||
|
||||
.oi[data-glyph=loop]:before { content:'\e08e'; }
|
||||
|
||||
.oi[data-glyph=magnifying-glass]:before { content:'\e08f'; }
|
||||
|
||||
.oi[data-glyph=map-marker]:before { content:'\e090'; }
|
||||
|
||||
.oi[data-glyph=map]:before { content:'\e091'; }
|
||||
|
||||
.oi[data-glyph=media-pause]:before { content:'\e092'; }
|
||||
|
||||
.oi[data-glyph=media-play]:before { content:'\e093'; }
|
||||
|
||||
.oi[data-glyph=media-record]:before { content:'\e094'; }
|
||||
|
||||
.oi[data-glyph=media-skip-backward]:before { content:'\e095'; }
|
||||
|
||||
.oi[data-glyph=media-skip-forward]:before { content:'\e096'; }
|
||||
|
||||
.oi[data-glyph=media-step-backward]:before { content:'\e097'; }
|
||||
|
||||
.oi[data-glyph=media-step-forward]:before { content:'\e098'; }
|
||||
|
||||
.oi[data-glyph=media-stop]:before { content:'\e099'; }
|
||||
|
||||
.oi[data-glyph=medical-cross]:before { content:'\e09a'; }
|
||||
|
||||
.oi[data-glyph=menu]:before { content:'\e09b'; }
|
||||
|
||||
.oi[data-glyph=microphone]:before { content:'\e09c'; }
|
||||
|
||||
.oi[data-glyph=minus]:before { content:'\e09d'; }
|
||||
|
||||
.oi[data-glyph=monitor]:before { content:'\e09e'; }
|
||||
|
||||
.oi[data-glyph=moon]:before { content:'\e09f'; }
|
||||
|
||||
.oi[data-glyph=move]:before { content:'\e0a0'; }
|
||||
|
||||
.oi[data-glyph=musical-note]:before { content:'\e0a1'; }
|
||||
|
||||
.oi[data-glyph=paperclip]:before { content:'\e0a2'; }
|
||||
|
||||
.oi[data-glyph=pencil]:before { content:'\e0a3'; }
|
||||
|
||||
.oi[data-glyph=people]:before { content:'\e0a4'; }
|
||||
|
||||
.oi[data-glyph=person]:before { content:'\e0a5'; }
|
||||
|
||||
.oi[data-glyph=phone]:before { content:'\e0a6'; }
|
||||
|
||||
.oi[data-glyph=pie-chart]:before { content:'\e0a7'; }
|
||||
|
||||
.oi[data-glyph=pin]:before { content:'\e0a8'; }
|
||||
|
||||
.oi[data-glyph=play-circle]:before { content:'\e0a9'; }
|
||||
|
||||
.oi[data-glyph=plus]:before { content:'\e0aa'; }
|
||||
|
||||
.oi[data-glyph=power-standby]:before { content:'\e0ab'; }
|
||||
|
||||
.oi[data-glyph=print]:before { content:'\e0ac'; }
|
||||
|
||||
.oi[data-glyph=project]:before { content:'\e0ad'; }
|
||||
|
||||
.oi[data-glyph=pulse]:before { content:'\e0ae'; }
|
||||
|
||||
.oi[data-glyph=puzzle-piece]:before { content:'\e0af'; }
|
||||
|
||||
.oi[data-glyph=question-mark]:before { content:'\e0b0'; }
|
||||
|
||||
.oi[data-glyph=rain]:before { content:'\e0b1'; }
|
||||
|
||||
.oi[data-glyph=random]:before { content:'\e0b2'; }
|
||||
|
||||
.oi[data-glyph=reload]:before { content:'\e0b3'; }
|
||||
|
||||
.oi[data-glyph=resize-both]:before { content:'\e0b4'; }
|
||||
|
||||
.oi[data-glyph=resize-height]:before { content:'\e0b5'; }
|
||||
|
||||
.oi[data-glyph=resize-width]:before { content:'\e0b6'; }
|
||||
|
||||
.oi[data-glyph=rss-alt]:before { content:'\e0b7'; }
|
||||
|
||||
.oi[data-glyph=rss]:before { content:'\e0b8'; }
|
||||
|
||||
.oi[data-glyph=script]:before { content:'\e0b9'; }
|
||||
|
||||
.oi[data-glyph=share-boxed]:before { content:'\e0ba'; }
|
||||
|
||||
.oi[data-glyph=share]:before { content:'\e0bb'; }
|
||||
|
||||
.oi[data-glyph=shield]:before { content:'\e0bc'; }
|
||||
|
||||
.oi[data-glyph=signal]:before { content:'\e0bd'; }
|
||||
|
||||
.oi[data-glyph=signpost]:before { content:'\e0be'; }
|
||||
|
||||
.oi[data-glyph=sort-ascending]:before { content:'\e0bf'; }
|
||||
|
||||
.oi[data-glyph=sort-descending]:before { content:'\e0c0'; }
|
||||
|
||||
.oi[data-glyph=spreadsheet]:before { content:'\e0c1'; }
|
||||
|
||||
.oi[data-glyph=star]:before { content:'\e0c2'; }
|
||||
|
||||
.oi[data-glyph=sun]:before { content:'\e0c3'; }
|
||||
|
||||
.oi[data-glyph=tablet]:before { content:'\e0c4'; }
|
||||
|
||||
.oi[data-glyph=tag]:before { content:'\e0c5'; }
|
||||
|
||||
.oi[data-glyph=tags]:before { content:'\e0c6'; }
|
||||
|
||||
.oi[data-glyph=target]:before { content:'\e0c7'; }
|
||||
|
||||
.oi[data-glyph=task]:before { content:'\e0c8'; }
|
||||
|
||||
.oi[data-glyph=terminal]:before { content:'\e0c9'; }
|
||||
|
||||
.oi[data-glyph=text]:before { content:'\e0ca'; }
|
||||
|
||||
.oi[data-glyph=thumb-down]:before { content:'\e0cb'; }
|
||||
|
||||
.oi[data-glyph=thumb-up]:before { content:'\e0cc'; }
|
||||
|
||||
.oi[data-glyph=timer]:before { content:'\e0cd'; }
|
||||
|
||||
.oi[data-glyph=transfer]:before { content:'\e0ce'; }
|
||||
|
||||
.oi[data-glyph=trash]:before { content:'\e0cf'; }
|
||||
|
||||
.oi[data-glyph=underline]:before { content:'\e0d0'; }
|
||||
|
||||
.oi[data-glyph=vertical-align-bottom]:before { content:'\e0d1'; }
|
||||
|
||||
.oi[data-glyph=vertical-align-center]:before { content:'\e0d2'; }
|
||||
|
||||
.oi[data-glyph=vertical-align-top]:before { content:'\e0d3'; }
|
||||
|
||||
.oi[data-glyph=video]:before { content:'\e0d4'; }
|
||||
|
||||
.oi[data-glyph=volume-high]:before { content:'\e0d5'; }
|
||||
|
||||
.oi[data-glyph=volume-low]:before { content:'\e0d6'; }
|
||||
|
||||
.oi[data-glyph=volume-off]:before { content:'\e0d7'; }
|
||||
|
||||
.oi[data-glyph=warning]:before { content:'\e0d8'; }
|
||||
|
||||
.oi[data-glyph=wifi]:before { content:'\e0d9'; }
|
||||
|
||||
.oi[data-glyph=wrench]:before { content:'\e0da'; }
|
||||
|
||||
.oi[data-glyph=x]:before { content:'\e0db'; }
|
||||
|
||||
.oi[data-glyph=yen]:before { content:'\e0dc'; }
|
||||
|
||||
.oi[data-glyph=zoom-in]:before { content:'\e0dd'; }
|
||||
|
||||
.oi[data-glyph=zoom-out]:before { content:'\e0de'; }
|
|
@ -1,962 +0,0 @@
|
|||
@iconic-font-path: '../fonts/';
|
||||
|
||||
@font-face {
|
||||
font-family: 'Icons';
|
||||
src: url('@{iconic-font-path}open-iconic.eot');
|
||||
src: url('@{iconic-font-path}open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('@{iconic-font-path}open-iconic.woff') format('woff'), url('@{iconic-font-path}open-iconic.ttf') format('truetype'), url('@{iconic-font-path}open-iconic.otf') format('opentype'), url('@{iconic-font-path}open-iconic.svg#iconic-sm') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.oi[data-glyph].oi-text-replace {
|
||||
font-size: 0;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.oi[data-glyph].oi-text-replace:before {
|
||||
width: 1em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.oi[data-glyph] {
|
||||
&:before {
|
||||
position: relative;
|
||||
top: 1px;
|
||||
font-family: 'Icons';
|
||||
display: inline-block;
|
||||
speak: none;
|
||||
line-height: 1;
|
||||
vertical-align: baseline;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
&:empty:before {
|
||||
width: 1em;
|
||||
text-align: center;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
&.oi-align-left:before {
|
||||
text-align: left;
|
||||
}
|
||||
&.oi-align-right:before {
|
||||
text-align: right;
|
||||
}
|
||||
&.oi-align-center:before {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
&.oi-flip-horizontal:before {
|
||||
-webkit-transform: scale(-1, 1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(-1, 1);
|
||||
}
|
||||
|
||||
&.oi-flip-vertical:before {
|
||||
-webkit-transform: scale(1, -1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(1, -1);
|
||||
}
|
||||
|
||||
&.oi-flip-horizontal-vertical:before {
|
||||
-webkit-transform: scale(-1, -1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(-1, -1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.oi[data-glyph=account-login]:before {
|
||||
content: '\e000';
|
||||
}
|
||||
|
||||
.oi[data-glyph=account-logout]:before {
|
||||
content: '\e001';
|
||||
}
|
||||
|
||||
.oi[data-glyph=action-redo]:before {
|
||||
content: '\e002';
|
||||
}
|
||||
|
||||
.oi[data-glyph=action-undo]:before {
|
||||
content: '\e003';
|
||||
}
|
||||
|
||||
.oi[data-glyph=align-center]:before {
|
||||
content: '\e004';
|
||||
}
|
||||
|
||||
.oi[data-glyph=align-left]:before {
|
||||
content: '\e005';
|
||||
}
|
||||
|
||||
.oi[data-glyph=align-right]:before {
|
||||
content: '\e006';
|
||||
}
|
||||
|
||||
.oi[data-glyph=aperture]:before {
|
||||
content: '\e007';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-bottom]:before {
|
||||
content: '\e008';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-circle-bottom]:before {
|
||||
content: '\e009';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-circle-left]:before {
|
||||
content: '\e00a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-circle-right]:before {
|
||||
content: '\e00b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-circle-top]:before {
|
||||
content: '\e00c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-left]:before {
|
||||
content: '\e00d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-right]:before {
|
||||
content: '\e00e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-thick-bottom]:before {
|
||||
content: '\e00f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-thick-left]:before {
|
||||
content: '\e010';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-thick-right]:before {
|
||||
content: '\e011';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-thick-top]:before {
|
||||
content: '\e012';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-top]:before {
|
||||
content: '\e013';
|
||||
}
|
||||
|
||||
.oi[data-glyph=audio-spectrum]:before {
|
||||
content: '\e014';
|
||||
}
|
||||
|
||||
.oi[data-glyph=audio]:before {
|
||||
content: '\e015';
|
||||
}
|
||||
|
||||
.oi[data-glyph=badge]:before {
|
||||
content: '\e016';
|
||||
}
|
||||
|
||||
.oi[data-glyph=ban]:before {
|
||||
content: '\e017';
|
||||
}
|
||||
|
||||
.oi[data-glyph=bar-chart]:before {
|
||||
content: '\e018';
|
||||
}
|
||||
|
||||
.oi[data-glyph=basket]:before {
|
||||
content: '\e019';
|
||||
}
|
||||
|
||||
.oi[data-glyph=battery-empty]:before {
|
||||
content: '\e01a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=battery-full]:before {
|
||||
content: '\e01b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=beaker]:before {
|
||||
content: '\e01c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=bell]:before {
|
||||
content: '\e01d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=bluetooth]:before {
|
||||
content: '\e01e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=bold]:before {
|
||||
content: '\e01f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=bolt]:before {
|
||||
content: '\e020';
|
||||
}
|
||||
|
||||
.oi[data-glyph=book]:before {
|
||||
content: '\e021';
|
||||
}
|
||||
|
||||
.oi[data-glyph=bookmark]:before {
|
||||
content: '\e022';
|
||||
}
|
||||
|
||||
.oi[data-glyph=box]:before {
|
||||
content: '\e023';
|
||||
}
|
||||
|
||||
.oi[data-glyph=briefcase]:before {
|
||||
content: '\e024';
|
||||
}
|
||||
|
||||
.oi[data-glyph=british-pound]:before {
|
||||
content: '\e025';
|
||||
}
|
||||
|
||||
.oi[data-glyph=browser]:before {
|
||||
content: '\e026';
|
||||
}
|
||||
|
||||
.oi[data-glyph=brush]:before {
|
||||
content: '\e027';
|
||||
}
|
||||
|
||||
.oi[data-glyph=bug]:before {
|
||||
content: '\e028';
|
||||
}
|
||||
|
||||
.oi[data-glyph=bullhorn]:before {
|
||||
content: '\e029';
|
||||
}
|
||||
|
||||
.oi[data-glyph=calculator]:before {
|
||||
content: '\e02a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=calendar]:before {
|
||||
content: '\e02b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=camera-slr]:before {
|
||||
content: '\e02c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=caret-bottom]:before {
|
||||
content: '\e02d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=caret-left]:before {
|
||||
content: '\e02e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=caret-right]:before {
|
||||
content: '\e02f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=caret-top]:before {
|
||||
content: '\e030';
|
||||
}
|
||||
|
||||
.oi[data-glyph=cart]:before {
|
||||
content: '\e031';
|
||||
}
|
||||
|
||||
.oi[data-glyph=chat]:before {
|
||||
content: '\e032';
|
||||
}
|
||||
|
||||
.oi[data-glyph=check]:before {
|
||||
content: '\e033';
|
||||
}
|
||||
|
||||
.oi[data-glyph=chevron-bottom]:before {
|
||||
content: '\e034';
|
||||
}
|
||||
|
||||
.oi[data-glyph=chevron-left]:before {
|
||||
content: '\e035';
|
||||
}
|
||||
|
||||
.oi[data-glyph=chevron-right]:before {
|
||||
content: '\e036';
|
||||
}
|
||||
|
||||
.oi[data-glyph=chevron-top]:before {
|
||||
content: '\e037';
|
||||
}
|
||||
|
||||
.oi[data-glyph=circle-check]:before {
|
||||
content: '\e038';
|
||||
}
|
||||
|
||||
.oi[data-glyph=circle-x]:before {
|
||||
content: '\e039';
|
||||
}
|
||||
|
||||
.oi[data-glyph=clipboard]:before {
|
||||
content: '\e03a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=clock]:before {
|
||||
content: '\e03b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=cloud-download]:before {
|
||||
content: '\e03c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=cloud-upload]:before {
|
||||
content: '\e03d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=cloud]:before {
|
||||
content: '\e03e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=cloudy]:before {
|
||||
content: '\e03f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=code]:before {
|
||||
content: '\e040';
|
||||
}
|
||||
|
||||
.oi[data-glyph=cog]:before {
|
||||
content: '\e041';
|
||||
}
|
||||
|
||||
.oi[data-glyph=collapse-down]:before {
|
||||
content: '\e042';
|
||||
}
|
||||
|
||||
.oi[data-glyph=collapse-left]:before {
|
||||
content: '\e043';
|
||||
}
|
||||
|
||||
.oi[data-glyph=collapse-right]:before {
|
||||
content: '\e044';
|
||||
}
|
||||
|
||||
.oi[data-glyph=collapse-up]:before {
|
||||
content: '\e045';
|
||||
}
|
||||
|
||||
.oi[data-glyph=command]:before {
|
||||
content: '\e046';
|
||||
}
|
||||
|
||||
.oi[data-glyph=comment-square]:before {
|
||||
content: '\e047';
|
||||
}
|
||||
|
||||
.oi[data-glyph=compass]:before {
|
||||
content: '\e048';
|
||||
}
|
||||
|
||||
.oi[data-glyph=contrast]:before {
|
||||
content: '\e049';
|
||||
}
|
||||
|
||||
.oi[data-glyph=copywriting]:before {
|
||||
content: '\e04a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=credit-card]:before {
|
||||
content: '\e04b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=crop]:before {
|
||||
content: '\e04c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=dashboard]:before {
|
||||
content: '\e04d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=data-transfer-download]:before {
|
||||
content: '\e04e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=data-transfer-upload]:before {
|
||||
content: '\e04f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=delete]:before {
|
||||
content: '\e050';
|
||||
}
|
||||
|
||||
.oi[data-glyph=dial]:before {
|
||||
content: '\e051';
|
||||
}
|
||||
|
||||
.oi[data-glyph=document]:before {
|
||||
content: '\e052';
|
||||
}
|
||||
|
||||
.oi[data-glyph=dollar]:before {
|
||||
content: '\e053';
|
||||
}
|
||||
|
||||
.oi[data-glyph=double-quote-sans-left]:before {
|
||||
content: '\e054';
|
||||
}
|
||||
|
||||
.oi[data-glyph=double-quote-sans-right]:before {
|
||||
content: '\e055';
|
||||
}
|
||||
|
||||
.oi[data-glyph=double-quote-serif-left]:before {
|
||||
content: '\e056';
|
||||
}
|
||||
|
||||
.oi[data-glyph=double-quote-serif-right]:before {
|
||||
content: '\e057';
|
||||
}
|
||||
|
||||
.oi[data-glyph=droplet]:before {
|
||||
content: '\e058';
|
||||
}
|
||||
|
||||
.oi[data-glyph=eject]:before {
|
||||
content: '\e059';
|
||||
}
|
||||
|
||||
.oi[data-glyph=elevator]:before {
|
||||
content: '\e05a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=ellipses]:before {
|
||||
content: '\e05b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=envelope-closed]:before {
|
||||
content: '\e05c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=envelope-open]:before {
|
||||
content: '\e05d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=euro]:before {
|
||||
content: '\e05e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=excerpt]:before {
|
||||
content: '\e05f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=expand-down]:before {
|
||||
content: '\e060';
|
||||
}
|
||||
|
||||
.oi[data-glyph=expand-left]:before {
|
||||
content: '\e061';
|
||||
}
|
||||
|
||||
.oi[data-glyph=expand-right]:before {
|
||||
content: '\e062';
|
||||
}
|
||||
|
||||
.oi[data-glyph=expand-up]:before {
|
||||
content: '\e063';
|
||||
}
|
||||
|
||||
.oi[data-glyph=external-link]:before {
|
||||
content: '\e064';
|
||||
}
|
||||
|
||||
.oi[data-glyph=eye]:before {
|
||||
content: '\e065';
|
||||
}
|
||||
|
||||
.oi[data-glyph=eyedropper]:before {
|
||||
content: '\e066';
|
||||
}
|
||||
|
||||
.oi[data-glyph=file]:before {
|
||||
content: '\e067';
|
||||
}
|
||||
|
||||
.oi[data-glyph=fire]:before {
|
||||
content: '\e068';
|
||||
}
|
||||
|
||||
.oi[data-glyph=flag]:before {
|
||||
content: '\e069';
|
||||
}
|
||||
|
||||
.oi[data-glyph=flash]:before {
|
||||
content: '\e06a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=folder]:before {
|
||||
content: '\e06b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=fork]:before {
|
||||
content: '\e06c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=fullscreen-enter]:before {
|
||||
content: '\e06d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=fullscreen-exit]:before {
|
||||
content: '\e06e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=globe]:before {
|
||||
content: '\e06f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=graph]:before {
|
||||
content: '\e070';
|
||||
}
|
||||
|
||||
.oi[data-glyph=grid-four-up]:before {
|
||||
content: '\e071';
|
||||
}
|
||||
|
||||
.oi[data-glyph=grid-three-up]:before {
|
||||
content: '\e072';
|
||||
}
|
||||
|
||||
.oi[data-glyph=grid-two-up]:before {
|
||||
content: '\e073';
|
||||
}
|
||||
|
||||
.oi[data-glyph=hard-drive]:before {
|
||||
content: '\e074';
|
||||
}
|
||||
|
||||
.oi[data-glyph=header]:before {
|
||||
content: '\e075';
|
||||
}
|
||||
|
||||
.oi[data-glyph=headphones]:before {
|
||||
content: '\e076';
|
||||
}
|
||||
|
||||
.oi[data-glyph=heart]:before {
|
||||
content: '\e077';
|
||||
}
|
||||
|
||||
.oi[data-glyph=home]:before {
|
||||
content: '\e078';
|
||||
}
|
||||
|
||||
.oi[data-glyph=image]:before {
|
||||
content: '\e079';
|
||||
}
|
||||
|
||||
.oi[data-glyph=inbox]:before {
|
||||
content: '\e07a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=infinity]:before {
|
||||
content: '\e07b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=info]:before {
|
||||
content: '\e07c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=italic]:before {
|
||||
content: '\e07d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=justify-center]:before {
|
||||
content: '\e07e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=justify-left]:before {
|
||||
content: '\e07f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=justify-right]:before {
|
||||
content: '\e080';
|
||||
}
|
||||
|
||||
.oi[data-glyph=key]:before {
|
||||
content: '\e081';
|
||||
}
|
||||
|
||||
.oi[data-glyph=laptop]:before {
|
||||
content: '\e082';
|
||||
}
|
||||
|
||||
.oi[data-glyph=layers]:before {
|
||||
content: '\e083';
|
||||
}
|
||||
|
||||
.oi[data-glyph=lightbulb]:before {
|
||||
content: '\e084';
|
||||
}
|
||||
|
||||
.oi[data-glyph=link-broken]:before {
|
||||
content: '\e085';
|
||||
}
|
||||
|
||||
.oi[data-glyph=link-intact]:before {
|
||||
content: '\e086';
|
||||
}
|
||||
|
||||
.oi[data-glyph=list-rich]:before {
|
||||
content: '\e087';
|
||||
}
|
||||
|
||||
.oi[data-glyph=list]:before {
|
||||
content: '\e088';
|
||||
}
|
||||
|
||||
.oi[data-glyph=location]:before {
|
||||
content: '\e089';
|
||||
}
|
||||
|
||||
.oi[data-glyph=lock-locked]:before {
|
||||
content: '\e08a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=lock-unlocked]:before {
|
||||
content: '\e08b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=loop-circular]:before {
|
||||
content: '\e08c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=loop-square]:before {
|
||||
content: '\e08d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=loop]:before {
|
||||
content: '\e08e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=magnifying-glass]:before {
|
||||
content: '\e08f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=map-marker]:before {
|
||||
content: '\e090';
|
||||
}
|
||||
|
||||
.oi[data-glyph=map]:before {
|
||||
content: '\e091';
|
||||
}
|
||||
|
||||
.oi[data-glyph=media-pause]:before {
|
||||
content: '\e092';
|
||||
}
|
||||
|
||||
.oi[data-glyph=media-play]:before {
|
||||
content: '\e093';
|
||||
}
|
||||
|
||||
.oi[data-glyph=media-record]:before {
|
||||
content: '\e094';
|
||||
}
|
||||
|
||||
.oi[data-glyph=media-skip-backward]:before {
|
||||
content: '\e095';
|
||||
}
|
||||
|
||||
.oi[data-glyph=media-skip-forward]:before {
|
||||
content: '\e096';
|
||||
}
|
||||
|
||||
.oi[data-glyph=media-step-backward]:before {
|
||||
content: '\e097';
|
||||
}
|
||||
|
||||
.oi[data-glyph=media-step-forward]:before {
|
||||
content: '\e098';
|
||||
}
|
||||
|
||||
.oi[data-glyph=media-stop]:before {
|
||||
content: '\e099';
|
||||
}
|
||||
|
||||
.oi[data-glyph=medical-cross]:before {
|
||||
content: '\e09a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=menu]:before {
|
||||
content: '\e09b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=microphone]:before {
|
||||
content: '\e09c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=minus]:before {
|
||||
content: '\e09d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=monitor]:before {
|
||||
content: '\e09e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=moon]:before {
|
||||
content: '\e09f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=move]:before {
|
||||
content: '\e0a0';
|
||||
}
|
||||
|
||||
.oi[data-glyph=musical-note]:before {
|
||||
content: '\e0a1';
|
||||
}
|
||||
|
||||
.oi[data-glyph=paperclip]:before {
|
||||
content: '\e0a2';
|
||||
}
|
||||
|
||||
.oi[data-glyph=pencil]:before {
|
||||
content: '\e0a3';
|
||||
}
|
||||
|
||||
.oi[data-glyph=people]:before {
|
||||
content: '\e0a4';
|
||||
}
|
||||
|
||||
.oi[data-glyph=person]:before {
|
||||
content: '\e0a5';
|
||||
}
|
||||
|
||||
.oi[data-glyph=phone]:before {
|
||||
content: '\e0a6';
|
||||
}
|
||||
|
||||
.oi[data-glyph=pie-chart]:before {
|
||||
content: '\e0a7';
|
||||
}
|
||||
|
||||
.oi[data-glyph=pin]:before {
|
||||
content: '\e0a8';
|
||||
}
|
||||
|
||||
.oi[data-glyph=play-circle]:before {
|
||||
content: '\e0a9';
|
||||
}
|
||||
|
||||
.oi[data-glyph=plus]:before {
|
||||
content: '\e0aa';
|
||||
}
|
||||
|
||||
.oi[data-glyph=power-standby]:before {
|
||||
content: '\e0ab';
|
||||
}
|
||||
|
||||
.oi[data-glyph=print]:before {
|
||||
content: '\e0ac';
|
||||
}
|
||||
|
||||
.oi[data-glyph=project]:before {
|
||||
content: '\e0ad';
|
||||
}
|
||||
|
||||
.oi[data-glyph=pulse]:before {
|
||||
content: '\e0ae';
|
||||
}
|
||||
|
||||
.oi[data-glyph=puzzle-piece]:before {
|
||||
content: '\e0af';
|
||||
}
|
||||
|
||||
.oi[data-glyph=question-mark]:before {
|
||||
content: '\e0b0';
|
||||
}
|
||||
|
||||
.oi[data-glyph=rain]:before {
|
||||
content: '\e0b1';
|
||||
}
|
||||
|
||||
.oi[data-glyph=random]:before {
|
||||
content: '\e0b2';
|
||||
}
|
||||
|
||||
.oi[data-glyph=reload]:before {
|
||||
content: '\e0b3';
|
||||
}
|
||||
|
||||
.oi[data-glyph=resize-both]:before {
|
||||
content: '\e0b4';
|
||||
}
|
||||
|
||||
.oi[data-glyph=resize-height]:before {
|
||||
content: '\e0b5';
|
||||
}
|
||||
|
||||
.oi[data-glyph=resize-width]:before {
|
||||
content: '\e0b6';
|
||||
}
|
||||
|
||||
.oi[data-glyph=rss-alt]:before {
|
||||
content: '\e0b7';
|
||||
}
|
||||
|
||||
.oi[data-glyph=rss]:before {
|
||||
content: '\e0b8';
|
||||
}
|
||||
|
||||
.oi[data-glyph=script]:before {
|
||||
content: '\e0b9';
|
||||
}
|
||||
|
||||
.oi[data-glyph=share-boxed]:before {
|
||||
content: '\e0ba';
|
||||
}
|
||||
|
||||
.oi[data-glyph=share]:before {
|
||||
content: '\e0bb';
|
||||
}
|
||||
|
||||
.oi[data-glyph=shield]:before {
|
||||
content: '\e0bc';
|
||||
}
|
||||
|
||||
.oi[data-glyph=signal]:before {
|
||||
content: '\e0bd';
|
||||
}
|
||||
|
||||
.oi[data-glyph=signpost]:before {
|
||||
content: '\e0be';
|
||||
}
|
||||
|
||||
.oi[data-glyph=sort-ascending]:before {
|
||||
content: '\e0bf';
|
||||
}
|
||||
|
||||
.oi[data-glyph=sort-descending]:before {
|
||||
content: '\e0c0';
|
||||
}
|
||||
|
||||
.oi[data-glyph=spreadsheet]:before {
|
||||
content: '\e0c1';
|
||||
}
|
||||
|
||||
.oi[data-glyph=star]:before {
|
||||
content: '\e0c2';
|
||||
}
|
||||
|
||||
.oi[data-glyph=sun]:before {
|
||||
content: '\e0c3';
|
||||
}
|
||||
|
||||
.oi[data-glyph=tablet]:before {
|
||||
content: '\e0c4';
|
||||
}
|
||||
|
||||
.oi[data-glyph=tag]:before {
|
||||
content: '\e0c5';
|
||||
}
|
||||
|
||||
.oi[data-glyph=tags]:before {
|
||||
content: '\e0c6';
|
||||
}
|
||||
|
||||
.oi[data-glyph=target]:before {
|
||||
content: '\e0c7';
|
||||
}
|
||||
|
||||
.oi[data-glyph=task]:before {
|
||||
content: '\e0c8';
|
||||
}
|
||||
|
||||
.oi[data-glyph=terminal]:before {
|
||||
content: '\e0c9';
|
||||
}
|
||||
|
||||
.oi[data-glyph=text]:before {
|
||||
content: '\e0ca';
|
||||
}
|
||||
|
||||
.oi[data-glyph=thumb-down]:before {
|
||||
content: '\e0cb';
|
||||
}
|
||||
|
||||
.oi[data-glyph=thumb-up]:before {
|
||||
content: '\e0cc';
|
||||
}
|
||||
|
||||
.oi[data-glyph=timer]:before {
|
||||
content: '\e0cd';
|
||||
}
|
||||
|
||||
.oi[data-glyph=transfer]:before {
|
||||
content: '\e0ce';
|
||||
}
|
||||
|
||||
.oi[data-glyph=trash]:before {
|
||||
content: '\e0cf';
|
||||
}
|
||||
|
||||
.oi[data-glyph=underline]:before {
|
||||
content: '\e0d0';
|
||||
}
|
||||
|
||||
.oi[data-glyph=vertical-align-bottom]:before {
|
||||
content: '\e0d1';
|
||||
}
|
||||
|
||||
.oi[data-glyph=vertical-align-center]:before {
|
||||
content: '\e0d2';
|
||||
}
|
||||
|
||||
.oi[data-glyph=vertical-align-top]:before {
|
||||
content: '\e0d3';
|
||||
}
|
||||
|
||||
.oi[data-glyph=video]:before {
|
||||
content: '\e0d4';
|
||||
}
|
||||
|
||||
.oi[data-glyph=volume-high]:before {
|
||||
content: '\e0d5';
|
||||
}
|
||||
|
||||
.oi[data-glyph=volume-low]:before {
|
||||
content: '\e0d6';
|
||||
}
|
||||
|
||||
.oi[data-glyph=volume-off]:before {
|
||||
content: '\e0d7';
|
||||
}
|
||||
|
||||
.oi[data-glyph=warning]:before {
|
||||
content: '\e0d8';
|
||||
}
|
||||
|
||||
.oi[data-glyph=wifi]:before {
|
||||
content: '\e0d9';
|
||||
}
|
||||
|
||||
.oi[data-glyph=wrench]:before {
|
||||
content: '\e0da';
|
||||
}
|
||||
|
||||
.oi[data-glyph=x]:before {
|
||||
content: '\e0db';
|
||||
}
|
||||
|
||||
.oi[data-glyph=yen]:before {
|
||||
content: '\e0dc';
|
||||
}
|
||||
|
||||
.oi[data-glyph=zoom-in]:before {
|
||||
content: '\e0dd';
|
||||
}
|
||||
|
||||
.oi[data-glyph=zoom-out]:before {
|
||||
content: '\e0de';
|
||||
}
|
|
@ -1,963 +0,0 @@
|
|||
$iconic-font-path: '../fonts/' !default;
|
||||
|
||||
@font-face {
|
||||
font-family: 'Icons';
|
||||
src: url('#{$iconic-font-path}open-iconic.eot');
|
||||
src: url('#{$iconic-font-path}open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('#{$iconic-font-path}open-iconic.woff') format('woff'), url('#{$iconic-font-path}open-iconic.ttf') format('truetype'), url('#{$iconic-font-path}open-iconic.otf') format('opentype'), url('#{$iconic-font-path}open-iconic.svg#iconic-sm') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.oi[data-glyph].oi-text-replace {
|
||||
font-size: 0;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.oi[data-glyph].oi-text-replace:before {
|
||||
width: 1em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.oi[data-glyph] {
|
||||
&:before {
|
||||
position: relative;
|
||||
top: 1px;
|
||||
font-family: 'Icons';
|
||||
display: inline-block;
|
||||
speak: none;
|
||||
line-height: 1;
|
||||
vertical-align: baseline;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
&:empty:before {
|
||||
width: 1em;
|
||||
text-align: center;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
&.oi-align-left:before {
|
||||
text-align: left;
|
||||
}
|
||||
&.oi-align-right:before {
|
||||
text-align: right;
|
||||
}
|
||||
&.oi-align-center:before {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
&.oi-flip-horizontal:before {
|
||||
-webkit-transform: scale(-1, 1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(-1, 1);
|
||||
}
|
||||
|
||||
&.oi-flip-vertical:before {
|
||||
-webkit-transform: scale(1, -1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(1, -1);
|
||||
}
|
||||
|
||||
&.oi-flip-horizontal-vertical:before {
|
||||
-webkit-transform: scale(-1, -1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(-1, -1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.oi[data-glyph=account-login]:before {
|
||||
content: '\e000';
|
||||
}
|
||||
|
||||
.oi[data-glyph=account-logout]:before {
|
||||
content: '\e001';
|
||||
}
|
||||
|
||||
.oi[data-glyph=action-redo]:before {
|
||||
content: '\e002';
|
||||
}
|
||||
|
||||
.oi[data-glyph=action-undo]:before {
|
||||
content: '\e003';
|
||||
}
|
||||
|
||||
.oi[data-glyph=align-center]:before {
|
||||
content: '\e004';
|
||||
}
|
||||
|
||||
.oi[data-glyph=align-left]:before {
|
||||
content: '\e005';
|
||||
}
|
||||
|
||||
.oi[data-glyph=align-right]:before {
|
||||
content: '\e006';
|
||||
}
|
||||
|
||||
.oi[data-glyph=aperture]:before {
|
||||
content: '\e007';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-bottom]:before {
|
||||
content: '\e008';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-circle-bottom]:before {
|
||||
content: '\e009';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-circle-left]:before {
|
||||
content: '\e00a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-circle-right]:before {
|
||||
content: '\e00b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-circle-top]:before {
|
||||
content: '\e00c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-left]:before {
|
||||
content: '\e00d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-right]:before {
|
||||
content: '\e00e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-thick-bottom]:before {
|
||||
content: '\e00f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-thick-left]:before {
|
||||
content: '\e010';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-thick-right]:before {
|
||||
content: '\e011';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-thick-top]:before {
|
||||
content: '\e012';
|
||||
}
|
||||
|
||||
.oi[data-glyph=arrow-top]:before {
|
||||
content: '\e013';
|
||||
}
|
||||
|
||||
.oi[data-glyph=audio-spectrum]:before {
|
||||
content: '\e014';
|
||||
}
|
||||
|
||||
.oi[data-glyph=audio]:before {
|
||||
content: '\e015';
|
||||
}
|
||||
|
||||
.oi[data-glyph=badge]:before {
|
||||
content: '\e016';
|
||||
}
|
||||
|
||||
.oi[data-glyph=ban]:before {
|
||||
content: '\e017';
|
||||
}
|
||||
|
||||
.oi[data-glyph=bar-chart]:before {
|
||||
content: '\e018';
|
||||
}
|
||||
|
||||
.oi[data-glyph=basket]:before {
|
||||
content: '\e019';
|
||||
}
|
||||
|
||||
.oi[data-glyph=battery-empty]:before {
|
||||
content: '\e01a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=battery-full]:before {
|
||||
content: '\e01b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=beaker]:before {
|
||||
content: '\e01c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=bell]:before {
|
||||
content: '\e01d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=bluetooth]:before {
|
||||
content: '\e01e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=bold]:before {
|
||||
content: '\e01f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=bolt]:before {
|
||||
content: '\e020';
|
||||
}
|
||||
|
||||
.oi[data-glyph=book]:before {
|
||||
content: '\e021';
|
||||
}
|
||||
|
||||
.oi[data-glyph=bookmark]:before {
|
||||
content: '\e022';
|
||||
}
|
||||
|
||||
.oi[data-glyph=box]:before {
|
||||
content: '\e023';
|
||||
}
|
||||
|
||||
.oi[data-glyph=briefcase]:before {
|
||||
content: '\e024';
|
||||
}
|
||||
|
||||
.oi[data-glyph=british-pound]:before {
|
||||
content: '\e025';
|
||||
}
|
||||
|
||||
.oi[data-glyph=browser]:before {
|
||||
content: '\e026';
|
||||
}
|
||||
|
||||
.oi[data-glyph=brush]:before {
|
||||
content: '\e027';
|
||||
}
|
||||
|
||||
.oi[data-glyph=bug]:before {
|
||||
content: '\e028';
|
||||
}
|
||||
|
||||
.oi[data-glyph=bullhorn]:before {
|
||||
content: '\e029';
|
||||
}
|
||||
|
||||
.oi[data-glyph=calculator]:before {
|
||||
content: '\e02a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=calendar]:before {
|
||||
content: '\e02b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=camera-slr]:before {
|
||||
content: '\e02c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=caret-bottom]:before {
|
||||
content: '\e02d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=caret-left]:before {
|
||||
content: '\e02e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=caret-right]:before {
|
||||
content: '\e02f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=caret-top]:before {
|
||||
content: '\e030';
|
||||
}
|
||||
|
||||
.oi[data-glyph=cart]:before {
|
||||
content: '\e031';
|
||||
}
|
||||
|
||||
.oi[data-glyph=chat]:before {
|
||||
content: '\e032';
|
||||
}
|
||||
|
||||
.oi[data-glyph=check]:before {
|
||||
content: '\e033';
|
||||
}
|
||||
|
||||
.oi[data-glyph=chevron-bottom]:before {
|
||||
content: '\e034';
|
||||
}
|
||||
|
||||
.oi[data-glyph=chevron-left]:before {
|
||||
content: '\e035';
|
||||
}
|
||||
|
||||
.oi[data-glyph=chevron-right]:before {
|
||||
content: '\e036';
|
||||
}
|
||||
|
||||
.oi[data-glyph=chevron-top]:before {
|
||||
content: '\e037';
|
||||
}
|
||||
|
||||
.oi[data-glyph=circle-check]:before {
|
||||
content: '\e038';
|
||||
}
|
||||
|
||||
.oi[data-glyph=circle-x]:before {
|
||||
content: '\e039';
|
||||
}
|
||||
|
||||
.oi[data-glyph=clipboard]:before {
|
||||
content: '\e03a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=clock]:before {
|
||||
content: '\e03b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=cloud-download]:before {
|
||||
content: '\e03c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=cloud-upload]:before {
|
||||
content: '\e03d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=cloud]:before {
|
||||
content: '\e03e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=cloudy]:before {
|
||||
content: '\e03f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=code]:before {
|
||||
content: '\e040';
|
||||
}
|
||||
|
||||
.oi[data-glyph=cog]:before {
|
||||
content: '\e041';
|
||||
}
|
||||
|
||||
.oi[data-glyph=collapse-down]:before {
|
||||
content: '\e042';
|
||||
}
|
||||
|
||||
.oi[data-glyph=collapse-left]:before {
|
||||
content: '\e043';
|
||||
}
|
||||
|
||||
.oi[data-glyph=collapse-right]:before {
|
||||
content: '\e044';
|
||||
}
|
||||
|
||||
.oi[data-glyph=collapse-up]:before {
|
||||
content: '\e045';
|
||||
}
|
||||
|
||||
.oi[data-glyph=command]:before {
|
||||
content: '\e046';
|
||||
}
|
||||
|
||||
.oi[data-glyph=comment-square]:before {
|
||||
content: '\e047';
|
||||
}
|
||||
|
||||
.oi[data-glyph=compass]:before {
|
||||
content: '\e048';
|
||||
}
|
||||
|
||||
.oi[data-glyph=contrast]:before {
|
||||
content: '\e049';
|
||||
}
|
||||
|
||||
.oi[data-glyph=copywriting]:before {
|
||||
content: '\e04a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=credit-card]:before {
|
||||
content: '\e04b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=crop]:before {
|
||||
content: '\e04c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=dashboard]:before {
|
||||
content: '\e04d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=data-transfer-download]:before {
|
||||
content: '\e04e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=data-transfer-upload]:before {
|
||||
content: '\e04f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=delete]:before {
|
||||
content: '\e050';
|
||||
}
|
||||
|
||||
.oi[data-glyph=dial]:before {
|
||||
content: '\e051';
|
||||
}
|
||||
|
||||
.oi[data-glyph=document]:before {
|
||||
content: '\e052';
|
||||
}
|
||||
|
||||
.oi[data-glyph=dollar]:before {
|
||||
content: '\e053';
|
||||
}
|
||||
|
||||
.oi[data-glyph=double-quote-sans-left]:before {
|
||||
content: '\e054';
|
||||
}
|
||||
|
||||
.oi[data-glyph=double-quote-sans-right]:before {
|
||||
content: '\e055';
|
||||
}
|
||||
|
||||
.oi[data-glyph=double-quote-serif-left]:before {
|
||||
content: '\e056';
|
||||
}
|
||||
|
||||
.oi[data-glyph=double-quote-serif-right]:before {
|
||||
content: '\e057';
|
||||
}
|
||||
|
||||
.oi[data-glyph=droplet]:before {
|
||||
content: '\e058';
|
||||
}
|
||||
|
||||
.oi[data-glyph=eject]:before {
|
||||
content: '\e059';
|
||||
}
|
||||
|
||||
.oi[data-glyph=elevator]:before {
|
||||
content: '\e05a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=ellipses]:before {
|
||||
content: '\e05b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=envelope-closed]:before {
|
||||
content: '\e05c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=envelope-open]:before {
|
||||
content: '\e05d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=euro]:before {
|
||||
content: '\e05e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=excerpt]:before {
|
||||
content: '\e05f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=expand-down]:before {
|
||||
content: '\e060';
|
||||
}
|
||||
|
||||
.oi[data-glyph=expand-left]:before {
|
||||
content: '\e061';
|
||||
}
|
||||
|
||||
.oi[data-glyph=expand-right]:before {
|
||||
content: '\e062';
|
||||
}
|
||||
|
||||
.oi[data-glyph=expand-up]:before {
|
||||
content: '\e063';
|
||||
}
|
||||
|
||||
.oi[data-glyph=external-link]:before {
|
||||
content: '\e064';
|
||||
}
|
||||
|
||||
.oi[data-glyph=eye]:before {
|
||||
content: '\e065';
|
||||
}
|
||||
|
||||
.oi[data-glyph=eyedropper]:before {
|
||||
content: '\e066';
|
||||
}
|
||||
|
||||
.oi[data-glyph=file]:before {
|
||||
content: '\e067';
|
||||
}
|
||||
|
||||
.oi[data-glyph=fire]:before {
|
||||
content: '\e068';
|
||||
}
|
||||
|
||||
.oi[data-glyph=flag]:before {
|
||||
content: '\e069';
|
||||
}
|
||||
|
||||
.oi[data-glyph=flash]:before {
|
||||
content: '\e06a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=folder]:before {
|
||||
content: '\e06b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=fork]:before {
|
||||
content: '\e06c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=fullscreen-enter]:before {
|
||||
content: '\e06d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=fullscreen-exit]:before {
|
||||
content: '\e06e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=globe]:before {
|
||||
content: '\e06f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=graph]:before {
|
||||
content: '\e070';
|
||||
}
|
||||
|
||||
.oi[data-glyph=grid-four-up]:before {
|
||||
content: '\e071';
|
||||
}
|
||||
|
||||
.oi[data-glyph=grid-three-up]:before {
|
||||
content: '\e072';
|
||||
}
|
||||
|
||||
.oi[data-glyph=grid-two-up]:before {
|
||||
content: '\e073';
|
||||
}
|
||||
|
||||
.oi[data-glyph=hard-drive]:before {
|
||||
content: '\e074';
|
||||
}
|
||||
|
||||
.oi[data-glyph=header]:before {
|
||||
content: '\e075';
|
||||
}
|
||||
|
||||
.oi[data-glyph=headphones]:before {
|
||||
content: '\e076';
|
||||
}
|
||||
|
||||
.oi[data-glyph=heart]:before {
|
||||
content: '\e077';
|
||||
}
|
||||
|
||||
.oi[data-glyph=home]:before {
|
||||
content: '\e078';
|
||||
}
|
||||
|
||||
.oi[data-glyph=image]:before {
|
||||
content: '\e079';
|
||||
}
|
||||
|
||||
.oi[data-glyph=inbox]:before {
|
||||
content: '\e07a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=infinity]:before {
|
||||
content: '\e07b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=info]:before {
|
||||
content: '\e07c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=italic]:before {
|
||||
content: '\e07d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=justify-center]:before {
|
||||
content: '\e07e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=justify-left]:before {
|
||||
content: '\e07f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=justify-right]:before {
|
||||
content: '\e080';
|
||||
}
|
||||
|
||||
.oi[data-glyph=key]:before {
|
||||
content: '\e081';
|
||||
}
|
||||
|
||||
.oi[data-glyph=laptop]:before {
|
||||
content: '\e082';
|
||||
}
|
||||
|
||||
.oi[data-glyph=layers]:before {
|
||||
content: '\e083';
|
||||
}
|
||||
|
||||
.oi[data-glyph=lightbulb]:before {
|
||||
content: '\e084';
|
||||
}
|
||||
|
||||
.oi[data-glyph=link-broken]:before {
|
||||
content: '\e085';
|
||||
}
|
||||
|
||||
.oi[data-glyph=link-intact]:before {
|
||||
content: '\e086';
|
||||
}
|
||||
|
||||
.oi[data-glyph=list-rich]:before {
|
||||
content: '\e087';
|
||||
}
|
||||
|
||||
.oi[data-glyph=list]:before {
|
||||
content: '\e088';
|
||||
}
|
||||
|
||||
.oi[data-glyph=location]:before {
|
||||
content: '\e089';
|
||||
}
|
||||
|
||||
.oi[data-glyph=lock-locked]:before {
|
||||
content: '\e08a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=lock-unlocked]:before {
|
||||
content: '\e08b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=loop-circular]:before {
|
||||
content: '\e08c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=loop-square]:before {
|
||||
content: '\e08d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=loop]:before {
|
||||
content: '\e08e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=magnifying-glass]:before {
|
||||
content: '\e08f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=map-marker]:before {
|
||||
content: '\e090';
|
||||
}
|
||||
|
||||
.oi[data-glyph=map]:before {
|
||||
content: '\e091';
|
||||
}
|
||||
|
||||
.oi[data-glyph=media-pause]:before {
|
||||
content: '\e092';
|
||||
}
|
||||
|
||||
.oi[data-glyph=media-play]:before {
|
||||
content: '\e093';
|
||||
}
|
||||
|
||||
.oi[data-glyph=media-record]:before {
|
||||
content: '\e094';
|
||||
}
|
||||
|
||||
.oi[data-glyph=media-skip-backward]:before {
|
||||
content: '\e095';
|
||||
}
|
||||
|
||||
.oi[data-glyph=media-skip-forward]:before {
|
||||
content: '\e096';
|
||||
}
|
||||
|
||||
.oi[data-glyph=media-step-backward]:before {
|
||||
content: '\e097';
|
||||
}
|
||||
|
||||
.oi[data-glyph=media-step-forward]:before {
|
||||
content: '\e098';
|
||||
}
|
||||
|
||||
.oi[data-glyph=media-stop]:before {
|
||||
content: '\e099';
|
||||
}
|
||||
|
||||
.oi[data-glyph=medical-cross]:before {
|
||||
content: '\e09a';
|
||||
}
|
||||
|
||||
.oi[data-glyph=menu]:before {
|
||||
content: '\e09b';
|
||||
}
|
||||
|
||||
.oi[data-glyph=microphone]:before {
|
||||
content: '\e09c';
|
||||
}
|
||||
|
||||
.oi[data-glyph=minus]:before {
|
||||
content: '\e09d';
|
||||
}
|
||||
|
||||
.oi[data-glyph=monitor]:before {
|
||||
content: '\e09e';
|
||||
}
|
||||
|
||||
.oi[data-glyph=moon]:before {
|
||||
content: '\e09f';
|
||||
}
|
||||
|
||||
.oi[data-glyph=move]:before {
|
||||
content: '\e0a0';
|
||||
}
|
||||
|
||||
.oi[data-glyph=musical-note]:before {
|
||||
content: '\e0a1';
|
||||
}
|
||||
|
||||
.oi[data-glyph=paperclip]:before {
|
||||
content: '\e0a2';
|
||||
}
|
||||
|
||||
.oi[data-glyph=pencil]:before {
|
||||
content: '\e0a3';
|
||||
}
|
||||
|
||||
.oi[data-glyph=people]:before {
|
||||
content: '\e0a4';
|
||||
}
|
||||
|
||||
.oi[data-glyph=person]:before {
|
||||
content: '\e0a5';
|
||||
}
|
||||
|
||||
.oi[data-glyph=phone]:before {
|
||||
content: '\e0a6';
|
||||
}
|
||||
|
||||
.oi[data-glyph=pie-chart]:before {
|
||||
content: '\e0a7';
|
||||
}
|
||||
|
||||
.oi[data-glyph=pin]:before {
|
||||
content: '\e0a8';
|
||||
}
|
||||
|
||||
.oi[data-glyph=play-circle]:before {
|
||||
content: '\e0a9';
|
||||
}
|
||||
|
||||
.oi[data-glyph=plus]:before {
|
||||
content: '\e0aa';
|
||||
}
|
||||
|
||||
.oi[data-glyph=power-standby]:before {
|
||||
content: '\e0ab';
|
||||
}
|
||||
|
||||
.oi[data-glyph=print]:before {
|
||||
content: '\e0ac';
|
||||
}
|
||||
|
||||
.oi[data-glyph=project]:before {
|
||||
content: '\e0ad';
|
||||
}
|
||||
|
||||
.oi[data-glyph=pulse]:before {
|
||||
content: '\e0ae';
|
||||
}
|
||||
|
||||
.oi[data-glyph=puzzle-piece]:before {
|
||||
content: '\e0af';
|
||||
}
|
||||
|
||||
.oi[data-glyph=question-mark]:before {
|
||||
content: '\e0b0';
|
||||
}
|
||||
|
||||
.oi[data-glyph=rain]:before {
|
||||
content: '\e0b1';
|
||||
}
|
||||
|
||||
.oi[data-glyph=random]:before {
|
||||
content: '\e0b2';
|
||||
}
|
||||
|
||||
.oi[data-glyph=reload]:before {
|
||||
content: '\e0b3';
|
||||
}
|
||||
|
||||
.oi[data-glyph=resize-both]:before {
|
||||
content: '\e0b4';
|
||||
}
|
||||
|
||||
.oi[data-glyph=resize-height]:before {
|
||||
content: '\e0b5';
|
||||
}
|
||||
|
||||
.oi[data-glyph=resize-width]:before {
|
||||
content: '\e0b6';
|
||||
}
|
||||
|
||||
.oi[data-glyph=rss-alt]:before {
|
||||
content: '\e0b7';
|
||||
}
|
||||
|
||||
.oi[data-glyph=rss]:before {
|
||||
content: '\e0b8';
|
||||
}
|
||||
|
||||
.oi[data-glyph=script]:before {
|
||||
content: '\e0b9';
|
||||
}
|
||||
|
||||
.oi[data-glyph=share-boxed]:before {
|
||||
content: '\e0ba';
|
||||
}
|
||||
|
||||
.oi[data-glyph=share]:before {
|
||||
content: '\e0bb';
|
||||
}
|
||||
|
||||
.oi[data-glyph=shield]:before {
|
||||
content: '\e0bc';
|
||||
}
|
||||
|
||||
.oi[data-glyph=signal]:before {
|
||||
content: '\e0bd';
|
||||
}
|
||||
|
||||
.oi[data-glyph=signpost]:before {
|
||||
content: '\e0be';
|
||||
}
|
||||
|
||||
.oi[data-glyph=sort-ascending]:before {
|
||||
content: '\e0bf';
|
||||
}
|
||||
|
||||
.oi[data-glyph=sort-descending]:before {
|
||||
content: '\e0c0';
|
||||
}
|
||||
|
||||
.oi[data-glyph=spreadsheet]:before {
|
||||
content: '\e0c1';
|
||||
}
|
||||
|
||||
.oi[data-glyph=star]:before {
|
||||
content: '\e0c2';
|
||||
}
|
||||
|
||||
.oi[data-glyph=sun]:before {
|
||||
content: '\e0c3';
|
||||
}
|
||||
|
||||
.oi[data-glyph=tablet]:before {
|
||||
content: '\e0c4';
|
||||
}
|
||||
|
||||
.oi[data-glyph=tag]:before {
|
||||
content: '\e0c5';
|
||||
}
|
||||
|
||||
.oi[data-glyph=tags]:before {
|
||||
content: '\e0c6';
|
||||
}
|
||||
|
||||
.oi[data-glyph=target]:before {
|
||||
content: '\e0c7';
|
||||
}
|
||||
|
||||
.oi[data-glyph=task]:before {
|
||||
content: '\e0c8';
|
||||
}
|
||||
|
||||
.oi[data-glyph=terminal]:before {
|
||||
content: '\e0c9';
|
||||
}
|
||||
|
||||
.oi[data-glyph=text]:before {
|
||||
content: '\e0ca';
|
||||
}
|
||||
|
||||
.oi[data-glyph=thumb-down]:before {
|
||||
content: '\e0cb';
|
||||
}
|
||||
|
||||
.oi[data-glyph=thumb-up]:before {
|
||||
content: '\e0cc';
|
||||
}
|
||||
|
||||
.oi[data-glyph=timer]:before {
|
||||
content: '\e0cd';
|
||||
}
|
||||
|
||||
.oi[data-glyph=transfer]:before {
|
||||
content: '\e0ce';
|
||||
}
|
||||
|
||||
.oi[data-glyph=trash]:before {
|
||||
content: '\e0cf';
|
||||
}
|
||||
|
||||
.oi[data-glyph=underline]:before {
|
||||
content: '\e0d0';
|
||||
}
|
||||
|
||||
.oi[data-glyph=vertical-align-bottom]:before {
|
||||
content: '\e0d1';
|
||||
}
|
||||
|
||||
.oi[data-glyph=vertical-align-center]:before {
|
||||
content: '\e0d2';
|
||||
}
|
||||
|
||||
.oi[data-glyph=vertical-align-top]:before {
|
||||
content: '\e0d3';
|
||||
}
|
||||
|
||||
.oi[data-glyph=video]:before {
|
||||
content: '\e0d4';
|
||||
}
|
||||
|
||||
.oi[data-glyph=volume-high]:before {
|
||||
content: '\e0d5';
|
||||
}
|
||||
|
||||
.oi[data-glyph=volume-low]:before {
|
||||
content: '\e0d6';
|
||||
}
|
||||
|
||||
.oi[data-glyph=volume-off]:before {
|
||||
content: '\e0d7';
|
||||
}
|
||||
|
||||
.oi[data-glyph=warning]:before {
|
||||
content: '\e0d8';
|
||||
}
|
||||
|
||||
.oi[data-glyph=wifi]:before {
|
||||
content: '\e0d9';
|
||||
}
|
||||
|
||||
.oi[data-glyph=wrench]:before {
|
||||
content: '\e0da';
|
||||
}
|
||||
|
||||
.oi[data-glyph=x]:before {
|
||||
content: '\e0db';
|
||||
}
|
||||
|
||||
.oi[data-glyph=yen]:before {
|
||||
content: '\e0dc';
|
||||
}
|
||||
|
||||
.oi[data-glyph=zoom-in]:before {
|
||||
content: '\e0dd';
|
||||
}
|
||||
|
||||
.oi[data-glyph=zoom-out]:before {
|
||||
content: '\e0de';
|
||||
}
|
||||
|
|
@ -1,733 +0,0 @@
|
|||
@font-face
|
||||
font-family 'Icons'
|
||||
src url('../fonts/open-iconic.eot')
|
||||
src url('../fonts/open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('../fonts/open-iconic.woff') format('woff'), url('../fonts/open-iconic.ttf') format('truetype'), url('../fonts/open-iconic.otf') format('opentype'), url('../fonts/open-iconic.svg#iconic-sm') format('svg')
|
||||
font-weight normal
|
||||
font-style normal
|
||||
|
||||
|
||||
.oi[data-glyph].oi-text-replace
|
||||
font-size 0
|
||||
line-height 0
|
||||
|
||||
.oi[data-glyph].oi-text-replace:before
|
||||
width 1em
|
||||
text-align center
|
||||
|
||||
.oi[data-glyph]
|
||||
&:before
|
||||
position relative
|
||||
top 1px
|
||||
font-family 'Icons'
|
||||
display inline-block
|
||||
speak none
|
||||
line-height 1
|
||||
vertical-align baseline
|
||||
font-weight normal
|
||||
font-style normal
|
||||
-webkit-font-smoothing antialiased
|
||||
-moz-osx-font-smoothing grayscale
|
||||
|
||||
&:empty:before
|
||||
width 1em
|
||||
text-align center
|
||||
box-sizing content-box
|
||||
|
||||
&.oi-align-left:before
|
||||
text-align left
|
||||
|
||||
&.oi-align-right:before
|
||||
text-align right
|
||||
|
||||
&.oi-align-center:before
|
||||
text-align center
|
||||
|
||||
|
||||
&.oi-flip-horizontal:before
|
||||
-webkit-transform scale(-1, 1)
|
||||
-ms-transform scale(-1, 1)
|
||||
transform scale(-1, 1)
|
||||
|
||||
|
||||
&.oi-flip-vertical:before
|
||||
-webkit-transform scale(1, -1)
|
||||
-ms-transform scale(-1, 1)
|
||||
transform scale(1, -1)
|
||||
|
||||
|
||||
&.oi-flip-horizontal-vertical:before
|
||||
-webkit-transform scale(-1, -1)
|
||||
-ms-transform scale(-1, 1)
|
||||
transform scale(-1, -1)
|
||||
|
||||
|
||||
|
||||
|
||||
.oi[data-glyph=account-login]:before
|
||||
content '\e000'
|
||||
|
||||
.oi[data-glyph=account-logout]:before
|
||||
content '\e001'
|
||||
|
||||
.oi[data-glyph=action-redo]:before
|
||||
content '\e002'
|
||||
|
||||
.oi[data-glyph=action-undo]:before
|
||||
content '\e003'
|
||||
|
||||
.oi[data-glyph=align-center]:before
|
||||
content '\e004'
|
||||
|
||||
.oi[data-glyph=align-left]:before
|
||||
content '\e005'
|
||||
|
||||
.oi[data-glyph=align-right]:before
|
||||
content '\e006'
|
||||
|
||||
.oi[data-glyph=aperture]:before
|
||||
content '\e007'
|
||||
|
||||
.oi[data-glyph=arrow-bottom]:before
|
||||
content '\e008'
|
||||
|
||||
.oi[data-glyph=arrow-circle-bottom]:before
|
||||
content '\e009'
|
||||
|
||||
.oi[data-glyph=arrow-circle-left]:before
|
||||
content '\e00a'
|
||||
|
||||
.oi[data-glyph=arrow-circle-right]:before
|
||||
content '\e00b'
|
||||
|
||||
.oi[data-glyph=arrow-circle-top]:before
|
||||
content '\e00c'
|
||||
|
||||
.oi[data-glyph=arrow-left]:before
|
||||
content '\e00d'
|
||||
|
||||
.oi[data-glyph=arrow-right]:before
|
||||
content '\e00e'
|
||||
|
||||
.oi[data-glyph=arrow-thick-bottom]:before
|
||||
content '\e00f'
|
||||
|
||||
.oi[data-glyph=arrow-thick-left]:before
|
||||
content '\e010'
|
||||
|
||||
.oi[data-glyph=arrow-thick-right]:before
|
||||
content '\e011'
|
||||
|
||||
.oi[data-glyph=arrow-thick-top]:before
|
||||
content '\e012'
|
||||
|
||||
.oi[data-glyph=arrow-top]:before
|
||||
content '\e013'
|
||||
|
||||
.oi[data-glyph=audio-spectrum]:before
|
||||
content '\e014'
|
||||
|
||||
.oi[data-glyph=audio]:before
|
||||
content '\e015'
|
||||
|
||||
.oi[data-glyph=badge]:before
|
||||
content '\e016'
|
||||
|
||||
.oi[data-glyph=ban]:before
|
||||
content '\e017'
|
||||
|
||||
.oi[data-glyph=bar-chart]:before
|
||||
content '\e018'
|
||||
|
||||
.oi[data-glyph=basket]:before
|
||||
content '\e019'
|
||||
|
||||
.oi[data-glyph=battery-empty]:before
|
||||
content '\e01a'
|
||||
|
||||
.oi[data-glyph=battery-full]:before
|
||||
content '\e01b'
|
||||
|
||||
.oi[data-glyph=beaker]:before
|
||||
content '\e01c'
|
||||
|
||||
.oi[data-glyph=bell]:before
|
||||
content '\e01d'
|
||||
|
||||
.oi[data-glyph=bluetooth]:before
|
||||
content '\e01e'
|
||||
|
||||
.oi[data-glyph=bold]:before
|
||||
content '\e01f'
|
||||
|
||||
.oi[data-glyph=bolt]:before
|
||||
content '\e020'
|
||||
|
||||
.oi[data-glyph=book]:before
|
||||
content '\e021'
|
||||
|
||||
.oi[data-glyph=bookmark]:before
|
||||
content '\e022'
|
||||
|
||||
.oi[data-glyph=box]:before
|
||||
content '\e023'
|
||||
|
||||
.oi[data-glyph=briefcase]:before
|
||||
content '\e024'
|
||||
|
||||
.oi[data-glyph=british-pound]:before
|
||||
content '\e025'
|
||||
|
||||
.oi[data-glyph=browser]:before
|
||||
content '\e026'
|
||||
|
||||
.oi[data-glyph=brush]:before
|
||||
content '\e027'
|
||||
|
||||
.oi[data-glyph=bug]:before
|
||||
content '\e028'
|
||||
|
||||
.oi[data-glyph=bullhorn]:before
|
||||
content '\e029'
|
||||
|
||||
.oi[data-glyph=calculator]:before
|
||||
content '\e02a'
|
||||
|
||||
.oi[data-glyph=calendar]:before
|
||||
content '\e02b'
|
||||
|
||||
.oi[data-glyph=camera-slr]:before
|
||||
content '\e02c'
|
||||
|
||||
.oi[data-glyph=caret-bottom]:before
|
||||
content '\e02d'
|
||||
|
||||
.oi[data-glyph=caret-left]:before
|
||||
content '\e02e'
|
||||
|
||||
.oi[data-glyph=caret-right]:before
|
||||
content '\e02f'
|
||||
|
||||
.oi[data-glyph=caret-top]:before
|
||||
content '\e030'
|
||||
|
||||
.oi[data-glyph=cart]:before
|
||||
content '\e031'
|
||||
|
||||
.oi[data-glyph=chat]:before
|
||||
content '\e032'
|
||||
|
||||
.oi[data-glyph=check]:before
|
||||
content '\e033'
|
||||
|
||||
.oi[data-glyph=chevron-bottom]:before
|
||||
content '\e034'
|
||||
|
||||
.oi[data-glyph=chevron-left]:before
|
||||
content '\e035'
|
||||
|
||||
.oi[data-glyph=chevron-right]:before
|
||||
content '\e036'
|
||||
|
||||
.oi[data-glyph=chevron-top]:before
|
||||
content '\e037'
|
||||
|
||||
.oi[data-glyph=circle-check]:before
|
||||
content '\e038'
|
||||
|
||||
.oi[data-glyph=circle-x]:before
|
||||
content '\e039'
|
||||
|
||||
.oi[data-glyph=clipboard]:before
|
||||
content '\e03a'
|
||||
|
||||
.oi[data-glyph=clock]:before
|
||||
content '\e03b'
|
||||
|
||||
.oi[data-glyph=cloud-download]:before
|
||||
content '\e03c'
|
||||
|
||||
.oi[data-glyph=cloud-upload]:before
|
||||
content '\e03d'
|
||||
|
||||
.oi[data-glyph=cloud]:before
|
||||
content '\e03e'
|
||||
|
||||
.oi[data-glyph=cloudy]:before
|
||||
content '\e03f'
|
||||
|
||||
.oi[data-glyph=code]:before
|
||||
content '\e040'
|
||||
|
||||
.oi[data-glyph=cog]:before
|
||||
content '\e041'
|
||||
|
||||
.oi[data-glyph=collapse-down]:before
|
||||
content '\e042'
|
||||
|
||||
.oi[data-glyph=collapse-left]:before
|
||||
content '\e043'
|
||||
|
||||
.oi[data-glyph=collapse-right]:before
|
||||
content '\e044'
|
||||
|
||||
.oi[data-glyph=collapse-up]:before
|
||||
content '\e045'
|
||||
|
||||
.oi[data-glyph=command]:before
|
||||
content '\e046'
|
||||
|
||||
.oi[data-glyph=comment-square]:before
|
||||
content '\e047'
|
||||
|
||||
.oi[data-glyph=compass]:before
|
||||
content '\e048'
|
||||
|
||||
.oi[data-glyph=contrast]:before
|
||||
content '\e049'
|
||||
|
||||
.oi[data-glyph=copywriting]:before
|
||||
content '\e04a'
|
||||
|
||||
.oi[data-glyph=credit-card]:before
|
||||
content '\e04b'
|
||||
|
||||
.oi[data-glyph=crop]:before
|
||||
content '\e04c'
|
||||
|
||||
.oi[data-glyph=dashboard]:before
|
||||
content '\e04d'
|
||||
|
||||
.oi[data-glyph=data-transfer-download]:before
|
||||
content '\e04e'
|
||||
|
||||
.oi[data-glyph=data-transfer-upload]:before
|
||||
content '\e04f'
|
||||
|
||||
.oi[data-glyph=delete]:before
|
||||
content '\e050'
|
||||
|
||||
.oi[data-glyph=dial]:before
|
||||
content '\e051'
|
||||
|
||||
.oi[data-glyph=document]:before
|
||||
content '\e052'
|
||||
|
||||
.oi[data-glyph=dollar]:before
|
||||
content '\e053'
|
||||
|
||||
.oi[data-glyph=double-quote-sans-left]:before
|
||||
content '\e054'
|
||||
|
||||
.oi[data-glyph=double-quote-sans-right]:before
|
||||
content '\e055'
|
||||
|
||||
.oi[data-glyph=double-quote-serif-left]:before
|
||||
content '\e056'
|
||||
|
||||
.oi[data-glyph=double-quote-serif-right]:before
|
||||
content '\e057'
|
||||
|
||||
.oi[data-glyph=droplet]:before
|
||||
content '\e058'
|
||||
|
||||
.oi[data-glyph=eject]:before
|
||||
content '\e059'
|
||||
|
||||
.oi[data-glyph=elevator]:before
|
||||
content '\e05a'
|
||||
|
||||
.oi[data-glyph=ellipses]:before
|
||||
content '\e05b'
|
||||
|
||||
.oi[data-glyph=envelope-closed]:before
|
||||
content '\e05c'
|
||||
|
||||
.oi[data-glyph=envelope-open]:before
|
||||
content '\e05d'
|
||||
|
||||
.oi[data-glyph=euro]:before
|
||||
content '\e05e'
|
||||
|
||||
.oi[data-glyph=excerpt]:before
|
||||
content '\e05f'
|
||||
|
||||
.oi[data-glyph=expand-down]:before
|
||||
content '\e060'
|
||||
|
||||
.oi[data-glyph=expand-left]:before
|
||||
content '\e061'
|
||||
|
||||
.oi[data-glyph=expand-right]:before
|
||||
content '\e062'
|
||||
|
||||
.oi[data-glyph=expand-up]:before
|
||||
content '\e063'
|
||||
|
||||
.oi[data-glyph=external-link]:before
|
||||
content '\e064'
|
||||
|
||||
.oi[data-glyph=eye]:before
|
||||
content '\e065'
|
||||
|
||||
.oi[data-glyph=eyedropper]:before
|
||||
content '\e066'
|
||||
|
||||
.oi[data-glyph=file]:before
|
||||
content '\e067'
|
||||
|
||||
.oi[data-glyph=fire]:before
|
||||
content '\e068'
|
||||
|
||||
.oi[data-glyph=flag]:before
|
||||
content '\e069'
|
||||
|
||||
.oi[data-glyph=flash]:before
|
||||
content '\e06a'
|
||||
|
||||
.oi[data-glyph=folder]:before
|
||||
content '\e06b'
|
||||
|
||||
.oi[data-glyph=fork]:before
|
||||
content '\e06c'
|
||||
|
||||
.oi[data-glyph=fullscreen-enter]:before
|
||||
content '\e06d'
|
||||
|
||||
.oi[data-glyph=fullscreen-exit]:before
|
||||
content '\e06e'
|
||||
|
||||
.oi[data-glyph=globe]:before
|
||||
content '\e06f'
|
||||
|
||||
.oi[data-glyph=graph]:before
|
||||
content '\e070'
|
||||
|
||||
.oi[data-glyph=grid-four-up]:before
|
||||
content '\e071'
|
||||
|
||||
.oi[data-glyph=grid-three-up]:before
|
||||
content '\e072'
|
||||
|
||||
.oi[data-glyph=grid-two-up]:before
|
||||
content '\e073'
|
||||
|
||||
.oi[data-glyph=hard-drive]:before
|
||||
content '\e074'
|
||||
|
||||
.oi[data-glyph=header]:before
|
||||
content '\e075'
|
||||
|
||||
.oi[data-glyph=headphones]:before
|
||||
content '\e076'
|
||||
|
||||
.oi[data-glyph=heart]:before
|
||||
content '\e077'
|
||||
|
||||
.oi[data-glyph=home]:before
|
||||
content '\e078'
|
||||
|
||||
.oi[data-glyph=image]:before
|
||||
content '\e079'
|
||||
|
||||
.oi[data-glyph=inbox]:before
|
||||
content '\e07a'
|
||||
|
||||
.oi[data-glyph=infinity]:before
|
||||
content '\e07b'
|
||||
|
||||
.oi[data-glyph=info]:before
|
||||
content '\e07c'
|
||||
|
||||
.oi[data-glyph=italic]:before
|
||||
content '\e07d'
|
||||
|
||||
.oi[data-glyph=justify-center]:before
|
||||
content '\e07e'
|
||||
|
||||
.oi[data-glyph=justify-left]:before
|
||||
content '\e07f'
|
||||
|
||||
.oi[data-glyph=justify-right]:before
|
||||
content '\e080'
|
||||
|
||||
.oi[data-glyph=key]:before
|
||||
content '\e081'
|
||||
|
||||
.oi[data-glyph=laptop]:before
|
||||
content '\e082'
|
||||
|
||||
.oi[data-glyph=layers]:before
|
||||
content '\e083'
|
||||
|
||||
.oi[data-glyph=lightbulb]:before
|
||||
content '\e084'
|
||||
|
||||
.oi[data-glyph=link-broken]:before
|
||||
content '\e085'
|
||||
|
||||
.oi[data-glyph=link-intact]:before
|
||||
content '\e086'
|
||||
|
||||
.oi[data-glyph=list-rich]:before
|
||||
content '\e087'
|
||||
|
||||
.oi[data-glyph=list]:before
|
||||
content '\e088'
|
||||
|
||||
.oi[data-glyph=location]:before
|
||||
content '\e089'
|
||||
|
||||
.oi[data-glyph=lock-locked]:before
|
||||
content '\e08a'
|
||||
|
||||
.oi[data-glyph=lock-unlocked]:before
|
||||
content '\e08b'
|
||||
|
||||
.oi[data-glyph=loop-circular]:before
|
||||
content '\e08c'
|
||||
|
||||
.oi[data-glyph=loop-square]:before
|
||||
content '\e08d'
|
||||
|
||||
.oi[data-glyph=loop]:before
|
||||
content '\e08e'
|
||||
|
||||
.oi[data-glyph=magnifying-glass]:before
|
||||
content '\e08f'
|
||||
|
||||
.oi[data-glyph=map-marker]:before
|
||||
content '\e090'
|
||||
|
||||
.oi[data-glyph=map]:before
|
||||
content '\e091'
|
||||
|
||||
.oi[data-glyph=media-pause]:before
|
||||
content '\e092'
|
||||
|
||||
.oi[data-glyph=media-play]:before
|
||||
content '\e093'
|
||||
|
||||
.oi[data-glyph=media-record]:before
|
||||
content '\e094'
|
||||
|
||||
.oi[data-glyph=media-skip-backward]:before
|
||||
content '\e095'
|
||||
|
||||
.oi[data-glyph=media-skip-forward]:before
|
||||
content '\e096'
|
||||
|
||||
.oi[data-glyph=media-step-backward]:before
|
||||
content '\e097'
|
||||
|
||||
.oi[data-glyph=media-step-forward]:before
|
||||
content '\e098'
|
||||
|
||||
.oi[data-glyph=media-stop]:before
|
||||
content '\e099'
|
||||
|
||||
.oi[data-glyph=medical-cross]:before
|
||||
content '\e09a'
|
||||
|
||||
.oi[data-glyph=menu]:before
|
||||
content '\e09b'
|
||||
|
||||
.oi[data-glyph=microphone]:before
|
||||
content '\e09c'
|
||||
|
||||
.oi[data-glyph=minus]:before
|
||||
content '\e09d'
|
||||
|
||||
.oi[data-glyph=monitor]:before
|
||||
content '\e09e'
|
||||
|
||||
.oi[data-glyph=moon]:before
|
||||
content '\e09f'
|
||||
|
||||
.oi[data-glyph=move]:before
|
||||
content '\e0a0'
|
||||
|
||||
.oi[data-glyph=musical-note]:before
|
||||
content '\e0a1'
|
||||
|
||||
.oi[data-glyph=paperclip]:before
|
||||
content '\e0a2'
|
||||
|
||||
.oi[data-glyph=pencil]:before
|
||||
content '\e0a3'
|
||||
|
||||
.oi[data-glyph=people]:before
|
||||
content '\e0a4'
|
||||
|
||||
.oi[data-glyph=person]:before
|
||||
content '\e0a5'
|
||||
|
||||
.oi[data-glyph=phone]:before
|
||||
content '\e0a6'
|
||||
|
||||
.oi[data-glyph=pie-chart]:before
|
||||
content '\e0a7'
|
||||
|
||||
.oi[data-glyph=pin]:before
|
||||
content '\e0a8'
|
||||
|
||||
.oi[data-glyph=play-circle]:before
|
||||
content '\e0a9'
|
||||
|
||||
.oi[data-glyph=plus]:before
|
||||
content '\e0aa'
|
||||
|
||||
.oi[data-glyph=power-standby]:before
|
||||
content '\e0ab'
|
||||
|
||||
.oi[data-glyph=print]:before
|
||||
content '\e0ac'
|
||||
|
||||
.oi[data-glyph=project]:before
|
||||
content '\e0ad'
|
||||
|
||||
.oi[data-glyph=pulse]:before
|
||||
content '\e0ae'
|
||||
|
||||
.oi[data-glyph=puzzle-piece]:before
|
||||
content '\e0af'
|
||||
|
||||
.oi[data-glyph=question-mark]:before
|
||||
content '\e0b0'
|
||||
|
||||
.oi[data-glyph=rain]:before
|
||||
content '\e0b1'
|
||||
|
||||
.oi[data-glyph=random]:before
|
||||
content '\e0b2'
|
||||
|
||||
.oi[data-glyph=reload]:before
|
||||
content '\e0b3'
|
||||
|
||||
.oi[data-glyph=resize-both]:before
|
||||
content '\e0b4'
|
||||
|
||||
.oi[data-glyph=resize-height]:before
|
||||
content '\e0b5'
|
||||
|
||||
.oi[data-glyph=resize-width]:before
|
||||
content '\e0b6'
|
||||
|
||||
.oi[data-glyph=rss-alt]:before
|
||||
content '\e0b7'
|
||||
|
||||
.oi[data-glyph=rss]:before
|
||||
content '\e0b8'
|
||||
|
||||
.oi[data-glyph=script]:before
|
||||
content '\e0b9'
|
||||
|
||||
.oi[data-glyph=share-boxed]:before
|
||||
content '\e0ba'
|
||||
|
||||
.oi[data-glyph=share]:before
|
||||
content '\e0bb'
|
||||
|
||||
.oi[data-glyph=shield]:before
|
||||
content '\e0bc'
|
||||
|
||||
.oi[data-glyph=signal]:before
|
||||
content '\e0bd'
|
||||
|
||||
.oi[data-glyph=signpost]:before
|
||||
content '\e0be'
|
||||
|
||||
.oi[data-glyph=sort-ascending]:before
|
||||
content '\e0bf'
|
||||
|
||||
.oi[data-glyph=sort-descending]:before
|
||||
content '\e0c0'
|
||||
|
||||
.oi[data-glyph=spreadsheet]:before
|
||||
content '\e0c1'
|
||||
|
||||
.oi[data-glyph=star]:before
|
||||
content '\e0c2'
|
||||
|
||||
.oi[data-glyph=sun]:before
|
||||
content '\e0c3'
|
||||
|
||||
.oi[data-glyph=tablet]:before
|
||||
content '\e0c4'
|
||||
|
||||
.oi[data-glyph=tag]:before
|
||||
content '\e0c5'
|
||||
|
||||
.oi[data-glyph=tags]:before
|
||||
content '\e0c6'
|
||||
|
||||
.oi[data-glyph=target]:before
|
||||
content '\e0c7'
|
||||
|
||||
.oi[data-glyph=task]:before
|
||||
content '\e0c8'
|
||||
|
||||
.oi[data-glyph=terminal]:before
|
||||
content '\e0c9'
|
||||
|
||||
.oi[data-glyph=text]:before
|
||||
content '\e0ca'
|
||||
|
||||
.oi[data-glyph=thumb-down]:before
|
||||
content '\e0cb'
|
||||
|
||||
.oi[data-glyph=thumb-up]:before
|
||||
content '\e0cc'
|
||||
|
||||
.oi[data-glyph=timer]:before
|
||||
content '\e0cd'
|
||||
|
||||
.oi[data-glyph=transfer]:before
|
||||
content '\e0ce'
|
||||
|
||||
.oi[data-glyph=trash]:before
|
||||
content '\e0cf'
|
||||
|
||||
.oi[data-glyph=underline]:before
|
||||
content '\e0d0'
|
||||
|
||||
.oi[data-glyph=vertical-align-bottom]:before
|
||||
content '\e0d1'
|
||||
|
||||
.oi[data-glyph=vertical-align-center]:before
|
||||
content '\e0d2'
|
||||
|
||||
.oi[data-glyph=vertical-align-top]:before
|
||||
content '\e0d3'
|
||||
|
||||
.oi[data-glyph=video]:before
|
||||
content '\e0d4'
|
||||
|
||||
.oi[data-glyph=volume-high]:before
|
||||
content '\e0d5'
|
||||
|
||||
.oi[data-glyph=volume-low]:before
|
||||
content '\e0d6'
|
||||
|
||||
.oi[data-glyph=volume-off]:before
|
||||
content '\e0d7'
|
||||
|
||||
.oi[data-glyph=warning]:before
|
||||
content '\e0d8'
|
||||
|
||||
.oi[data-glyph=wifi]:before
|
||||
content '\e0d9'
|
||||
|
||||
.oi[data-glyph=wrench]:before
|
||||
content '\e0da'
|
||||
|
||||
.oi[data-glyph=x]:before
|
||||
content '\e0db'
|
||||
|
||||
.oi[data-glyph=yen]:before
|
||||
content '\e0dc'
|
||||
|
||||
.oi[data-glyph=zoom-in]:before
|
||||
content '\e0dd'
|
||||
|
||||
.oi[data-glyph=zoom-out]:before
|
||||
content '\e0de'
|
|
@ -1,36 +0,0 @@
|
|||
{
|
||||
"name": "open-iconic",
|
||||
"description": "An open source icon set with marks in SVG, sprite, webfont and raster format",
|
||||
"version": "1.1.1",
|
||||
"keywords": ["icon", "iconic", "open-iconic", "svg", "sprite", "font", "png", "webp"],
|
||||
"homepage": "http://useiconic.com/open-iconic/",
|
||||
"author": {
|
||||
"name": "Iconic",
|
||||
"email": "yourfriends@useiconic.com",
|
||||
"web": "http://useiconic.com/"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/iconic/open-iconic.git"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "P.J. Onori",
|
||||
"web": "http://twitter.com/somerandomdude"
|
||||
},
|
||||
{
|
||||
"name": "Dave Johnson",
|
||||
"web": "http://twitter.com/protodave"
|
||||
}
|
||||
],
|
||||
"licenses": [
|
||||
{
|
||||
"type": "MIT License",
|
||||
"url": "http://opensource.org/licenses/mit-license.html"
|
||||
},
|
||||
{
|
||||
"type": "SIL OFL 1.1",
|
||||
"url": "http://scripts.sil.org/OFL"
|
||||
}
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 191 B |
Before Width: | Height: | Size: 217 B |
Before Width: | Height: | Size: 246 B |
Before Width: | Height: | Size: 310 B |
Before Width: | Height: | Size: 391 B |
Before Width: | Height: | Size: 140 B |
Before Width: | Height: | Size: 186 B |
Before Width: | Height: | Size: 211 B |
Before Width: | Height: | Size: 234 B |
Before Width: | Height: | Size: 296 B |
Before Width: | Height: | Size: 378 B |
Before Width: | Height: | Size: 140 B |
Before Width: | Height: | Size: 247 B |
Before Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 417 B |
Before Width: | Height: | Size: 582 B |
Before Width: | Height: | Size: 779 B |
Before Width: | Height: | Size: 180 B |
Before Width: | Height: | Size: 238 B |
Before Width: | Height: | Size: 322 B |
Before Width: | Height: | Size: 414 B |
Before Width: | Height: | Size: 572 B |
Before Width: | Height: | Size: 760 B |
Before Width: | Height: | Size: 173 B |
Before Width: | Height: | Size: 134 B |
Before Width: | Height: | Size: 147 B |
Before Width: | Height: | Size: 154 B |
Before Width: | Height: | Size: 179 B |
Before Width: | Height: | Size: 218 B |
Before Width: | Height: | Size: 123 B |
Before Width: | Height: | Size: 134 B |
Before Width: | Height: | Size: 148 B |
Before Width: | Height: | Size: 154 B |
Before Width: | Height: | Size: 179 B |
Before Width: | Height: | Size: 214 B |
Before Width: | Height: | Size: 119 B |
Before Width: | Height: | Size: 132 B |
Before Width: | Height: | Size: 145 B |
Before Width: | Height: | Size: 152 B |
Before Width: | Height: | Size: 175 B |
Before Width: | Height: | Size: 212 B |
Before Width: | Height: | Size: 119 B |
Before Width: | Height: | Size: 405 B |
Before Width: | Height: | Size: 556 B |
Before Width: | Height: | Size: 723 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 219 B |
Before Width: | Height: | Size: 215 B |
Before Width: | Height: | Size: 256 B |
Before Width: | Height: | Size: 297 B |
Before Width: | Height: | Size: 407 B |
Before Width: | Height: | Size: 524 B |
Before Width: | Height: | Size: 149 B |
Before Width: | Height: | Size: 301 B |
Before Width: | Height: | Size: 430 B |
Before Width: | Height: | Size: 547 B |