commit
20a195e908
128 changed files with 41143 additions and 0 deletions
@ -0,0 +1,807 @@
|
||||
/* |
||||
===================================================================== |
||||
* Ceevee v1.0 Default Stylesheet |
||||
* url: styleshout.com |
||||
* 03-17-2014 |
||||
===================================================================== |
||||
|
||||
TOC: |
||||
a. Webfonts and Icon fonts |
||||
b. Reset |
||||
c. Default Styles |
||||
1. Basic |
||||
2. Typography |
||||
3. Links |
||||
4. Images |
||||
5. Buttons |
||||
6. Forms |
||||
d. Grid |
||||
e. Others |
||||
1. Clearing |
||||
2. Misc |
||||
|
||||
===================================================================== */ |
||||
|
||||
/* ------------------------------------------------------------------ */ |
||||
/* a. Webfonts and Icon fonts |
||||
------------------------------------------------------------------ */ |
||||
|
||||
@import url("fonts.css"); |
||||
@import url("fontello/css/fontello.css"); |
||||
@import url("font-awesome/css/font-awesome.min.css"); |
||||
|
||||
/* ------------------------------------------------------------------ |
||||
/* b. Reset |
||||
Adapted from: |
||||
Normalize.css - https://github.com/necolas/normalize.css/ |
||||
HTML5 Doctor Reset - html5doctor.com/html-5-reset-stylesheet/ |
||||
/* ------------------------------------------------------------------ */ |
||||
|
||||
html, body, div, span, object, iframe, |
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre, |
||||
abbr, address, cite, code, |
||||
del, dfn, em, img, ins, kbd, q, samp, |
||||
small, strong, sub, sup, var, |
||||
b, i, |
||||
dl, dt, dd, ol, ul, li, |
||||
fieldset, form, label, legend, |
||||
table, caption, tbody, tfoot, thead, tr, th, td, |
||||
article, aside, canvas, details, figcaption, figure, |
||||
footer, header, hgroup, menu, nav, section, summary, |
||||
time, mark, audio, video { |
||||
margin: 0; |
||||
padding: 0; |
||||
border: 0; |
||||
outline: 0; |
||||
font-size: 100%; |
||||
vertical-align: baseline; |
||||
background: transparent; |
||||
} |
||||
|
||||
article,aside,details,figcaption,figure, |
||||
footer,header,hgroup,menu,nav,section { |
||||
display: block; |
||||
} |
||||
|
||||
audio, |
||||
canvas, |
||||
video { |
||||
display: inline-block; |
||||
} |
||||
|
||||
audio:not([controls]) { |
||||
display: none; |
||||
height: 0; |
||||
} |
||||
|
||||
[hidden] { display: none; } |
||||
|
||||
code, kbd, pre, samp { |
||||
font-family: monospace, serif; |
||||
font-size: 1em; |
||||
} |
||||
|
||||
pre { |
||||
white-space: pre; |
||||
white-space: pre-wrap; |
||||
word-wrap: break-word; |
||||
} |
||||
|
||||
blockquote, q { quotes: “ “ } |
||||
|
||||
blockquote:before, blockquote:after, |
||||
q:before, q:after { |
||||
content: ''; |
||||
content: none; |
||||
} |
||||
|
||||
ins { |
||||
background-color: #ff9; |
||||
color: #000; |
||||
text-decoration: none; |
||||
} |
||||
|
||||
mark { |
||||
background-color: #A7F4F6; |
||||
color: #555; |
||||
} |
||||
|
||||
del { text-decoration: line-through; } |
||||
|
||||
abbr[title], dfn[title] { |
||||
border-bottom: 1px dotted; |
||||
cursor: help; |
||||
} |
||||
|
||||
table { |
||||
border-collapse: collapse; |
||||
border-spacing: 0; |
||||
} |
||||
|
||||
|
||||
/* ------------------------------------------------------------------ */ |
||||
/* c. Default and Basic Styles |
||||
Adapted from: |
||||
Skeleton CSS Framework - http://www.getskeleton.com/ |
||||
Typeplate Typographic Starter Kit - http://typeplate.com/ |
||||
/* ------------------------------------------------------------------ */ |
||||
|
||||
/* 1. Basic ------------------------------------------------------- */ |
||||
|
||||
*, |
||||
*:before, |
||||
*:after { |
||||
-moz-box-sizing: border-box; |
||||
-webkit-box-sizing: border-box; |
||||
box-sizing: border-box; |
||||
} |
||||
|
||||
html { |
||||
font-size: 62.5%; |
||||
-webkit-font-smoothing: antialiased; |
||||
} |
||||
|
||||
body { |
||||
background: #fff; |
||||
font-family: 'opensans-regular', sans-serif; |
||||
font-weight: normal; |
||||
font-size: 15px; |
||||
line-height: 30px; |
||||
color: #838C95; |
||||
|
||||
-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */ |
||||
-webkit-text-size-adjust: 100%; |
||||
} |
||||
|
||||
/* 2. Typography |
||||
Vertical rhythm with leading derived from 6 |
||||
--------------------------------------------------------------------- */ |
||||
|
||||
h1, h2, h3, h4, h5, h6 { |
||||
color: #313131; |
||||
font-family: 'opensans-bold', sans-serif; |
||||
font-weight: normal; |
||||
} |
||||
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; } |
||||
h1 { font-size: 38px; line-height: 42px; margin-bottom: 12px; letter-spacing: -1px; } |
||||
h2 { font-size: 28px; line-height: 36px; margin-bottom: 6px; } |
||||
h3 { font-size: 22px; line-height: 30px; margin-bottom: 12px; } |
||||
h4 { font-size: 20px; line-height: 30px; margin-bottom: 6px; } |
||||
h5 { font-size: 18px; line-height: 30px; } |
||||
h6 { font-size: 14px; line-height: 30px; } |
||||
.subheader { } |
||||
|
||||
p { margin: 0 0 30px 0; } |
||||
p img { margin: 0; } |
||||
p.lead { |
||||
font: 19px/36px 'opensans-light', sans-serif; |
||||
margin-bottom: 18px; |
||||
} |
||||
|
||||
/* for 'em' and 'strong' tags, font-size and line-height should be same with |
||||
the body tag due to rendering problems in some browsers */ |
||||
em { font: 15px/30px 'opensans-italic', sans-serif; } |
||||
strong, b { font: 15px/30px 'opensans-bold', sans-serif; } |
||||
small { font-size: 11px; line-height: inherit; } |
||||
|
||||
/* Blockquotes */ |
||||
blockquote { |
||||
margin: 30px 0px; |
||||
padding-left: 40px; |
||||
position: relative; |
||||
} |
||||
blockquote:before { |
||||
content: "\201C"; |
||||
opacity: 0.45; |
||||
font-size: 80px; |
||||
line-height: 0px; |
||||
margin: 0; |
||||
font-family: arial, sans-serif; |
||||
|
||||
position: absolute; |
||||
top: 30px; |
||||
left: 0; |
||||
} |
||||
blockquote p { |
||||
font-family: 'librebaskerville-italic', serif; |
||||
padding: 0; |
||||
font-size: 18px; |
||||
line-height: 36px; |
||||
} |
||||
blockquote cite { |
||||
display: block; |
||||
font-size: 12px; |
||||
font-style: normal; |
||||
line-height: 18px; |
||||
} |
||||
blockquote cite:before { content: "\2014 \0020"; } |
||||
blockquote cite a, |
||||
blockquote cite a:visited { color: #8B9798; border: none } |
||||
|
||||
/* --------------------------------------------------------------------- |
||||
/* Pull Quotes Markup |
||||
/* |
||||
<aside class="pull-quote"> |
||||
<blockquote> |
||||
<p></p> |
||||
</blockquote> |
||||
</aside> |
||||
/* |
||||
/* --------------------------------------------------------------------- */ |
||||
.pull-quote { |
||||
position: relative; |
||||
padding: 18px 30px 18px 0px; |
||||
} |
||||
.pull-quote:before, |
||||
.pull-quote:after { |
||||
height: 1em; |
||||
opacity: 0.45; |
||||
position: absolute; |
||||
font-size: 80px; |
||||
font-family: Arial, Sans-Serif; |
||||
} |
||||
.pull-quote:before { |
||||
content: "\201C"; |
||||
top: 33px; |
||||
left: 0; |
||||
} |
||||
.pull-quote:after { |
||||
content: '\201D'; |
||||
bottom: -33px; |
||||
right: 0; |
||||
} |
||||
.pull-quote blockquote { |
||||
margin: 0; |
||||
} |
||||
.pull-quote blockquote:before { |
||||
content: none; |
||||
} |
||||
|
||||
/* Abbreviations */ |
||||
abbr { |
||||
font-family: 'opensans-bold', sans-serif; |
||||
font-variant: small-caps; |
||||
text-transform: lowercase; |
||||
letter-spacing: .5px; |
||||
color: gray; |
||||
} |
||||
abbr:hover { cursor: help; } |
||||
|
||||
/* drop cap */ |
||||
.drop-cap:first-letter { |
||||
float: left; |
||||
margin: 0; |
||||
padding: 14px 6px 0 0; |
||||
font-size: 84px; |
||||
font-family: /* Copperplate */ 'opensans-bold', sans-serif; |
||||
line-height: 60px; |
||||
text-indent: 0; |
||||
background: transparent; |
||||
color: inherit; |
||||
} |
||||
|
||||
hr { border: solid #E3E3E3; border-width: 1px 0 0; clear: both; margin: 11px 0 30px; height: 0; } |
||||
|
||||
|
||||
/* 3. Links ------------------------------------------------------- */ |
||||
|
||||
a, a:visited { |
||||
text-decoration: none; |
||||
outline: 0; |
||||
color: #11ABB0; |
||||
|
||||
-webkit-transition: color .3s ease-in-out; |
||||
-moz-transition: color .3s ease-in-out; |
||||
-o-transition: color .3s ease-in-out; |
||||
transition: color .3s ease-in-out; |
||||
} |
||||
a:hover, a:focus { color: #313131; } |
||||
p a, p a:visited { line-height: inherit; } |
||||
|
||||
|
||||
/* 4. List --------------------------------------------------------- */ |
||||
|
||||
ul, ol { margin-bottom: 24px; margin-top: 12px; } |
||||
ul { list-style: none outside; } |
||||
ol { list-style: decimal; } |
||||
ol, ul.square, ul.circle, ul.disc { margin-left: 30px; } |
||||
ul.square { list-style: square outside; } |
||||
ul.circle { list-style: circle outside; } |
||||
ul.disc { list-style: disc outside; } |
||||
ul ul, ul ol, |
||||
ol ol, ol ul { margin: 6px 0 6px 30px; } |
||||
ul ul li, ul ol li, |
||||
ol ol li, ol ul li { margin-bottom: 6px; } |
||||
li { line-height: 18px; margin-bottom: 12px; } |
||||
ul.large li { } |
||||
li p { } |
||||
|
||||
/* --------------------------------------------------------------------- |
||||
/* Stats Tab Markup |
||||
|
||||
<ul class="stats-tabs"> |
||||
<li><a href="#">[value]<b>[name]</b></a></li> |
||||
</ul> |
||||
|
||||
Extend this object into your markup. |
||||
/* |
||||
/* --------------------------------------------------------------------- */ |
||||
.stats-tabs { |
||||
padding: 0; |
||||
margin: 24px 0; |
||||
} |
||||
.stats-tabs li { |
||||
display: inline-block; |
||||
margin: 0 10px 18px 0; |
||||
padding: 0 10px 0 0; |
||||
border-right: 1px solid #ccc; |
||||
} |
||||
.stats-tabs li:last-child { |
||||
margin: 0; |
||||
padding: 0; |
||||
border: none; |
||||
} |
||||
.stats-tabs li a { |
||||
display: inline-block; |
||||
font-size: 22px; |
||||
font-family: 'opensans-bold', sans-serif; |
||||
border: none; |
||||
color: #313131; |
||||
} |
||||
.stats-tabs li a:hover { |
||||
color:#11ABB0; |
||||
} |
||||
.stats-tabs li a b { |
||||
display: block; |
||||
margin: 6px 0 0 0; |
||||
font-size: 13px; |
||||
font-family: 'opensans-regular', sans-serif; |
||||
color: #8B9798; |
||||
} |
||||
|
||||
/* definition list */ |
||||
dl { margin: 12px 0; } |
||||
dt { margin: 0; color:#11ABB0; } |
||||
dd { margin: 0 0 0 20px; } |
||||
|
||||
/* Lining Definition Style Markup */ |
||||
.lining dt, |
||||
.lining dd { |
||||
display: inline; |
||||
margin: 0; |
||||
} |
||||
.lining dt + dt:before, |
||||
.lining dd + dt:before { |
||||
content: "\A"; |
||||
white-space: pre; |
||||
} |
||||
.lining dd + dd:before { |
||||
content: ", "; |
||||
} |
||||
.lining dd:before { |
||||
content: ": "; |
||||
margin-left: -0.2em; |
||||
} |
||||
|
||||
/* Dictionary Definition Style Markup */ |
||||
.dictionary-style dt { |
||||
display: inline; |
||||
counter-reset: definitions; |
||||
} |
||||
.dictionary-style dt + dt:before { |
||||
content: ", "; |
||||
margin-left: -0.2em; |
||||
} |
||||
.dictionary-style dd { |
||||
display: block; |
||||
counter-increment: definitions; |
||||
} |
||||
.dictionary-style dd:before { |
||||
content: counter(definitions, decimal) ". "; |
||||
} |
||||
|
||||
/* Pagination */ |
||||
.pagination { |
||||
margin: 36px auto; |
||||
text-align: center; |
||||
} |
||||
.pagination ul li { |
||||
display: inline-block; |
||||
margin: 0; |
||||
padding: 0; |
||||
} |
||||
.pagination .page-numbers { |
||||
font: 15px/18px 'opensans-bold', sans-serif; |
||||
display: inline-block; |
||||
padding: 6px 10px; |
||||
margin-right: 3px; |
||||
margin-bottom: 6px; |
||||
color: #6E757C; |
||||
background-color: #E6E8EB; |
||||
|
||||
-webkit-transition: all 200ms ease-in-out; |
||||
-moz-transition: all 200ms ease-in-out; |
||||
-o-transition: all 200ms ease-in-out; |
||||
-ms-transition: all 200ms ease-in-out; |
||||
transition: all 200ms ease-in-out; |
||||
|
||||
-moz-border-radius: 3px; |
||||
-webkit-border-radius: 3px; |
||||
-khtml-border-radius: 3px; |
||||
border-radius: 3px; |
||||
} |
||||
.pagination .page-numbers:hover { |
||||
background: #838A91; |
||||
color: #fff; |
||||
} |
||||
.pagination .current, |
||||
.pagination .current:hover { |
||||
background-color: #11ABB0; |
||||
color: #fff; |
||||
} |
||||
.pagination .inactive, |
||||
.pagination .inactive:hover { |
||||
background-color: #E6E8EB; |
||||
color: #A9ADB2; |
||||
} |
||||
.pagination .prev, .pagination .next {} |
||||
|
||||
/* 5. Images --------------------------------------------------------- */ |
||||
|
||||
img { |
||||
max-width: 100%; |
||||
height: auto; |
||||
} |
||||
img.pull-right { margin: 12px 0px 0px 18px; } |
||||
img.pull-left { margin: 12px 18px 0px 0px; } |
||||
|
||||
/* 6. Buttons --------------------------------------------------------- */ |
||||
|
||||
.button, |
||||
.button:visited, |
||||
button, |
||||
input[type="submit"], |
||||
input[type="reset"], |
||||
input[type="button"] { |
||||
font: 16px/30px 'opensans-bold', sans-serif; |
||||
background: #11ABB0; |
||||
display: inline-block; |
||||
text-decoration: none; |
||||
letter-spacing: 0; |
||||
color: #fff; |
||||
padding: 12px 20px; |
||||
margin-bottom: 18px; |
||||
border: none; |
||||
cursor: pointer; |
||||
height: auto; |
||||
|
||||
-webkit-transition: all .2s ease-in-out; |
||||
-moz-transition: all .2s ease-in-out; |
||||
-o-transition: all .2s ease-in-out; |
||||
-ms-transition: all .2s ease-in-out; |
||||
transition: all .2s ease-in-out; |
||||
|
||||
-moz-border-radius: 3px; |
||||
-webkit-border-radius: 3px; |
||||
-khtml-border-radius: 3px; |
||||
border-radius: 3px; |
||||
} |
||||
|
||||
.button:hover, |
||||
button:hover, |
||||
input[type="submit"]:hover, |
||||
input[type="reset"]:hover, |
||||
input[type="button"]:hover { |
||||
background: #3d4145; |
||||
color: #fff; |
||||
} |
||||
|
||||
.button:active, |
||||
button:active, |
||||
input[type="submit"]:active, |
||||
input[type="reset"]:active, |
||||
input[type="button"]:active { |
||||
background: #3d4145; |
||||
color: #fff; |
||||
} |
||||
|
||||
.button.full-width, |
||||
button.full-width, |
||||
input[type="submit"].full-width, |
||||
input[type="reset"].full-width, |
||||
input[type="button"].full-width { |
||||
width: 100%; |
||||
padding-left: 0 !important; |
||||
padding-right: 0 !important; |
||||
text-align: center; |
||||
} |
||||
|
||||
/* Fix for odd Mozilla border & padding issues */ |
||||
button::-moz-focus-inner, |
||||
input::-moz-focus-inner { |
||||
border: 0; |
||||
padding: 0; |
||||
} |
||||
|
||||
|
||||
/* 7. Forms --------------------------------------------------------- */ |
||||
|
||||
form { margin-bottom: 24px; } |
||||
fieldset { margin-bottom: 24px; } |
||||
|
||||
input[type="text"], |
||||
input[type="password"], |
||||
input[type="email"], |
||||
textarea, |
||||
select { |
||||
display: block; |
||||
padding: 18px 15px; |
||||
margin: 0 0 24px 0; |
||||
border: 0; |
||||
outline: none; |
||||
vertical-align: middle; |
||||
min-width: 225px; |
||||
max-width: 100%; |
||||
font-size: 15px; |
||||
line-height: 24px; |
||||
color: #647373; |
||||
background: #D3D9D9; |
||||
|
||||
} |
||||
|
||||
/* select { padding: 0; |
||||
width: 220px; |
||||
} */ |
||||
|
||||
input[type="text"]:focus, |
||||
input[type="password"]:focus, |
||||
input[type="email"]:focus, |
||||
textarea:focus { |
||||
color: #B3B7BC; |
||||
background-color: #3d4145; |
||||
} |
||||
|
||||
textarea { min-height: 220px; } |
||||
|
||||
label, |
||||
legend { |
||||
font: 16px/24px 'opensans-bold', sans-serif; |
||||
margin: 12px 0; |
||||
color: #3d4145; |
||||
display: block; |
||||
} |
||||
label span, |
||||
legend span { |
||||
color: #8B9798; |
||||
font: 14px/24px 'opensans-regular', sans-serif; |
||||
} |
||||
|
||||
input[type="checkbox"], |
||||
input[type="radio"] { |
||||
font-size: 15px; |
||||
color: #737373; |
||||
} |
||||
|
||||
input[type="checkbox"] { display: inline; } |
||||
|
||||
/* ------------------------------------------------------------------ */ |
||||
/* d. Grid |
||||
--------------------------------------------------------------------- |
||||
gutter = 40px. |
||||
/* ------------------------------------------------------------------ */ |
||||
|
||||
/* default |
||||
--------------------------------------------------------------- */ |
||||
.row { |
||||
width: 96%; |
||||
max-width: 1020px; |
||||
margin: 0 auto; |
||||
} |
||||
/* fixed width for IE8 */ |
||||
.ie .row { width: 1000px ; } |
||||
|
||||
.narrow .row { max-width: 980px; } |
||||
|
||||
.row .row { width: auto; max-width: none; margin: 0 -20px; } |
||||
|
||||
/* row clearing */ |
||||
.row:before, |
||||
.row:after { |
||||
content: " "; |
||||
display: table; |
||||
} |
||||
.row:after { |
||||
clear: both; |
||||
} |
||||
|
||||
.column, .columns { |
||||
position: relative; |
||||
padding: 0 20px; |
||||
min-height: 1px; |
||||
float: left; |
||||
} |
||||
.column.centered, .columns.centered { |
||||
float: none; |
||||
margin: 0 auto; |
||||
} |
||||
|
||||
/* removed gutters */ |
||||
.row.collapsed > .column, |
||||
.row.collapsed > .columns, |
||||
.column.collapsed, .columns.collapsed { padding: 0; } |
||||
|
||||
[class*="column"] + [class*="column"]:last-child { float: right; } |
||||
[class*="column"] + [class*="column"].end { float: right; } |
||||
|
||||
/* column widths */ |
||||
.row .one { width: 8.33333%; } |
||||
.row .two { width: 16.66667%; } |
||||
.row .three { width: 25%; } |
||||
.row .four { width: 33.33333%; } |
||||
.row .five { width: 41.66667%; } |
||||
.row .six { width: 50%; } |
||||
.row .seven { width: 58.33333%; } |
||||
.row .eight { width: 66.66667%; } |
||||
.row .nine { width: 75%; } |
||||
.row .ten { width: 83.33333%; } |
||||
.row .eleven { width: 91.66667%; } |
||||
.row .twelve { width: 100%; } |
||||
|
||||
/* Offsets */ |
||||
.row .offset-1 { margin-left: 8.33333%; } |
||||
.row .offset-2 { margin-left: 16.66667%; } |
||||
.row .offset-3 { margin-left: 25%; } |
||||
.row .offset-4 { margin-left: 33.33333%; } |
||||
.row .offset-5 { margin-left: 41.66667%; } |
||||
.row .offset-6 { margin-left: 50%; } |
||||
.row .offset-7 { margin-left: 58.33333%; } |
||||
.row .offset-8 { margin-left: 66.66667%; } |
||||
.row .offset-9 { margin-left: 75%; } |
||||
.row .offset-10 { margin-left: 83.33333%; } |
||||
.row .offset-11 { margin-left: 91.66667%; } |
||||
|
||||
/* Push/Pull */ |
||||
.row .push-1 { left: 8.33333%; } |
||||
.row .pull-1 { right: 8.33333%; } |
||||
.row .push-2 { left: 16.66667%; } |
||||
.row .pull-2 { right: 16.66667%; } |
||||
.row .push-3 { left: 25%; } |
||||
.row .pull-3 { right: 25%; } |
||||
.row .push-4 { left: 33.33333%; } |
||||
.row .pull-4 { right: 33.33333%; } |
||||
.row .push-5 { left: 41.66667%; } |
||||
.row .pull-5 { right: 41.66667%; } |
||||
.row .push-6 { left: 50%; } |
||||
.row .pull-6 { right: 50%; } |
||||
.row .push-7 { left: 58.33333%; } |
||||
.row .pull-7 { right: 58.33333%; } |
||||
.row .push-8 { left: 66.66667%; } |
||||
.row .pull-8 { right: 66.66667%; } |
||||
.row .push-9 { left: 75%; } |
||||
.row .pull-9 { right: 75%; } |
||||
.row .push-10 { left: 83.33333%; } |
||||
.row .pull-10 { right: 83.33333%; } |
||||
.row .push-11 { left: 91.66667%; } |
||||
.row .pull-11 { right: 91.66667%; } |
||||
|
||||
/* block grids |
||||
--------------------------------------------------------------------- */ |
||||
.bgrid-sixths [class*="column"] { width: 16.66667%; } |
||||
.bgrid-quarters [class*="column"] { width: 25%; } |
||||
.bgrid-thirds [class*="column"] { width: 33.33333%; } |
||||
.bgrid-halves [class*="column"] { width: 50%; } |
||||
|
||||
[class*="bgrid"] [class*="column"] + [class*="column"]:last-child { float: left; } |
||||
|
||||
/* Left clearing for block grid columns - columns that changes width in |
||||
different screen sizes. Allows columns with different heights to align |
||||
properly. |
||||
--------------------------------------------------------------------- */ |
||||
.first { clear: left; } /* first column in default screen */ |
||||
.s-first { clear: none; } /* first column in smaller screens */ |
||||
|
||||
/* smaller screens |
||||
--------------------------------------------------------------- */ |
||||
@media only screen and (max-width: 900px) { |
||||
|
||||
/* block grids on small screens */ |
||||
.s-bgrid-sixths [class*="column"] { width: 16.66667%; } |
||||
.s-bgrid-quarters [class*="column"] { width: 25%; } |
||||
.s-bgrid-thirds [class*="column"] { width: 33.33333%; } |
||||
.s-bgrid-halves [class*="column"] { width: 50%; } |
||||
|
||||
/* block grids left clearing */ |
||||
.first { clear: none; } |
||||
.s-first { clear: left; } |
||||
|
||||
} |
||||
|
||||
/* mobile wide/smaller tablets |
||||
--------------------------------------------------------------- */ |
||||
@media only screen and (max-width: 767px) { |
||||
|
||||
.row { |
||||
width: 460px; |
||||
margin: 0 auto; |
||||
padding: 0; |
||||
} |
||||
.column, .columns { |
||||
width: auto !important; |
||||
float: none; |
||||
margin-left: 0; |
||||
margin-right: 0; |
||||
padding: 0 30px; |
||||
} |
||||
.row .row { width: auto; max-width: none; margin: 0 -30px; } |
||||
|
||||
[class*="column"] + [class*="column"]:last-child { float: none; } |
||||
[class*="bgrid"] [class*="column"] + [class*="column"]:last-child { float: none; } |
||||
|
||||
/* Offsets */ |
||||
.row .offset-1 { margin-left: 0%; } |
||||
.row .offset-2 { margin-left: 0%; } |
||||
.row .offset-3 { margin-left: 0%; } |
||||
.row .offset-4 { margin-left: 0%; } |
||||
.row .offset-5 { margin-left: 0%; } |
||||
.row .offset-6 { margin-left: 0%; } |
||||
.row .offset-7 { margin-left: 0%; } |
||||
.row .offset-8 { margin-left: 0%; } |
||||
.row .offset-9 { margin-left: 0%; } |
||||
.row .offset-10 { margin-left: 0%; } |
||||
.row .offset-11 { margin-left: 0%; } |
||||
} |
||||
|
||||
/* mobile narrow |
||||
--------------------------------------------------------------- */ |
||||
@media only screen and (max-width: 460px) { |
||||
|
||||
.row { width: auto; } |
||||
|
||||
} |
||||
|
||||
/* larger screens |
||||
--------------------------------------------------------------- */ |
||||
@media screen and (min-width: 1200px) { |
||||
|
||||
.wide .row { max-width: 1180px; } |
||||
|
||||
} |
||||
|
||||
/* ------------------------------------------------------------------ */ |
||||
/* e. Others |
||||
/* ------------------------------------------------------------------ */ |
||||
|
||||
/* 1. Clearing |
||||
(http://nicolasgallagher.com/micro-clearfix-hack/ |
||||
--------------------------------------------------------------------- */ |
||||
|
||||
.cf:before, |
||||
.cf:after { |
||||
content: " "; |
||||
display: table; |
||||
} |
||||
.cf:after { |
||||
clear: both; |
||||
} |
||||
|
||||
/* 2. Misc -------------------------------------------------------- */ |
||||
|
||||
.remove-bottom { margin-bottom: 0 !important; } |
||||
.half-bottom { margin-bottom: 12px !important; } |
||||
.add-bottom { margin-bottom: 24px !important; } |
||||
.no-border { border: none; } |
||||
|
||||
.text-center { text-align: center !important; } |
||||
.text-left { text-align: left !important; } |
||||
.text-right { text-align: right !important; } |
||||
.pull-left { float: left !important; } |
||||
.pull-right { float: right !important; } |
||||
.align-center { |
||||
margin-left: auto !important; |
||||
margin-right: auto !important; |
||||
text-align: center !important; |
||||
} |
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,7 @@
|
||||
I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, |
||||
Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, |
||||
comprehensive icon sets or copy and paste your own. |
||||
|
||||
Please. Check it out. |
||||
|
||||
-Dave Gandy |
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 434 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,34 @@
|
||||
// Animated Icons |
||||
// -------------------------- |
||||
|
||||
.@{fa-css-prefix}-spin { |
||||
-webkit-animation: fa-spin 2s infinite linear; |
||||
animation: fa-spin 2s infinite linear; |
||||
} |
||||
|
||||
.@{fa-css-prefix}-pulse { |
||||
-webkit-animation: fa-spin 1s infinite steps(8); |
||||
animation: fa-spin 1s infinite steps(8); |
||||
} |
||||
|
||||
@-webkit-keyframes fa-spin { |
||||
0% { |
||||
-webkit-transform: rotate(0deg); |
||||
transform: rotate(0deg); |
||||
} |
||||
100% { |
||||
-webkit-transform: rotate(359deg); |
||||
transform: rotate(359deg); |
||||
} |
||||
} |
||||
|
||||
@keyframes fa-spin { |
||||
0% { |
||||
-webkit-transform: rotate(0deg); |
||||
transform: rotate(0deg); |
||||
} |
||||
100% { |
||||
-webkit-transform: rotate(359deg); |
||||
transform: rotate(359deg); |
||||
} |
||||
} |
@ -0,0 +1,25 @@
|
||||
// Bordered & Pulled |
||||
// ------------------------- |
||||
|
||||
.@{fa-css-prefix}-border { |
||||
padding: .2em .25em .15em; |
||||
border: solid .08em @fa-border-color; |
||||
border-radius: .1em; |
||||
} |
||||
|
||||
.@{fa-css-prefix}-pull-left { float: left; } |
||||
.@{fa-css-prefix}-pull-right { float: right; } |
||||
|
||||
.@{fa-css-prefix} { |
||||
&.@{fa-css-prefix}-pull-left { margin-right: .3em; } |
||||
&.@{fa-css-prefix}-pull-right { margin-left: .3em; } |
||||
} |
||||
|
||||
/* Deprecated as of 4.4.0 */ |
||||
.pull-right { float: right; } |
||||
.pull-left { float: left; } |
||||
|
||||
.@{fa-css-prefix} { |
||||
&.pull-left { margin-right: .3em; } |
||||
&.pull-right { margin-left: .3em; } |
||||
} |
@ -0,0 +1,12 @@
|
||||
// Base Class Definition |
||||
// ------------------------- |
||||
|
||||
.@{fa-css-prefix} { |
||||
display: inline-block; |
||||
font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration |
||||
font-size: inherit; // can't have font-size inherit on line above, so need to override |
||||
text-rendering: auto; // optimizelegibility throws things off #1094 |
||||
-webkit-font-smoothing: antialiased; |
||||
-moz-osx-font-smoothing: grayscale; |
||||
|
||||
} |
@ -0,0 +1,6 @@
|
||||
// Fixed Width Icons |
||||
// ------------------------- |
||||
.@{fa-css-prefix}-fw { |
||||
width: (18em / 14); |
||||
text-align: center; |
||||
} |
@ -0,0 +1,18 @@
|
||||
/*! |
||||
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome |
||||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) |
||||
*/ |
||||
|
||||
@import "variables.less"; |
||||
@import "mixins.less"; |
||||
@import "path.less"; |
||||
@import "core.less"; |
||||
@import "larger.less"; |
||||
@import "fixed-width.less"; |
||||
@import "list.less"; |
||||
@import "bordered-pulled.less"; |
||||
@import "animated.less"; |
||||
@import "rotated-flipped.less"; |
||||
@import "stacked.less"; |
||||
@import "icons.less"; |
||||
@import "screen-reader.less"; |
@ -0,0 +1,789 @@
|
||||
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen |
||||
readers do not read off random characters that represent icons */ |
||||
|
||||
.@{fa-css-prefix}-glass:before { content: @fa-var-glass; } |
||||
.@{fa-css-prefix}-music:before { content: @fa-var-music; } |
||||
.@{fa-css-prefix}-search:before { content: @fa-var-search; } |
||||
.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; } |
||||
.@{fa-css-prefix}-heart:before { content: @fa-var-heart; } |
||||
.@{fa-css-prefix}-star:before { content: @fa-var-star; } |
||||
.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; } |
||||
.@{fa-css-prefix}-user:before { content: @fa-var-user; } |
||||
.@{fa-css-prefix}-film:before { content: @fa-var-film; } |
||||
.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; } |
||||
.@{fa-css-prefix}-th:before { content: @fa-var-th; } |
||||
.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; } |
||||
.@{fa-css-prefix}-check:before { content: @fa-var-check; } |
||||
.@{fa-css-prefix}-remove:before, |
||||
.@{fa-css-prefix}-close:before, |
||||
.@{fa-css-prefix}-times:before { content: @fa-var-times; } |
||||
.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; } |
||||
.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; } |
||||
.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; } |
||||
.@{fa-css-prefix}-signal:before { content: @fa-var-signal; } |
||||
.@{fa-css-prefix}-gear:before, |
||||
.@{fa-css-prefix}-cog:before { content: @fa-var-cog; } |
||||
.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; } |
||||
.@{fa-css-prefix}-home:before { content: @fa-var-home; } |
||||
.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; } |
||||
.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; } |
||||
.@{fa-css-prefix}-road:before { content: @fa-var-road; } |
||||
.@{fa-css-prefix}-download:before { content: @fa-var-download; } |
||||
.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; } |
||||
.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; } |
||||
.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; } |
||||
.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; } |
||||
.@{fa-css-prefix}-rotate-right:before, |
||||
.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; } |
||||
.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; } |
||||
.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; } |
||||
.@{fa-css-prefix}-lock:before { content: @fa-var-lock; } |
||||
.@{fa-css-prefix}-flag:before { content: @fa-var-flag; } |
||||
.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; } |
||||
.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; } |
||||
.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; } |
||||
.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; } |
||||
.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; } |
||||
.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; } |
||||
.@{fa-css-prefix}-tag:before { content: @fa-var-tag; } |
||||
.@{fa-css-prefix}-tags:before { content: @fa-var-tags; } |
||||
.@{fa-css-prefix}-book:before { content: @fa-var-book; } |
||||
.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; } |
||||
.@{fa-css-prefix}-print:before { content: @fa-var-print; } |
||||
.@{fa-css-prefix}-camera:before { content: @fa-var-camera; } |
||||
.@{fa-css-prefix}-font:before { content: @fa-var-font; } |
||||
.@{fa-css-prefix}-bold:before { content: @fa-var-bold; } |
||||
.@{fa-css-prefix}-italic:before { content: @fa-var-italic; } |
||||
.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; } |
||||
.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; } |
||||
.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; } |
||||
.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; } |
||||
.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; } |
||||
.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; } |
||||
.@{fa-css-prefix}-list:before { content: @fa-var-list; } |
||||
.@{fa-css-prefix}-dedent:before, |
||||
.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; } |
||||
.@{fa-css-prefix}-indent:before { content: @fa-var-indent; } |
||||
.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; } |
||||
.@{fa-css-prefix}-photo:before, |
||||
.@{fa-css-prefix}-image:before, |
||||
.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; } |
||||
.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; } |
||||
.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; } |
||||
.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; } |
||||
.@{fa-css-prefix}-tint:before { content: @fa-var-tint; } |
||||
.@{fa-css-prefix}-edit:before, |
||||
.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; } |
||||
.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; } |
||||
.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; } |
||||
.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; } |
||||
.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; } |
||||
.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; } |
||||
.@{fa-css-prefix}-backward:before { content: @fa-var-backward; } |
||||
.@{fa-css-prefix}-play:before { content: @fa-var-play; } |
||||
.@{fa-css-prefix}-pause:before { content: @fa-var-pause; } |
||||
.@{fa-css-prefix}-stop:before { content: @fa-var-stop; } |
||||
.@{fa-css-prefix}-forward:before { content: @fa-var-forward; } |
||||
.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; } |
||||
.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; } |
||||
.@{fa-css-prefix}-eject:before { content: @fa-var-eject; } |
||||
.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; } |
||||
.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; } |
||||
.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; } |
||||
.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; } |
||||
.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; } |
||||
.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; } |
||||
.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; } |
||||
.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; } |
||||
.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; } |
||||
.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; } |
||||
.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; } |
||||
.@{fa-css-prefix}-ban:before { content: @fa-var-ban; } |
||||
.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; } |
||||
.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; } |
||||
.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; } |
||||
.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; } |
||||
.@{fa-css-prefix}-mail-forward:before, |
||||
.@{fa-css-prefix}-share:before { content: @fa-var-share; } |
||||
.@{fa-css-prefix}-expand:before { content: @fa-var-expand; } |
||||
.@{fa-css-prefix}-compress:before { content: @fa-var-compress; } |
||||
.@{fa-css-prefix}-plus:before { content: @fa-var-plus; } |
||||
.@{fa-css-prefix}-minus:before { content: @fa-var-minus; } |
||||
.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; } |
||||
.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; } |
||||
.@{fa-css-prefix}-gift:before { content: @fa-var-gift; } |
||||
.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; } |
||||
.@{fa-css-prefix}-fire:before { content: @fa-var-fire; } |
||||
.@{fa-css-prefix}-eye:before { content: @fa-var-eye; } |
||||
.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; } |
||||
.@{fa-css-prefix}-warning:before, |
||||
.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; } |
||||
.@{fa-css-prefix}-plane:before { content: @fa-var-plane; } |
||||
.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; } |
||||
.@{fa-css-prefix}-random:before { content: @fa-var-random; } |
||||
.@{fa-css-prefix}-comment:before { content: @fa-var-comment; } |
||||
.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; } |
||||
.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; } |
||||
.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; } |
||||
.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; } |
||||
.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; } |
||||
.@{fa-css-prefix}-folder:before { content: @fa-var-folder; } |
||||
.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; } |
||||
.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; } |
||||
.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; } |
||||
.@{fa-css-prefix}-bar-chart-o:before, |
||||
.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; } |
||||
.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; } |
||||
.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; } |
||||
.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; } |
||||
.@{fa-css-prefix}-key:before { content: @fa-var-key; } |
||||
.@{fa-css-prefix}-gears:before, |
||||
.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; } |
||||
.@{fa-css-prefix}-comments:before { content: @fa-var-comments; } |
||||
.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; } |
||||
.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; } |
||||
.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; } |
||||
.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; } |
||||
.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; } |
||||
.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; } |
||||
.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; } |
||||
.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; } |
||||
.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; } |
||||
.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; } |
||||
.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; } |
||||
.@{fa-css-prefix}-upload:before { content: @fa-var-upload; } |
||||
.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; } |
||||
.@{fa-css-prefix}-phone:before { content: @fa-var-phone; } |
||||
.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; } |
||||
.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; } |
||||
.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; } |
||||
.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; } |
||||
.@{fa-css-prefix}-facebook-f:before, |
||||
.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; } |
||||
.@{fa-css-prefix}-github:before { content: @fa-var-github; } |
||||
.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; } |
||||
.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; } |
||||
.@{fa-css-prefix}-feed:before, |
||||
.@{fa-css-prefix}-rss:before { content: @fa-var-rss; } |
||||
.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; } |
||||
.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; } |
||||
.@{fa-css-prefix}-bell:before { content: @fa-var-bell; } |
||||
.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; } |
||||
.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; } |
||||
.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; } |
||||
.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; } |
||||
.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; } |
||||
.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; } |
||||
.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; } |
||||
.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; } |
||||
.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; } |
||||
.@{fa-css-prefix}-globe:before { content: @fa-var-globe; } |
||||
.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; } |
||||
.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; } |
||||
.@{fa-css-prefix}-filter:before { content: @fa-var-filter; } |
||||
.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; } |
||||
.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; } |
||||
.@{fa-css-prefix}-group:before, |
||||
.@{fa-css-prefix}-users:before { content: @fa-var-users; } |
||||
.@{fa-css-prefix}-chain:before, |
||||
.@{fa-css-prefix}-link:before { content: @fa-var-link; } |
||||
.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; } |
||||
.@{fa-css-prefix}-flask:before { content: @fa-var-flask; } |
||||
.@{fa-css-prefix}-cut:before, |
||||
.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; } |
||||
.@{fa-css-prefix}-copy:before, |
||||
.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; } |
||||
.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; } |
||||
.@{fa-css-prefix}-save:before, |
||||
.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; } |
||||
.@{fa-css-prefix}-square:before { content: @fa-var-square; } |
||||
.@{fa-css-prefix}-navicon:before, |
||||
.@{fa-css-prefix}-reorder:before, |
||||
.@{fa-css-prefix}-bars:before { content: @fa-var-bars; } |
||||
.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; } |
||||
.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; } |
||||
.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; } |
||||
.@{fa-css-prefix}-underline:before { content: @fa-var-underline; } |
||||
.@{fa-css-prefix}-table:before { content: @fa-var-table; } |
||||
.@{fa-css-prefix}-magic:before { content: @fa-var-magic; } |
||||
.@{fa-css-prefix}-truck:before { content: @fa-var-truck; } |
||||
.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; } |
||||
.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; } |
||||
.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; } |
||||
.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; } |
||||
.@{fa-css-prefix}-money:before { content: @fa-var-money; } |
||||
.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; } |
||||
.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; } |
||||
.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; } |
||||
.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; } |
||||
.@{fa-css-prefix}-columns:before { content: @fa-var-columns; } |
||||
.@{fa-css-prefix}-unsorted:before, |
||||
.@{fa-css-prefix}-sort:before { content: @fa-var-sort; } |
||||
.@{fa-css-prefix}-sort-down:before, |
||||
.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; } |
||||
.@{fa-css-prefix}-sort-up:before, |
||||
.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; } |
||||
.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; } |
||||
.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; } |
||||
.@{fa-css-prefix}-rotate-left:before, |
||||
.@{fa-css-prefix}-undo:before { content: @fa-var-undo; } |
||||
.@{fa-css-prefix}-legal:before, |
||||
.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; } |
||||
.@{fa-css-prefix}-dashboard:before, |
||||
.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; } |
||||
.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; } |
||||
.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; } |
||||
.@{fa-css-prefix}-flash:before, |
||||
.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; } |
||||
.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; } |
||||
.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; } |
||||
.@{fa-css-prefix}-paste:before, |
||||
.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; } |
||||
.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; } |
||||
.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; } |
||||
.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; } |
||||
.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; } |
||||
.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; } |
||||
.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; } |
||||
.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; } |
||||
.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; } |
||||
.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; } |
||||
.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; } |
||||
.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; } |
||||
.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; } |
||||
.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; } |
||||
.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; } |
||||
.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; } |
||||
.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; } |
||||
.@{fa-css-prefix}-beer:before { content: @fa-var-beer; } |
||||
.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; } |
||||
.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; } |
||||
.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; } |
||||
.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; } |
||||
.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; } |
||||
.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; } |
||||
.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; } |
||||
.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; } |
||||
.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; } |
||||
.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; } |
||||
.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; } |
||||
.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; } |
||||
.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; } |
||||
.@{fa-css-prefix}-mobile-phone:before, |
||||
.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; } |
||||
.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; } |
||||
.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; } |
||||
.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; } |
||||
.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; } |
||||
.@{fa-css-prefix}-circle:before { content: @fa-var-circle; } |
||||
.@{fa-css-prefix}-mail-reply:before, |
||||
.@{fa-css-prefix}-reply:before { content: @fa-var-reply; } |
||||
.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; } |
||||
.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; } |
||||
.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; } |
||||
.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; } |
||||
.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; } |
||||
.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; } |
||||
.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; } |
||||
.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; } |
||||
.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; } |
||||
.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; } |
||||
.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; } |
||||
.@{fa-css-prefix}-code:before { content: @fa-var-code; } |
||||
.@{fa-css-prefix}-mail-reply-all:before, |
||||
.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; } |
||||
.@{fa-css-prefix}-star-half-empty:before, |
||||
.@{fa-css-prefix}-star-half-full:before, |
||||
.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; } |
||||
.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; } |
||||
.@{fa-css-prefix}-crop:before { content: @fa-var-crop; } |
||||
.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; } |
||||
.@{fa-css-prefix}-unlink:before, |
||||
.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; } |
||||
.@{fa-css-prefix}-question:before { content: @fa-var-question; } |
||||
.@{fa-css-prefix}-info:before { content: @fa-var-info; } |
||||
.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; } |
||||
.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; } |
||||
.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; } |
||||
.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; } |
||||
.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; } |
||||
.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; } |
||||
.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; } |
||||
.@{fa-css-prefix}-shield:before { content: @fa-var-shield; } |
||||
.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; } |
||||
.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; } |
||||
.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; } |
||||
.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; } |
||||
.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; } |
||||
.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; } |
||||
.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; } |
||||
.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; } |
||||
.@{fa-css-prefix}-html5:before { content: @fa-var-html5; } |
||||
.@{fa-css-prefix}-css3:before { content: @fa-var-css3; } |
||||
.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; } |
||||
.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; } |
||||
.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; } |
||||
.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; } |
||||
.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; } |
||||
.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; } |
||||
.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; } |
||||
.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; } |
||||
.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; } |
||||
.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; } |
||||
.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; } |
||||
.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; } |
||||
.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; } |
||||
.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; } |
||||
.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; } |
||||
.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; } |
||||
.@{fa-css-prefix}-compass:before { content: @fa-var-compass; } |
||||
.@{fa-css-prefix}-toggle-down:before, |
||||
.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; } |
||||
.@{fa-css-prefix}-toggle-up:before, |
||||
.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; } |
||||
.@{fa-css-prefix}-toggle-right:before, |
||||
.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; } |
||||
.@{fa-css-prefix}-euro:before, |
||||
.@{fa-css-prefix}-eur:before { content: @fa-var-eur; } |
||||
.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; } |
||||
.@{fa-css-prefix}-dollar:before, |
||||
.@{fa-css-prefix}-usd:before { content: @fa-var-usd; } |
||||
.@{fa-css-prefix}-rupee:before, |
||||
.@{fa-css-prefix}-inr:before { content: @fa-var-inr; } |
||||
.@{fa-css-prefix}-cny:before, |
||||
.@{fa-css-prefix}-rmb:before, |
||||
.@{fa-css-prefix}-yen:before, |
||||
.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; } |
||||
.@{fa-css-prefix}-ruble:before, |
||||
.@{fa-css-prefix}-rouble:before, |
||||
.@{fa-css-prefix}-rub:before { content: @fa-var-rub; } |
||||
.@{fa-css-prefix}-won:before, |
||||
.@{fa-css-prefix}-krw:before { content: @fa-var-krw; } |
||||
.@{fa-css-prefix}-bitcoin:before, |
||||
.@{fa-css-prefix}-btc:before { content: @fa-var-btc; } |
||||
.@{fa-css-prefix}-file:before { content: @fa-var-file; } |
||||
.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; } |
||||
.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; } |
||||
.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; } |
||||
.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; } |
||||
.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; } |
||||
.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; } |
||||
.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; } |
||||
.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; } |
||||
.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; } |
||||
.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; } |
||||
.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; } |
||||
.@{fa-css-prefix}-xing:before { content: @fa-var-xing; } |
||||
.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; } |
||||
.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; } |
||||
.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; } |
||||
.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; } |
||||
.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; } |
||||
.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; } |
||||
.@{fa-css-prefix}-adn:before { content: @fa-var-adn; } |
||||
.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; } |
||||
.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; } |
||||
.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; } |
||||
.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; } |
||||
.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; } |
||||
.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; } |
||||
.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; } |
||||
.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; } |
||||
.@{fa-css-prefix}-apple:before { content: @fa-var-apple; } |
||||
.@{fa-css-prefix}-windows:before { content: @fa-var-windows; } |
||||
.@{fa-css-prefix}-android:before { content: @fa-var-android; } |
||||
.@{fa-css-prefix}-linux:before { content: @fa-var-linux; } |
||||
.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; } |
||||
.@{fa-css-prefix}-skype:before { content: @fa-var-skype; } |
||||
.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; } |
||||
.@{fa-css-prefix}-trello:before { content: @fa-var-trello; } |
||||
.@{fa-css-prefix}-female:before { content: @fa-var-female; } |
||||
.@{fa-css-prefix}-male:before { content: @fa-var-male; } |
||||
.@{fa-css-prefix}-gittip:before, |
||||
.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; } |
||||
.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; } |
||||
.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; } |
||||
.@{fa-css-prefix}-archive:before { content: @fa-var-archive; } |
||||
.@{fa-css-prefix}-bug:before { content: @fa-var-bug; } |
||||
.@{fa-css-prefix}-vk:before { content: @fa-var-vk; } |
||||
.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; } |
||||
.@{fa-css-prefix}-renren:before { content: @fa-var-renren; } |
||||
.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; } |
||||
.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; } |
||||
.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; } |
||||
.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; } |
||||
.@{fa-css-prefix}-toggle-left:before, |
||||
.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; } |
||||
.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; } |
||||
.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; } |
||||
.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; } |
||||
.@{fa-css-prefix}-turkish-lira:before, |
||||
.@{fa-css-prefix}-try:before { content: @fa-var-try; } |
||||
.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; } |
||||
.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; } |
||||
.@{fa-css-prefix}-slack:before { content: @fa-var-slack; } |
||||
.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; } |
||||
.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; } |
||||
.@{fa-css-prefix}-openid:before { content: @fa-var-openid; } |
||||
.@{fa-css-prefix}-institution:before, |
||||
.@{fa-css-prefix}-bank:before, |
||||
.@{fa-css-prefix}-university:before { content: @fa-var-university; } |
||||
.@{fa-css-prefix}-mortar-board:before, |
||||
.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; } |
||||
.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; } |
||||
.@{fa-css-prefix}-google:before { content: @fa-var-google; } |
||||
.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; } |
||||
.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; } |
||||
.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; } |
||||
.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; } |
||||
.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; } |
||||
.@{fa-css-prefix}-digg:before { content: @fa-var-digg; } |
||||
.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; } |
||||
.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; } |
||||
.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; } |
||||
.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; } |
||||
.@{fa-css-prefix}-language:before { content: @fa-var-language; } |
||||
.@{fa-css-prefix}-fax:before { content: @fa-var-fax; } |
||||
.@{fa-css-prefix}-building:before { content: @fa-var-building; } |
||||
.@{fa-css-prefix}-child:before { content: @fa-var-child; } |
||||
.@{fa-css-prefix}-paw:before { content: @fa-var-paw; } |
||||
.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; } |
||||
.@{fa-css-prefix}-cube:before { content: @fa-var-cube; } |
||||
.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; } |
||||
.@{fa-css-prefix}-behance:before { content: @fa-var-behance; } |
||||
.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; } |
||||
.@{fa-css-prefix}-steam:before { content: @fa-var-steam; } |
||||
.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; } |
||||
.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; } |
||||
.@{fa-css-prefix}-automobile:before, |
||||
.@{fa-css-prefix}-car:before { content: @fa-var-car; } |
||||
.@{fa-css-prefix}-cab:before, |
||||
.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; } |
||||
.@{fa-css-prefix}-tree:before { content: @fa-var-tree; } |
||||
.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; } |
||||
.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; } |
||||
.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; } |
||||
.@{fa-css-prefix}-database:before { content: @fa-var-database; } |
||||
.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; } |
||||
.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; } |
||||
.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; } |
||||
.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; } |
||||
.@{fa-css-prefix}-file-photo-o:before, |
||||
.@{fa-css-prefix}-file-picture-o:before, |
||||
.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; } |
||||
.@{fa-css-prefix}-file-zip-o:before, |
||||
.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; } |
||||
.@{fa-css-prefix}-file-sound-o:before, |
||||
.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; } |
||||
.@{fa-css-prefix}-file-movie-o:before, |
||||
.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; } |
||||
.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; } |
||||
.@{fa-css-prefix}-vine:before { content: @fa-var-vine; } |
||||
.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; } |
||||
.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; } |
||||
.@{fa-css-prefix}-life-bouy:before, |
||||
.@{fa-css-prefix}-life-buoy:before, |
||||
.@{fa-css-prefix}-life-saver:before, |
||||
.@{fa-css-prefix}-support:before, |
||||
.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; } |
||||
.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; } |
||||
.@{fa-css-prefix}-ra:before, |
||||
.@{fa-css-prefix}-resistance:before, |
||||
.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; } |
||||
.@{fa-css-prefix}-ge:before, |
||||
.@{fa-css-prefix}-empire:before { content: @fa-var-empire; } |
||||
.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; } |
||||
.@{fa-css-prefix}-git:before { content: @fa-var-git; } |
||||
.@{fa-css-prefix}-y-combinator-square:before, |
||||
.@{fa-css-prefix}-yc-square:before, |
||||
.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; } |
||||
.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; } |
||||
.@{fa-css-prefix}-qq:before { content: @fa-var-qq; } |
||||
.@{fa-css-prefix}-wechat:before, |
||||
.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; } |
||||
.@{fa-css-prefix}-send:before, |
||||