73 changed files with 11632 additions and 1 deletions
@ -0,0 +1,32 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Globalization; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using System.Windows.Data; |
|||
|
|||
namespace DyeingComputer.ConvertMoels |
|||
{ |
|||
internal class BoolRBConvert : IValueConverter |
|||
{ |
|||
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) |
|||
{ |
|||
bool G =(Boolean) value; |
|||
// bool G = (bool)value;
|
|||
if (!G)//判断单元格值是否为零
|
|||
{ |
|||
return "";//零返回
|
|||
} |
|||
else |
|||
{ |
|||
return "red";//非零返回红色
|
|||
} |
|||
} |
|||
|
|||
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) |
|||
{ |
|||
return ""; |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,31 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Globalization; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using System.Windows.Data; |
|||
|
|||
namespace DyeingComputer.ConvertMoels |
|||
{ |
|||
internal class GramsSQLConvert: IValueConverter |
|||
{ |
|||
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) |
|||
{ |
|||
string G = System.Convert.ToString(value); |
|||
if (G=="0")//判断单元格值是否为零
|
|||
{ |
|||
return "black";//零返回
|
|||
} |
|||
else |
|||
{ |
|||
return "red";//非零返回红色
|
|||
} |
|||
} |
|||
|
|||
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) |
|||
{ |
|||
return null; |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,32 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Globalization; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using System.Windows.Data; |
|||
|
|||
namespace DyeingComputer.ConvertMoels |
|||
{ |
|||
internal class IORBConvert : IValueConverter |
|||
{ |
|||
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) |
|||
{ |
|||
String G = value.ToString(); |
|||
// bool G = (bool)value;
|
|||
if ((G == "AI")||(G == "DO"))//判断单元格值是否为零
|
|||
{ |
|||
return "green";//零返回
|
|||
} |
|||
else |
|||
{ |
|||
return "blue";//非零返回红色
|
|||
} |
|||
} |
|||
|
|||
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) |
|||
{ |
|||
return null; |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,59 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Globalization; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using System.Windows.Data; |
|||
|
|||
namespace DyeingComputer.ConvertMoels |
|||
{ |
|||
/// <summary>
|
|||
/// 原料类型数值转换器
|
|||
/// 将类型数值转换为类型名称返回
|
|||
/// </summary>
|
|||
internal class ProductTypeSQLConvert : IValueConverter |
|||
{ |
|||
/// <summary>
|
|||
/// </summary>
|
|||
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) |
|||
{ |
|||
string ProductType = System.Convert.ToString(value); |
|||
if (ProductType == "1")//类型0:染料,1:助剂,2:粉体助剂,3:液体染料,其它:未知
|
|||
{ |
|||
return "染料"; |
|||
} |
|||
else |
|||
{ |
|||
if (ProductType == "2") |
|||
{ |
|||
return "助剂"; |
|||
} |
|||
else |
|||
{ |
|||
if (ProductType == "3") |
|||
{ |
|||
return "粉体助剂"; |
|||
} |
|||
else |
|||
{ |
|||
if (ProductType == "4") |
|||
{ |
|||
return "液体染料"; |
|||
} |
|||
else |
|||
{ |
|||
return "未知类型"; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
/// <summary>
|
|||
/// </summary>
|
|||
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) |
|||
{ |
|||
return null; |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,32 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Globalization; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using System.Windows.Controls; |
|||
using System.Windows.Data; |
|||
|
|||
namespace DyeingComputer.ConvertMoels |
|||
{ |
|||
/// <summary>
|
|||
/// 序号转换器
|
|||
/// 获取DataGrid的行号 , 转换为对应的序号
|
|||
/// </summary>
|
|||
internal class RowToIndexConverter : IValueConverter |
|||
{ |
|||
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) |
|||
{ |
|||
DataGridRow row = value as DataGridRow; |
|||
if (row != null) |
|||
return row.GetIndex() + 1; |
|||
else |
|||
return -1; |
|||
} |
|||
|
|||
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,45 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Globalization; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using System.Windows.Data; |
|||
|
|||
namespace DyeingComputer.ConvertMoels |
|||
{ |
|||
internal class StatenConvert : IValueConverter |
|||
{ |
|||
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) |
|||
{ |
|||
if (value == null) |
|||
{ |
|||
return null; |
|||
} |
|||
else |
|||
{ |
|||
string Staten = null; |
|||
string i = value.ToString(); |
|||
|
|||
if (i == "101") Staten = Properties.Resources.Ready; |
|||
else if (i == "102") Staten = Properties.Resources.Measure; |
|||
else if (i == "201") Staten = Properties.Resources.Auto; |
|||
else if (i == "202") Staten = Properties.Resources.LineUp; |
|||
else if (i == "203") Staten = Properties.Resources.Await; |
|||
else if (i == "301") Staten = Properties.Resources.Finish; |
|||
else if (i == "309") Staten = Properties.Resources.Abnormal; |
|||
else if (i == "800") Staten = Properties.Resources.Notimplementation; |
|||
else if (i == "801") Staten = Properties.Resources.Implementation; |
|||
else Staten = "null"; |
|||
|
|||
return Staten; |
|||
} |
|||
} |
|||
|
|||
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
} |
|||
} |
Binary file not shown.
Binary file not shown.
@ -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
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, |
|||
.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; } |
|||
.@{fa-css-prefix}-send-o:before, |
|||
.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; } |
|||
.@{fa-css-prefix}-history:before { content: @fa-var-history; } |
|||
.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; } |
|||
.@{fa-css-prefix}-header:before { content: @fa-var-header; } |
|||
.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; } |
|||
.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; } |
|||
.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; } |
|||
.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; } |
|||
.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; } |
|||
.@{fa-css-prefix}-soccer-ball-o:before, |
|||
.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; } |
|||
.@{fa-css-prefix}-tty:before { content: @fa-var-tty; } |
|||
.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; } |
|||
.@{fa-css-prefix}-plug:before { content: @fa-var-plug; } |
|||
.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; } |
|||
.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; } |
|||
.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; } |
|||
.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; } |
|||
.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; } |
|||
.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; } |
|||
.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; } |
|||
.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; } |
|||
.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; } |
|||
.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; } |
|||
.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; } |
|||
.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; } |
|||
.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; } |
|||
.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; } |
|||
.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; } |
|||
.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; } |
|||
.@{fa-css-prefix}-trash:before { content: @fa-var-trash; } |
|||
.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; } |
|||
.@{fa-css-prefix}-at:before { content: @fa-var-at; } |
|||
.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; } |
|||
.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; } |
|||
.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; } |
|||
.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; } |
|||
.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; } |
|||
.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; } |
|||
.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; } |
|||
.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; } |
|||
.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; } |
|||
.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; } |
|||
.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; } |
|||
.@{fa-css-prefix}-bus:before { content: @fa-var-bus; } |
|||
.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; } |
|||
.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; } |
|||
.@{fa-css-prefix}-cc:before { content: @fa-var-cc; } |
|||
.@{fa-css-prefix}-shekel:before, |
|||
.@{fa-css-prefix}-sheqel:before, |
|||
.@{fa-css-prefix}-ils:before { content: @fa-var-ils; } |
|||
.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; } |
|||
.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; } |
|||
.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; } |
|||
.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; } |
|||
.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; } |
|||
.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; } |
|||
.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; } |
|||
.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; } |
|||
.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; } |
|||
.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; } |
|||
.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; } |
|||
.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; } |
|||
.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; } |
|||
.@{fa-css-prefix}-ship:before { content: @fa-var-ship; } |
|||
.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; } |
|||
.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; } |
|||
.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; } |
|||
.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; } |
|||
.@{fa-css-prefix}-venus:before { content: @fa-var-venus; } |
|||
.@{fa-css-prefix}-mars:before { content: @fa-var-mars; } |
|||
.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; } |
|||
.@{fa-css-prefix}-intersex:before, |
|||
.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; } |
|||
.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; } |
|||
.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; } |
|||
.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; } |
|||
.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; } |
|||
.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; } |
|||
.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; } |
|||
.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; } |
|||
.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; } |
|||
.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; } |
|||
.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; } |
|||
.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; } |
|||
.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; } |
|||
.@{fa-css-prefix}-server:before { content: @fa-var-server; } |
|||
.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; } |
|||
.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; } |
|||
.@{fa-css-prefix}-hotel:before, |
|||
.@{fa-css-prefix}-bed:before { content: @fa-var-bed; } |
|||
.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; } |
|||
.@{fa-css-prefix}-train:before { content: @fa-var-train; } |
|||
.@{fa-css-prefix}-subway:before { content: @fa-var-subway; } |
|||
.@{fa-css-prefix}-medium:before { content: @fa-var-medium; } |
|||
.@{fa-css-prefix}-yc:before, |
|||
.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; } |
|||
.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; } |
|||
.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; } |
|||
.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; } |
|||
.@{fa-css-prefix}-battery-4:before, |
|||
.@{fa-css-prefix}-battery:before, |
|||
.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; } |
|||
.@{fa-css-prefix}-battery-3:before, |
|||
.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; } |
|||
.@{fa-css-prefix}-battery-2:before, |
|||
.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; } |
|||
.@{fa-css-prefix}-battery-1:before, |
|||
.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; } |
|||
.@{fa-css-prefix}-battery-0:before, |
|||
.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; } |
|||
.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; } |
|||
.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; } |
|||
.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; } |
|||
.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; } |
|||
.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; } |
|||
.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; } |
|||
.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; } |
|||
.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; } |
|||
.@{fa-css-prefix}-clone:before { content: @fa-var-clone; } |
|||
.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; } |
|||
.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; } |
|||
.@{fa-css-prefix}-hourglass-1:before, |
|||
.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; } |
|||
.@{fa-css-prefix}-hourglass-2:before, |
|||
.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; } |
|||
.@{fa-css-prefix}-hourglass-3:before, |
|||
.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; } |
|||
.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; } |
|||
.@{fa-css-prefix}-hand-grab-o:before, |
|||
.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; } |
|||
.@{fa-css-prefix}-hand-stop-o:before, |
|||
.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; } |
|||
.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; } |
|||
.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; } |
|||
.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; } |
|||
.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; } |
|||
.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; } |
|||
.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; } |
|||
.@{fa-css-prefix}-registered:before { content: @fa-var-registered; } |
|||
.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; } |
|||
.@{fa-css-prefix}-gg:before { content: @fa-var-gg; } |
|||
.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; } |
|||
.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; } |
|||
.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; } |
|||
.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; } |
|||
.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; } |
|||
.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; } |
|||
.@{fa-css-prefix}-safari:before { content: @fa-var-safari; } |
|||
.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; } |
|||
.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; } |
|||
.@{fa-css-prefix}-opera:before { content: @fa-var-opera; } |
|||
.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; } |
|||
.@{fa-css-prefix}-tv:before, |
|||
.@{fa-css-prefix}-television:before { content: @fa-var-television; } |
|||
.@{fa-css-prefix}-contao:before { content: @fa-var-contao; } |
|||
.@{fa-css-prefix}-500px:before { content: @fa-var-500px; } |
|||
.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; } |
|||
.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; } |
|||
.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; } |
|||
.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; } |
|||
.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; } |
|||
.@{fa-css-prefix}-industry:before { content: @fa-var-industry; } |
|||
.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; } |
|||
.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; } |
|||
.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; } |
|||
.@{fa-css-prefix}-map:before { content: @fa-var-map; } |
|||
.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; } |
|||
.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; } |
|||
.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; } |
|||
.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; } |
|||
.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; } |
|||
.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; } |
|||
.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; } |
|||
.@{fa-css-prefix}-edge:before { content: @fa-var-edge; } |
|||
.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; } |
|||
.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; } |
|||
.@{fa-css-prefix}-modx:before { content: @fa-var-modx; } |
|||
.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; } |
|||
.@{fa-css-prefix}-usb:before { content: @fa-var-usb; } |
|||
.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; } |
|||
.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; } |
|||
.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; } |
|||
.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; } |
|||
.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; } |
|||
.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; } |
|||
.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; } |
|||
.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; } |
|||
.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; } |
|||
.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; } |
|||
.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; } |
|||
.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; } |
|||
.@{fa-css-prefix}-percent:before { content: @fa-var-percent; } |
|||
.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; } |
|||
.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; } |
|||
.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; } |
|||
.@{fa-css-prefix}-envira:before { content: @fa-var-envira; } |
|||
.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; } |
|||
.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; } |
|||
.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; } |
|||
.@{fa-css-prefix}-blind:before { content: @fa-var-blind; } |
|||
.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; } |
|||
.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; } |
|||
.@{fa-css-prefix}-braille:before { content: @fa-var-braille; } |
|||
.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; } |
|||
.@{fa-css-prefix}-asl-interpreting:before, |
|||
.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; } |
|||
.@{fa-css-prefix}-deafness:before, |
|||
.@{fa-css-prefix}-hard-of-hearing:before, |
|||
.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; } |
|||
.@{fa-css-prefix}-glide:before { content: @fa-var-glide; } |
|||
.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; } |
|||
.@{fa-css-prefix}-signing:before, |
|||
.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; } |
|||
.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; } |
|||
.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; } |
|||
.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; } |
|||
.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; } |
|||
.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; } |
|||
.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; } |
|||
.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; } |
|||
.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; } |
|||
.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; } |
|||
.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; } |
|||
.@{fa-css-prefix}-google-plus-circle:before, |
|||
.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; } |
|||
.@{fa-css-prefix}-fa:before, |
|||
.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; } |
|||
.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; } |
|||
.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; } |
|||
.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; } |
|||
.@{fa-css-prefix}-linode:before { content: @fa-var-linode; } |
|||
.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; } |
|||
.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; } |
|||
.@{fa-css-prefix}-vcard:before, |
|||
.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; } |
|||
.@{fa-css-prefix}-vcard-o:before, |
|||
.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; } |
|||
.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; } |
|||
.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; } |
|||
.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; } |
|||
.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; } |
|||
.@{fa-css-prefix}-drivers-license:before, |
|||
.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; } |
|||
.@{fa-css-prefix}-drivers-license-o:before, |
|||
.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; } |
|||
.@{fa-css-prefix}-quora:before { content: @fa-var-quora; } |
|||
.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; } |
|||
.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; } |
|||
.@{fa-css-prefix}-thermometer-4:before, |
|||
.@{fa-css-prefix}-thermometer:before, |
|||
.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; } |
|||
.@{fa-css-prefix}-thermometer-3:before, |
|||
.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; } |
|||
.@{fa-css-prefix}-thermometer-2:before, |
|||
.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; } |
|||
.@{fa-css-prefix}-thermometer-1:before, |
|||
.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; } |
|||
.@{fa-css-prefix}-thermometer-0:before, |
|||
.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; } |
|||
.@{fa-css-prefix}-shower:before { content: @fa-var-shower; } |
|||
.@{fa-css-prefix}-bathtub:before, |
|||
.@{fa-css-prefix}-s15:before, |
|||
.@{fa-css-prefix}-bath:before { content: @fa-var-bath; } |
|||
.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; } |
|||
.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; } |
|||
.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; } |
|||
.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; } |
|||
.@{fa-css-prefix}-times-rectangle:before, |
|||
.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; } |
|||
.@{fa-css-prefix}-times-rectangle-o:before, |
|||
.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; } |
|||
.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; } |
|||
.@{fa-css-prefix}-grav:before { content: @fa-var-grav; } |
|||
.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; } |
|||
.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; } |
|||
.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; } |
|||
.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; } |
|||
.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; } |
|||
.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; } |
|||
.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; } |
|||
.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; } |
|||
.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; } |
@ -0,0 +1,13 @@ |
|||
// Icon Sizes |
|||
// ------------------------- |
|||
|
|||
/* makes the font 33% larger relative to the icon container */ |
|||
.@{fa-css-prefix}-lg { |
|||
font-size: (4em / 3); |
|||
line-height: (3em / 4); |
|||
vertical-align: -15%; |
|||
} |
|||
.@{fa-css-prefix}-2x { font-size: 2em; } |
|||
.@{fa-css-prefix}-3x { font-size: 3em; } |
|||
.@{fa-css-prefix}-4x { font-size: 4em; } |
|||
.@{fa-css-prefix}-5x { font-size: 5em; } |
@ -0,0 +1,19 @@ |
|||
// List Icons |
|||
// ------------------------- |
|||
|
|||
.@{fa-css-prefix}-ul { |
|||
padding-left: 0; |
|||
margin-left: @fa-li-width; |
|||
list-style-type: none; |
|||
> li { position: relative; } |
|||
} |
|||
.@{fa-css-prefix}-li { |
|||
position: absolute; |
|||
left: -@fa-li-width; |
|||
width: @fa-li-width; |
|||
top: (2em / 14); |
|||
text-align: center; |
|||
&.@{fa-css-prefix}-lg { |
|||
left: (-@fa-li-width + (4em / 14)); |
|||
} |
|||
} |
@ -0,0 +1,60 @@ |
|||
// Mixins |
|||
// -------------------------- |
|||
|
|||
.fa-icon() { |
|||
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; |
|||
|
|||
} |
|||
|
|||
.fa-icon-rotate(@degrees, @rotation) { |
|||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})"; |
|||
-webkit-transform: rotate(@degrees); |
|||
-ms-transform: rotate(@degrees); |
|||
transform: rotate(@degrees); |
|||
} |
|||
|
|||
.fa-icon-flip(@horiz, @vert, @rotation) { |
|||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)"; |
|||
-webkit-transform: scale(@horiz, @vert); |
|||
-ms-transform: scale(@horiz, @vert); |
|||
transform: scale(@horiz, @vert); |
|||
} |
|||
|
|||
|
|||
// Only display content to screen readers. A la Bootstrap 4. |
|||
// |
|||
// See: http://a11yproject.com/posts/how-to-hide-content/ |
|||
|
|||
.sr-only() { |
|||
position: absolute; |
|||
width: 1px; |
|||
height: 1px; |
|||
padding: 0; |
|||
margin: -1px; |
|||
overflow: hidden; |
|||
clip: rect(0,0,0,0); |
|||
border: 0; |
|||
} |
|||
|
|||
// Use in conjunction with .sr-only to only display content when it's focused. |
|||
// |
|||
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 |
|||
// |
|||
// Credit: HTML5 Boilerplate |
|||
|
|||
.sr-only-focusable() { |
|||
&:active, |
|||
&:focus { |
|||
position: static; |
|||
width: auto; |
|||
height: auto; |
|||
margin: 0; |
|||
overflow: visible; |
|||
clip: auto; |
|||
} |
|||
} |
@ -0,0 +1,15 @@ |
|||
/* FONT PATH |
|||
* -------------------------- */ |
|||
|
|||
@font-face { |
|||
font-family: 'FontAwesome'; |
|||
src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); |
|||
src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), |
|||
url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), |
|||
url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), |
|||
url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), |
|||
url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); |
|||
// src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts |
|||
font-weight: normal; |
|||
font-style: normal; |
|||
} |
@ -0,0 +1,20 @@ |
|||
// Rotated & Flipped Icons |
|||
// ------------------------- |
|||
|
|||
.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } |
|||
.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } |
|||
.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } |
|||
|
|||
.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } |
|||
.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } |
|||
|
|||
// Hook for IE8-9 |
|||
// ------------------------- |
|||
|
|||
:root .@{fa-css-prefix}-rotate-90, |
|||
:root .@{fa-css-prefix}-rotate-180, |
|||
:root .@{fa-css-prefix}-rotate-270, |
|||
:root .@{fa-css-prefix}-flip-horizontal, |
|||
:root .@{fa-css-prefix}-flip-vertical { |
|||
filter: none; |
|||
} |
@ -0,0 +1,5 @@ |
|||
// Screen Readers |
|||
// ------------------------- |
|||
|
|||
.sr-only { .sr-only(); } |
|||
.sr-only-focusable { .sr-only-focusable(); } |
@ -0,0 +1,20 @@ |
|||
// Stacked Icons |
|||
// ------------------------- |
|||
|
|||
.@{fa-css-prefix}-stack { |
|||
position: relative; |
|||
display: inline-block; |
|||
width: 2em; |
|||
height: 2em; |
|||
line-height: 2em; |
|||
vertical-align: middle; |
|||
} |
|||
.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { |
|||
position: absolute; |
|||
left: 0; |
|||
width: 100%; |
|||
text-align: center; |
|||
} |
|||
.@{fa-css-prefix}-stack-1x { line-height: inherit; } |
|||
.@{fa-css-prefix}-stack-2x { font-size: 2em; } |
|||
.@{fa-css-prefix}-inverse { color: @fa-inverse; } |
@ -0,0 +1,800 @@ |
|||
// Variables |
|||
// -------------------------- |
|||
|
|||
@fa-font-path: "../fonts"; |
|||
@fa-font-size-base: 14px; |
|||
@fa-line-height-base: 1; |
|||
//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts"; // for referencing Bootstrap CDN font files directly |
|||
@fa-css-prefix: fa; |
|||
@fa-version: "4.7.0"; |
|||
@fa-border-color: #eee; |
|||
@fa-inverse: #fff; |
|||
@fa-li-width: (30em / 14); |
|||
|
|||
@fa-var-500px: "\f26e"; |
|||
@fa-var-address-book: "\f2b9"; |
|||
@fa-var-address-book-o: "\f2ba"; |
|||
@fa-var-address-card: "\f2bb"; |
|||
@fa-var-address-card-o: "\f2bc"; |
|||
@fa-var-adjust: "\f042"; |
|||
@fa-var-adn: "\f170"; |
|||
@fa-var-align-center: "\f037"; |
|||
@fa-var-align-justify: "\f039"; |
|||
@fa-var-align-left: "\f036"; |
|||
@fa-var-align-right: "\f038"; |
|||
@fa-var-amazon: "\f270"; |
|||
@fa-var-ambulance: "\f0f9"; |
|||
@fa-var-american-sign-language-interpreting: "\f2a3"; |
|||
@fa-var-anchor: "\f13d"; |
|||
@fa-var-android: "\f17b"; |
|||
@fa-var-angellist: "\f209"; |
|||
@fa-var-angle-double-down: "\f103"; |
|||
@fa-var-angle-double-left: "\f100"; |
|||
@fa-var-angle-double-right: "\f101"; |
|||
@fa-var-angle-double-up: "\f102"; |
|||
@fa-var-angle-down: "\f107"; |
|||
@fa-var-angle-left: "\f104"; |
|||
@fa-var-angle-right: "\f105"; |
|||
@fa-var-angle-up: "\f106"; |
|||
@fa-var-apple: "\f179"; |
|||
@fa-var-archive: "\f187"; |
|||
@fa-var-area-chart: "\f1fe"; |
|||
@fa-var-arrow-circle-down: "\f0ab"; |
|||
@fa-var-arrow-circle-left: "\f0a8"; |
|||
@fa-var-arrow-circle-o-down: "\f01a"; |
|||
@fa-var-arrow-circle-o-left: "\f190"; |
|||
@fa-var-arrow-circle-o-right: "\f18e"; |
|||
@fa-var-arrow-circle-o-up: "\f01b"; |
|||
@fa-var-arrow-circle-right: "\f0a9"; |
|||
@fa-var-arrow-circle-up: "\f0aa"; |
|||
@fa-var-arrow-down: "\f063"; |
|||
@fa-var-arrow-left: "\f060"; |
|||
@fa-var-arrow-right: "\f061"; |
|||
@fa-var-arrow-up: "\f062"; |
|||
@fa-var-arrows: "\f047"; |
|||
@fa-var-arrows-alt: "\f0b2"; |
|||
@fa-var-arrows-h: "\f07e"; |
|||
@fa-var-arrows-v: "\f07d"; |
|||
@fa-var-asl-interpreting: "\f2a3"; |
|||
@fa-var-assistive-listening-systems: "\f2a2"; |
|||
@fa-var-asterisk: "\f069"; |
|||
@fa-var-at: "\f1fa"; |
|||
@fa-var-audio-description: "\f29e"; |
|||
@fa-var-automobile: "\f1b9"; |
|||
@fa-var-backward: "\f04a"; |
|||
@fa-var-balance-scale: "\f24e"; |
|||
@fa-var-ban: "\f05e"; |
|||
@fa-var-bandcamp: "\f2d5"; |
|||
@fa-var-bank: "\f19c"; |
|||
@fa-var-bar-chart: "\f080"; |
|||
@fa-var-bar-chart-o: "\f080"; |
|||
@fa-var-barcode: "\f02a"; |
|||
@fa-var-bars: "\f0c9"; |
|||
@fa-var-bath: "\f2cd"; |
|||
@fa-var-bathtub: "\f2cd"; |
|||
@fa-var-battery: "\f240"; |
|||
@fa-var-battery-0: "\f244"; |
|||
@fa-var-battery-1: "\f243"; |
|||
@fa-var-battery-2: "\f242"; |
|||
@fa-var-battery-3: "\f241"; |
|||
@fa-var-battery-4: "\f240"; |
|||
@fa-var-battery-empty: "\f244"; |
|||
@fa-var-battery-full: "\f240"; |
|||
@fa-var-battery-half: "\f242"; |
|||
@fa-var-battery-quarter: "\f243"; |
|||
@fa-var-battery-three-quarters: "\f241"; |
|||
@fa-var-bed: "\f236"; |
|||
@fa-var-beer: "\f0fc"; |
|||
@fa-var-behance: "\f1b4"; |
|||
@fa-var-behance-square: "\f1b5"; |
|||
@fa-var-bell: "\f0f3"; |
|||
@fa-var-bell-o: "\f0a2"; |
|||
@fa-var-bell-slash: "\f1f6"; |
|||
@fa-var-bell-slash-o: "\f1f7"; |
|||
@fa-var-bicycle: "\f206"; |
|||
@fa-var-binoculars: "\f1e5"; |
|||
@fa-var-birthday-cake: "\f1fd"; |
|||
@fa-var-bitbucket: "\f171"; |
|||
@fa-var-bitbucket-square: "\f172"; |
|||
@fa-var-bitcoin: "\f15a"; |
|||
@fa-var-black-tie: "\f27e"; |
|||
@fa-var-blind: "\f29d"; |
|||
@fa-var-bluetooth: "\f293"; |
|||
@fa-var-bluetooth-b: "\f294"; |
|||
@fa-var-bold: "\f032"; |
|||
@fa-var-bolt: "\f0e7"; |
|||
@fa-var-bomb: "\f1e2"; |
|||
@fa-var-book: "\f02d"; |
|||
@fa-var-bookmark: "\f02e"; |
|||
@fa-var-bookmark-o: "\f097"; |
|||
@fa-var-braille: "\f2a1"; |
|||
@fa-var-briefcase: "\f0b1"; |
|||
@fa-var-btc: "\f15a"; |
|||
@fa-var-bug: "\f188"; |
|||
@fa-var-building: "\f1ad"; |
|||
@fa-var-building-o: "\f0f7"; |
|||
@fa-var-bullhorn: "\f0a1"; |
|||
@fa-var-bullseye: "\f140"; |
|||
@fa-var-bus: "\f207"; |
|||
@fa-var-buysellads: "\f20d"; |
|||
@fa-var-cab: "\f1ba"; |
|||
@fa-var-calculator: "\f1ec"; |
|||
@fa-var-calendar: "\f073"; |
|||
@fa-var-calendar-check-o: "\f274"; |
|||
@fa-var-calendar-minus-o: "\f272"; |
|||
@fa-var-calendar-o: "\f133"; |
|||
@fa-var-calendar-plus-o: "\f271"; |
|||
@fa-var-calendar-times-o: "\f273"; |
|||
@fa-var-camera: "\f030"; |
|||
@fa-var-camera-retro: "\f083"; |
|||
@fa-var-car: "\f1b9"; |
|||
@fa-var-caret-down: "\f0d7"; |
|||
@fa-var-caret-left: "\f0d9"; |
|||
@fa-var-caret-right: "\f0da"; |
|||
@fa-var-caret-square-o-down: "\f150"; |
|||
@fa-var-caret-square-o-left: "\f191"; |
|||
@fa-var-caret-square-o-right: "\f152"; |
|||
@fa-var-caret-square-o-up: "\f151"; |
|||
@fa-var-caret-up: "\f0d8"; |
|||
@fa-var-cart-arrow-down: "\f218"; |
|||
@fa-var-cart-plus: "\f217"; |
|||
@fa-var-cc: "\f20a"; |
|||
@fa-var-cc-amex: "\f1f3"; |
|||
@fa-var-cc-diners-club: "\f24c"; |
|||
@fa-var-cc-discover: "\f1f2"; |
|||
@fa-var-cc-jcb: "\f24b"; |
|||
@fa-var-cc-mastercard: "\f1f1"; |
|||
@fa-var-cc-paypal: "\f1f4"; |
|||
@fa-var-cc-stripe: "\f1f5"; |
|||
@fa-var-cc-visa: "\f1f0"; |
|||
@fa-var-certificate: "\f0a3"; |
|||
@fa-var-chain: "\f0c1"; |
|||
@fa-var-chain-broken: "\f127"; |
|||
@fa-var-check: "\f00c"; |
|||
@fa-var-check-circle: "\f058"; |
|||
@fa-var-check-circle-o: "\f05d"; |
|||
@fa-var-check-square: "\f14a"; |
|||
@fa-var-check-square-o: "\f046"; |
|||
@fa-var-chevron-circle-down: "\f13a"; |
|||
@fa-var-chevron-circle-left: "\f137"; |
|||
@fa-var-chevron-circle-right: "\f138"; |
|||
@fa-var-chevron-circle-up: "\f139"; |
|||
@fa-var-chevron-down: "\f078"; |
|||
@fa-var-chevron-left: "\f053"; |
|||
@fa-var-chevron-right: "\f054"; |
|||
@fa-var-chevron-up: "\f077"; |
|||
@fa-var-child: "\f1ae"; |
|||
@fa-var-chrome: "\f268"; |
|||
@fa-var-circle: "\f111"; |
|||
@fa-var-circle-o: "\f10c"; |
|||
@fa-var-circle-o-notch: "\f1ce"; |
|||
@fa-var-circle-thin: "\f1db"; |
|||
@fa-var-clipboard: "\f0ea"; |
|||
@fa-var-clock-o: "\f017"; |
|||
@fa-var-clone: "\f24d"; |
|||
@fa-var-close: "\f00d"; |
|||
@fa-var-cloud: "\f0c2"; |
|||
@fa-var-cloud-download: "\f0ed"; |
|||
@fa-var-cloud-upload: "\f0ee"; |
|||
@fa-var-cny: "\f157"; |
|||
@fa-var-code: "\f121"; |
|||
@fa-var-code-fork: "\f126"; |
|||
@fa-var-codepen: "\f1cb"; |
|||
@fa-var-codiepie: "\f284"; |
|||
@fa-var-coffee: "\f0f4"; |
|||
@fa-var-cog: "\f013"; |
|||
@fa-var-cogs: "\f085"; |
|||
@fa-var-columns: "\f0db"; |
|||
@fa-var-comment: "\f075"; |
|||
@fa-var-comment-o: "\f0e5"; |
|||
@fa-var-commenting: "\f27a"; |
|||
@fa-var-commenting-o: "\f27b"; |
|||
@fa-var-comments: "\f086"; |
|||
@fa-var-comments-o: "\f0e6"; |
|||
@fa-var-compass: "\f14e"; |
|||
@fa-var-compress: "\f066"; |
|||
@fa-var-connectdevelop: "\f20e"; |
|||
@fa-var-contao: "\f26d"; |
|||
@fa-var-copy: "\f0c5"; |
|||
@fa-var-copyright: "\f1f9"; |
|||
@fa-var-creative-commons: "\f25e"; |
|||
@fa-var-credit-card: "\f09d"; |
|||
@fa-var-credit-card-alt: "\f283"; |
|||
@fa-var-crop: "\f125"; |
|||
@fa-var-crosshairs: "\f05b"; |
|||
@fa-var-css3: "\f13c"; |
|||
@fa-var-cube: "\f1b2"; |
|||
@fa-var-cubes: "\f1b3"; |
|||
@fa-var-cut: "\f0c4"; |
|||
@fa-var-cutlery: "\f0f5"; |
|||
@fa-var-dashboard: "\f0e4"; |
|||
@fa-var-dashcube: "\f210"; |
|||
@fa-var-database: "\f1c0"; |
|||
@fa-var-deaf: "\f2a4"; |
|||
@fa-var-deafness: "\f2a4"; |
|||
@fa-var-dedent: "\f03b"; |
|||
@fa-var-delicious: "\f1a5"; |
|||
@fa-var-desktop: "\f108"; |
|||
@fa-var-deviantart: "\f1bd"; |
|||
@fa-var-diamond: "\f219"; |
|||
@fa-var-digg: "\f1a6"; |
|||
@fa-var-dollar: "\f155"; |
|||
@fa-var-dot-circle-o: "\f192"; |
|||
@fa-var-download: "\f019"; |
|||
@fa-var-dribbble: "\f17d"; |
|||
@fa-var-drivers-license: "\f2c2"; |
|||
@fa-var-drivers-license-o: "\f2c3"; |
|||
@fa-var-dropbox: "\f16b"; |
|||
@fa-var-drupal: "\f1a9"; |
|||
@fa-var-edge: "\f282"; |
|||
@fa-var-edit: "\f044"; |
|||
@fa-var-eercast: "\f2da"; |
|||
@fa-var-eject: "\f052"; |
|||
@fa-var-ellipsis-h: "\f141"; |
|||
@fa-var-ellipsis-v: "\f142"; |
|||
@fa-var-empire: "\f1d1"; |
|||
@fa-var-envelope: "\f0e0"; |
|||
@fa-var-envelope-o: "\f003"; |
|||
@fa-var-envelope-open: "\f2b6"; |
|||
@fa-var-envelope-open-o: "\f2b7"; |
|||
@fa-var-envelope-square: "\f199"; |
|||
@fa-var-envira: "\f299"; |
|||
@fa-var-eraser: "\f12d"; |
|||
@fa-var-etsy: "\f2d7"; |
|||
@fa-var-eur: "\f153"; |
|||
@fa-var-euro: "\f153"; |
|||
@fa-var-exchange: "\f0ec"; |
|||
@fa-var-exclamation: "\f12a"; |
|||
@fa-var-exclamation-circle: "\f06a"; |
|||
@fa-var-exclamation-triangle: "\f071"; |
|||
@fa-var-expand: "\f065"; |
|||
@fa-var-expeditedssl: "\f23e"; |
|||
@fa-var-external-link: "\f08e"; |
|||
@fa-var-external-link-square: "\f14c"; |
|||
@fa-var-eye: "\f06e"; |
|||
@fa-var-eye-slash: "\f070"; |
|||
@fa-var-eyedropper: "\f1fb"; |
|||
@fa-var-fa: "\f2b4"; |
|||
@fa-var-facebook: "\f09a"; |
|||
@fa-var-facebook-f: "\f09a"; |
|||
@fa-var-facebook-official: "\f230"; |
|||
@fa-var-facebook-square: "\f082"; |
|||
@fa-var-fast-backward: "\f049"; |
|||
@fa-var-fast-forward: "\f050"; |
|||
@fa-var-fax: "\f1ac"; |
|||
@fa-var-feed: "\f09e"; |
|||
@fa-var-female: "\f182"; |
|||
@fa-var-fighter-jet: "\f0fb"; |
|||
@fa-var-file: "\f15b"; |
|||
@fa-var-file-archive-o: "\f1c6"; |
|||
@fa-var-file-audio-o: "\f1c7"; |
|||
@fa-var-file-code-o: "\f1c9"; |
|||
@fa-var-file-excel-o: "\f1c3"; |
|||
@fa-var-file-image-o: "\f1c5"; |
|||
@fa-var-file-movie-o: "\f1c8"; |
|||
@fa-var-file-o: "\f016"; |
|||
@fa-var-file-pdf-o: "\f1c1"; |
|||
@fa-var-file-photo-o: "\f1c5"; |
|||
@fa-var-file-picture-o: "\f1c5"; |
|||
@fa-var-file-powerpoint-o: "\f1c4"; |
|||
@fa-var-file-sound-o: "\f1c7"; |
|||
@fa-var-file-text: "\f15c"; |
|||
@fa-var-file-text-o: "\f0f6"; |
|||
@fa-var-file-video-o: "\f1c8"; |
|||
@fa-var-file-word-o: "\f1c2"; |
|||
@fa-var-file-zip-o: "\f1c6"; |
|||
@fa-var-files-o: "\f0c5"; |
|||
@fa-var-film: "\f008"; |
|||
@fa-var-filter: "\f0b0"; |
|||
@fa-var-fire: "\f06d"; |
|||
@fa-var-fire-extinguisher: "\f134"; |
|||
@fa-var-firefox: "\f269"; |
|||
@fa-var-first-order: "\f2b0"; |
|||
@fa-var-flag: "\f024"; |
|||
@fa-var-flag-checkered: "\f11e"; |
|||
@fa-var-flag-o: "\f11d"; |
|||
@fa-var-flash: "\f0e7"; |
|||
@fa-var-flask: "\f0c3"; |
|||
@fa-var-flickr: "\f16e"; |
|||
@fa-var-floppy-o: "\f0c7"; |
|||
@fa-var-folder: "\f07b"; |
|||
@fa-var-folder-o: "\f114"; |
|||
@fa-var-folder-open: "\f07c"; |
|||
@fa-var-folder-open-o: "\f115"; |
|||
@fa-var-font: "\f031"; |
|||
@fa-var-font-awesome: "\f2b4"; |
|||
@fa-var-fonticons: "\f280"; |
|||
@fa-var-fort-awesome: "\f286"; |
|||
@fa-var-forumbee: "\f211"; |
|||
@fa-var-forward: "\f04e"; |
|||
@fa-var-foursquare: "\f180"; |
|||
@fa-var-free-code-camp: "\f2c5"; |
|||
@fa-var-frown-o: "\f119"; |
|||
@fa-var-futbol-o: "\f1e3"; |
|||
@fa-var-gamepad: "\f11b"; |
|||
@fa-var-gavel: "\f0e3"; |
|||
@fa-var-gbp: "\f154"; |
|||
@fa-var-ge: "\f1d1"; |
|||
@fa-var-gear: "\f013"; |
|||
@fa-var-gears: "\f085"; |
|||
@fa-var-genderless: "\f22d"; |
|||
@fa-var-get-pocket: "\f265"; |
|||
@fa-var-gg: "\f260"; |
|||
@fa-var-gg-circle: "\f261"; |
|||
@fa-var-gift: "\f06b"; |
|||
@fa-var-git: "\f1d3"; |
|||
@fa-var-git-square: "\f1d2"; |
|||
@fa-var-github: "\f09b"; |
|||
@fa-var-github-alt: "\f113"; |
|||
@fa-var-github-square: "\f092"; |
|||
@fa-var-gitlab: "\f296"; |
|||
@fa-var-gittip: "\f184"; |
|||
@fa-var-glass: "\f000"; |
|||
@fa-var-glide: "\f2a5"; |
|||
@fa-var-glide-g: "\f2a6"; |
|||
@fa-var-globe: "\f0ac"; |
|||
@fa-var-google: "\f1a0"; |
|||
@fa-var-google-plus: "\f0d5"; |
|||
@fa-var-google-plus-circle: "\f2b3"; |
|||
@fa-var-google-plus-official: "\f2b3"; |
|||
@fa-var-google-plus-square: "\f0d4"; |
|||
@fa-var-google-wallet: "\f1ee"; |
|||
@fa-var-graduation-cap: "\f19d"; |
|||
@fa-var-gratipay: "\f184"; |
|||
@fa-var-grav: "\f2d6"; |
|||
@fa-var-group: "\f0c0"; |
|||
@fa-var-h-square: "\f0fd"; |
|||
@fa-var-hacker-news: "\f1d4"; |
|||
@fa-var-hand-grab-o: "\f255"; |
|||
@fa-var-hand-lizard-o: "\f258"; |
|||
@fa-var-hand-o-down: "\f0a7"; |
|||
@fa-var-hand-o-left: "\f0a5"; |
|||
@fa-var-hand-o-right: "\f0a4"; |
|||
@fa-var-hand-o-up: "\f0a6"; |
|||
@fa-var-hand-paper-o: "\f256"; |
|||
@fa-var-hand-peace-o: "\f25b"; |
|||
@fa-var-hand-pointer-o: "\f25a"; |
|||
@fa-var-hand-rock-o: "\f255"; |
|||
@fa-var-hand-scissors-o: "\f257"; |
|||
@fa-var-hand-spock-o: "\f259"; |
|||
@fa-var-hand-stop-o: "\f256"; |
|||
@fa-var-handshake-o: "\f2b5"; |
|||
@fa-var-hard-of-hearing: "\f2a4"; |
|||
@fa-var-hashtag: "\f292"; |
|||
@fa-var-hdd-o: "\f0a0"; |
|||
@fa-var-header: "\f1dc"; |
|||
@fa-var-headphones: "\f025"; |
|||
@fa-var-heart: "\f004"; |
|||
@fa-var-heart-o: "\f08a"; |
|||
@fa-var-heartbeat: "\f21e"; |
|||
@fa-var-history: "\f1da"; |
|||
@fa-var-home: "\f015"; |
|||
@fa-var-hospital-o: "\f0f8"; |
|||
@fa-var-hotel: "\f236"; |
|||
@fa-var-hourglass: "\f254"; |
|||
@fa-var-hourglass-1: "\f251"; |
|||
@fa-var-hourglass-2: "\f252"; |
|||
@fa-var-hourglass-3: "\f253"; |
|||
@fa-var-hourglass-end: "\f253"; |
|||
@fa-var-hourglass-half: "\f252"; |
|||
@fa-var-hourglass-o: "\f250"; |
|||
@fa-var-hourglass-start: "\f251"; |
|||
@fa-var-houzz: "\f27c"; |
|||
@fa-var-html5: "\f13b"; |
|||
@fa-var-i-cursor: "\f246"; |
|||
@fa-var-id-badge: "\f2c1"; |
|||
@fa-var-id-card: "\f2c2"; |
|||
@fa-var-id-card-o: "\f2c3"; |
|||
@fa-var-ils: "\f20b"; |
|||
@fa-var-image: "\f03e"; |
|||
@fa-var-imdb: "\f2d8"; |
|||
@fa-var-inbox: "\f01c"; |
|||
@fa-var-indent: "\f03c"; |
|||
@fa-var-industry: "\f275"; |
|||
@fa-var-info: "\f129"; |
|||
@fa-var-info-circle: "\f05a"; |
|||
@fa-var-inr: "\f156"; |
|||
@fa-var-instagram: "\f16d"; |
|||
@fa-var-institution: "\f19c"; |
|||
@fa-var-internet-explorer: "\f26b"; |
|||
@fa-var-intersex: "\f224"; |
|||
@fa-var-ioxhost: "\f208"; |
|||
@fa-var-italic: "\f033"; |
|||
@fa-var-joomla: "\f1aa"; |
|||
@fa-var-jpy: "\f157"; |
|||
@fa-var-jsfiddle: "\f1cc"; |
|||
@fa-var-key: "\f084"; |
|||
@fa-var-keyboard-o: "\f11c"; |
|||
@fa-var-krw: "\f159"; |
|||
@fa-var-language: "\f1ab"; |
|||
@fa-var-laptop: "\f109"; |
|||
@fa-var-lastfm: "\f202"; |
|||
@fa-var-lastfm-square: "\f203"; |
|||
@fa-var-leaf: "\f06c"; |
|||
@fa-var-leanpub: "\f212"; |
|||
@fa-var-legal: "\f0e3"; |
|||
@fa-var-lemon-o: "\f094"; |
|||
@fa-var-level-down: "\f149"; |
|||
@fa-var-level-up: "\f148"; |
|||
@fa-var-life-bouy: "\f1cd"; |
|||
@fa-var-life-buoy: "\f1cd"; |
|||
@fa-var-life-ring: "\f1cd"; |
|||
@fa-var-life-saver: "\f1cd"; |
|||
@fa-var-lightbulb-o: "\f0eb"; |
|||
@fa-var-line-chart: "\f201"; |
|||
@fa-var-link: "\f0c1"; |
|||
@fa-var-linkedin: "\f0e1"; |
|||
@fa-var-linkedin-square: "\f08c"; |
|||
@fa-var-linode: "\f2b8"; |
|||
@fa-var-linux: "\f17c"; |
|||
@fa-var-list: "\f03a"; |
|||
@fa-var-list-alt: "\f022"; |
|||
@fa-var-list-ol: "\f0cb"; |
|||
@fa-var-list-ul: "\f0ca"; |
|||
@fa-var-location-arrow: "\f124"; |
|||
@fa-var-lock: "\f023"; |
|||
@fa-var-long-arrow-down: "\f175"; |
|||
@fa-var-long-arrow-left: "\f177"; |
|||
@fa-var-long-arrow-right: "\f178"; |
|||
@fa-var-long-arrow-up: "\f176"; |
|||
@fa-var-low-vision: "\f2a8"; |
|||
@fa-var-magic: "\f0d0"; |
|||
@fa-var-magnet: "\f076"; |
|||
@fa-var-mail-forward: "\f064"; |
|||
@fa-var-mail-reply: "\f112"; |
|||
@fa-var-mail-reply-all: "\f122"; |
|||
@fa-var-male: "\f183"; |
|||
@fa-var-map: "\f279"; |
|||
@fa-var-map-marker: "\f041"; |
|||
@fa-var-map-o: "\f278"; |
|||
@fa-var-map-pin: "\f276"; |
|||
@fa-var-map-signs: "\f277"; |
|||
@fa-var-mars: "\f222"; |
|||
@fa-var-mars-double: "\f227"; |
|||
@fa-var-mars-stroke: "\f229"; |
|||
@fa-var-mars-stroke-h: "\f22b"; |
|||
@fa-var-mars-stroke-v: "\f22a"; |
|||
@fa-var-maxcdn: "\f136"; |
|||
@fa-var-meanpath: "\f20c"; |
|||
@fa-var-medium: "\f23a"; |
|||
@fa-var-medkit: "\f0fa"; |
|||
@fa-var-meetup: "\f2e0"; |
|||
@fa-var-meh-o: "\f11a"; |
|||
@fa-var-mercury: "\f223"; |
|||
@fa-var-microchip: "\f2db"; |
|||
@fa-var-microphone: "\f130"; |
|||
@fa-var-microphone-slash: "\f131"; |
|||
@fa-var-minus: "\f068"; |
|||
@fa-var-minus-circle: "\f056"; |
|||
@fa-var-minus-square: "\f146"; |
|||
@fa-var-minus-square-o: "\f147"; |
|||
@fa-var-mixcloud: "\f289"; |
|||
@fa-var-mobile: "\f10b"; |
|||
@fa-var-mobile-phone: "\f10b"; |
|||
@fa-var-modx: "\f285"; |
|||
@fa-var-money: "\f0d6"; |
|||
@fa-var-moon-o: "\f186"; |
|||
@fa-var-mortar-board: "\f19d"; |
|||
@fa-var-motorcycle: "\f21c"; |
|||
@fa-var-mouse-pointer: "\f245"; |
|||
@fa-var-music: "\f001"; |
|||
@fa-var-navicon: "\f0c9"; |
|||
@fa-var-neuter: "\f22c"; |
|||
@fa-var-newspaper-o: "\f1ea"; |
|||
@fa-var-object-group: "\f247"; |
|||
@fa-var-object-ungroup: "\f248"; |
|||
@fa-var-odnoklassniki: "\f263"; |
|||
@fa-var-odnoklassniki-square: "\f264"; |
|||
@fa-var-opencart: "\f23d"; |
|||
@fa-var-openid: "\f19b"; |
|||
@fa-var-opera: "\f26a"; |
|||
@fa-var-optin-monster: "\f23c"; |
|||
@fa-var-outdent: "\f03b"; |
|||
@fa-var-pagelines: "\f18c"; |
|||
@fa-var-paint-brush: "\f1fc"; |
|||
@fa-var-paper-plane: "\f1d8"; |
|||
@fa-var-paper-plane-o: "\f1d9"; |
|||
@fa-var-paperclip: "\f0c6"; |
|||
@fa-var-paragraph: "\f1dd"; |
|||
@fa-var-paste: "\f0ea"; |
|||
@fa-var-pause: "\f04c"; |
|||
@fa-var-pause-circle: "\f28b"; |
|||
@fa-var-pause-circle-o: "\f28c"; |
|||
@fa-var-paw: "\f1b0"; |
|||
@fa-var-paypal: "\f1ed"; |
|||
@fa-var-pencil: "\f040"; |
|||
@fa-var-pencil-square: "\f14b"; |
|||
@fa-var-pencil-square-o: "\f044"; |
|||
@fa-var-percent: "\f295"; |
|||
@fa-var-phone: "\f095"; |
|||
@fa-var-phone-square: "\f098"; |
|||
@fa-var-photo: "\f03e"; |
|||
@fa-var-picture-o: "\f03e"; |
|||
@fa-var-pie-chart: "\f200"; |
|||
@fa-var-pied-piper: "\f2ae"; |
|||
@fa-var-pied-piper-alt: "\f1a8"; |
|||
@fa-var-pied-piper-pp: "\f1a7"; |
|||
@fa-var-pinterest: "\f0d2"; |
|||
@fa-var-pinterest-p: "\f231"; |
|||
@fa-var-pinterest-square: "\f0d3"; |
|||
@fa-var-plane: "\f072"; |
|||
@fa-var-play: "\f04b"; |
|||
@fa-var-play-circle: "\f144"; |
|||
@fa-var-play-circle-o: "\f01d"; |
|||
@fa-var-plug: "\f1e6"; |
|||
@fa-var-plus: "\f067"; |
|||
@fa-var-plus-circle: "\f055"; |
|||
@fa-var-plus-square: "\f0fe"; |
|||
@fa-var-plus-square-o: "\f196"; |
|||
@fa-var-podcast: "\f2ce"; |
|||
@fa-var-power-off: "\f011"; |
|||
@fa-var-print: "\f02f"; |
|||
@fa-var-product-hunt: "\f288"; |
|||
@fa-var-puzzle-piece: "\f12e"; |
|||
@fa-var-qq: "\f1d6"; |
|||
@fa-var-qrcode: "\f029"; |
|||
@fa-var-question: "\f128"; |
|||
@fa-var-question-circle: "\f059"; |
|||
@fa-var-question-circle-o: "\f29c"; |
|||
@fa-var-quora: "\f2c4"; |
|||
@fa-var-quote-left: "\f10d"; |
|||
@fa-var-quote-right: "\f10e"; |
|||
@fa-var-ra: "\f1d0"; |
|||
@fa-var-random: "\f074"; |
|||
@fa-var-ravelry: "\f2d9"; |
|||
@fa-var-rebel: "\f1d0"; |
|||
@fa-var-recycle: "\f1b8"; |
|||
@fa-var-reddit: "\f1a1"; |
|||
@fa-var-reddit-alien: "\f281"; |
|||
@fa-var-reddit-square: "\f1a2"; |
|||
@fa-var-refresh: "\f021"; |
|||
@fa-var-registered: "\f25d"; |
|||
@fa-var-remove: "\f00d"; |
|||
@fa-var-renren: "\f18b"; |
|||
@fa-var-reorder: "\f0c9"; |
|||
@fa-var-repeat: "\f01e"; |
|||
@fa-var-reply: "\f112"; |
|||
@fa-var-reply-all: "\f122"; |
|||
@fa-var-resistance: "\f1d0"; |
|||
@fa-var-retweet: "\f079"; |
|||
@fa-var-rmb: "\f157"; |
|||
@fa-var-road: "\f018"; |
|||
@fa-var-rocket: "\f135"; |
|||
@fa-var-rotate-left: "\f0e2"; |
|||
@fa-var-rotate-right: "\f01e"; |
|||
@fa-var-rouble: "\f158"; |
|||
@fa-var-rss: "\f09e"; |
|||
@fa-var-rss-square: "\f143"; |
|||
@fa-var-rub: "\f158"; |
|||
@fa-var-ruble: "\f158"; |
|||
@fa-var-rupee: "\f156"; |
|||
@fa-var-s15: "\f2cd"; |
|||
@fa-var-safari: "\f267"; |
|||
@fa-var-save: "\f0c7"; |
|||
@fa-var-scissors: "\f0c4"; |
|||
@fa-var-scribd: "\f28a"; |
|||
@fa-var-search: "\f002"; |
|||
@fa-var-search-minus: "\f010"; |
|||
@fa-var-search-plus: "\f00e"; |
|||
@fa-var-sellsy: "\f213"; |
|||
@fa-var-send: "\f1d8"; |
|||
@fa-var-send-o: "\f1d9"; |
|||
@fa-var-server: "\f233"; |
|||
@fa-var-share: "\f064"; |
|||
@fa-var-share-alt: "\f1e0"; |
|||
@fa-var-share-alt-square: "\f1e1"; |
|||
@fa-var-share-square: "\f14d"; |
|||
@fa-var-share-square-o: "\f045"; |
|||
@fa-var-shekel: "\f20b"; |
|||
@fa-var-sheqel: "\f20b"; |
|||
@fa-var-shield: "\f132"; |
|||
@fa-var-ship: "\f21a"; |
|||
@fa-var-shirtsinbulk: "\f214"; |
|||
@fa-var-shopping-bag: "\f290"; |
|||
@fa-var-shopping-basket: "\f291"; |
|||
@fa-var-shopping-cart: "\f07a"; |
|||
@fa-var-shower: "\f2cc"; |
|||
@fa-var-sign-in: "\f090"; |
|||
@fa-var-sign-language: "\f2a7"; |
|||
@fa-var-sign-out: "\f08b"; |
|||
@fa-var-signal: "\f012"; |
|||
@fa-var-signing: "\f2a7"; |
|||
@fa-var-simplybuilt: "\f215"; |
|||
@fa-var-sitemap: "\f0e8"; |
|||
@fa-var-skyatlas: "\f216"; |
|||
@fa-var-skype: "\f17e"; |
|||
@fa-var-slack: "\f198"; |
|||
@fa-var-sliders: "\f1de"; |
|||
@fa-var-slideshare: "\f1e7"; |
|||
@fa-var-smile-o: "\f118"; |
|||
@fa-var-snapchat: "\f2ab"; |
|||
@fa-var-snapchat-ghost: "\f2ac"; |
|||
@fa-var-snapchat-square: "\f2ad"; |
|||
@fa-var-snowflake-o: "\f2dc"; |
|||
@fa-var-soccer-ball-o: "\f1e3"; |
|||
@fa-var-sort: "\f0dc"; |
|||
@fa-var-sort-alpha-asc: "\f15d"; |
|||
@fa-var-sort-alpha-desc: "\f15e"; |
|||
@fa-var-sort-amount-asc: "\f160"; |
|||
@fa-var-sort-amount-desc: "\f161"; |
|||
@fa-var-sort-asc: "\f0de"; |
|||
@fa-var-sort-desc: "\f0dd"; |
|||
@fa-var-sort-down: "\f0dd"; |
|||
@fa-var-sort-numeric-asc: "\f162"; |
|||
@fa-var-sort-numeric-desc: "\f163"; |
|||
@fa-var-sort-up: "\f0de"; |
|||
@fa-var-soundcloud: "\f1be"; |
|||
@fa-var-space-shuttle: "\f197"; |
|||
@fa-var-spinner: "\f110"; |
|||
@fa-var-spoon: "\f1b1"; |
|||
@fa-var-spotify: "\f1bc"; |
|||
@fa-var-square: "\f0c8"; |
|||
@fa-var-square-o: "\f096"; |
|||
@fa-var-stack-exchange: "\f18d"; |
|||
@fa-var-stack-overflow: "\f16c"; |
|||
@fa-var-star: "\f005"; |
|||
@fa-var-star-half: "\f089"; |
|||
@fa-var-star-half-empty: "\f123"; |
|||
@fa-var-star-half-full: "\f123"; |
|||
@fa-var-star-half-o: "\f123"; |
|||
@fa-var-star-o: "\f006"; |
|||
@fa-var-steam: "\f1b6"; |
|||
@fa-var-steam-square: "\f1b7"; |
|||
@fa-var-step-backward: "\f048"; |
|||
@fa-var-step-forward: "\f051"; |
|||
@fa-var-stethoscope: "\f0f1"; |
|||
@fa-var-sticky-note: "\f249"; |
|||
@fa-var-sticky-note-o: "\f24a"; |
|||
@fa-var-stop: "\f04d"; |
|||
@fa-var-stop-circle: "\f28d"; |
|||
@fa-var-stop-circle-o: "\f28e"; |
|||
@fa-var-street-view: "\f21d"; |
|||
@fa-var-strikethrough: "\f0cc"; |
|||
@fa-var-stumbleupon: "\f1a4"; |
|||
@fa-var-stumbleupon-circle: "\f1a3"; |
|||
@fa-var-subscript: "\f12c"; |
|||
@fa-var-subway: "\f239"; |
|||
@fa-var-suitcase: "\f0f2"; |
|||
@fa-var-sun-o: "\f185"; |
|||
@fa-var-superpowers: "\f2dd"; |
|||
@fa-var-superscript: "\f12b"; |
|||
@fa-var-support: "\f1cd"; |
|||
@fa-var-table: "\f0ce"; |
|||
@fa-var-tablet: "\f10a"; |
|||
@fa-var-tachometer: "\f0e4"; |
|||
@fa-var-tag: "\f02b"; |
|||
@fa-var-tags: "\f02c"; |
|||
@fa-var-tasks: "\f0ae"; |
|||
@fa-var-taxi: "\f1ba"; |
|||
@fa-var-telegram: "\f2c6"; |
|||
@fa-var-television: "\f26c"; |
|||
@fa-var-tencent-weibo: "\f1d5"; |
|||
@fa-var-terminal: "\f120"; |
|||
@fa-var-text-height: "\f034"; |
|||
@fa-var-text-width: "\f035"; |
|||
@fa-var-th: "\f00a"; |
|||
@fa-var-th-large: "\f009"; |
|||
@fa-var-th-list: "\f00b"; |
|||
@fa-var-themeisle: "\f2b2"; |
|||
@fa-var-thermometer: "\f2c7"; |
|||
@fa-var-thermometer-0: "\f2cb"; |
|||
@fa-var-thermometer-1: "\f2ca"; |
|||
@fa-var-thermometer-2: "\f2c9"; |
|||
@fa-var-thermometer-3: "\f2c8"; |
|||
@fa-var-thermometer-4: "\f2c7"; |
|||
@fa-var-thermometer-empty: "\f2cb"; |
|||
@fa-var-thermometer-full: "\f2c7"; |
|||
@fa-var-thermometer-half: "\f2c9"; |
|||
@fa-var-thermometer-quarter: "\f2ca"; |
|||
@fa-var-thermometer-three-quarters: "\f2c8"; |
|||
@fa-var-thumb-tack: "\f08d"; |
|||
@fa-var-thumbs-down: "\f165"; |
|||
@fa-var-thumbs-o-down: "\f088"; |
|||
@fa-var-thumbs-o-up: "\f087"; |
|||
@fa-var-thumbs-up: "\f164"; |
|||
@fa-var-ticket: "\f145"; |
|||
@fa-var-times: "\f00d"; |
|||
@fa-var-times-circle: "\f057"; |
|||
@fa-var-times-circle-o: "\f05c"; |
|||
@fa-var-times-rectangle: "\f2d3"; |
|||
@fa-var-times-rectangle-o: "\f2d4"; |
|||
@fa-var-tint: "\f043"; |
|||
@fa-var-toggle-down: "\f150"; |
|||
@fa-var-toggle-left: "\f191"; |
|||
@fa-var-toggle-off: "\f204"; |
|||
@fa-var-toggle-on: "\f205"; |
|||
@fa-var-toggle-right: "\f152"; |
|||
@fa-var-toggle-up: "\f151"; |
|||
@fa-var-trademark: "\f25c"; |
|||
@fa-var-train: "\f238"; |
|||
@fa-var-transgender: "\f224"; |
|||
@fa-var-transgender-alt: "\f225"; |
|||
@fa-var-trash: "\f1f8"; |
|||
@fa-var-trash-o: "\f014"; |
|||
@fa-var-tree: "\f1bb"; |
|||
@fa-var-trello: "\f181"; |
|||
@fa-var-tripadvisor: "\f262"; |
|||
@fa-var-trophy: "\f091"; |
|||
@fa-var-truck: "\f0d1"; |
|||
@fa-var-try: "\f195"; |
|||
@fa-var-tty: "\f1e4"; |
|||
@fa-var-tumblr: "\f173"; |
|||
@fa-var-tumblr-square: "\f174"; |
|||
@fa-var-turkish-lira: "\f195"; |
|||
@fa-var-tv: "\f26c"; |
|||
@fa-var-twitch: "\f1e8"; |
|||
@fa-var-twitter: "\f099"; |
|||
@fa-var-twitter-square: "\f081"; |
|||
@fa-var-umbrella: "\f0e9"; |
|||
@fa-var-underline: "\f0cd"; |
|||
@fa-var-undo: "\f0e2"; |
|||
@fa-var-universal-access: "\f29a"; |
|||
@fa-var-university: "\f19c"; |
|||
@fa-var-unlink: "\f127"; |
|||
@fa-var-unlock: "\f09c"; |
|||
@fa-var-unlock-alt: "\f13e"; |
|||
@fa-var-unsorted: "\f0dc"; |
|||
@fa-var-upload: "\f093"; |
|||
@fa-var-usb: "\f287"; |
|||
@fa-var-usd: "\f155"; |
|||
@fa-var-user: "\f007"; |
|||
@fa-var-user-circle: "\f2bd"; |
|||
@fa-var-user-circle-o: "\f2be"; |
|||
@fa-var-user-md: "\f0f0"; |
|||
@fa-var-user-o: "\f2c0"; |
|||
@fa-var-user-plus: "\f234"; |
|||
@fa-var-user-secret: "\f21b"; |
|||
@fa-var-user-times: "\f235"; |
|||
@fa-var-users: "\f0c0"; |
|||
@fa-var-vcard: "\f2bb"; |
|||
@fa-var-vcard-o: "\f2bc"; |
|||
@fa-var-venus: "\f221"; |
|||
@fa-var-venus-double: "\f226"; |
|||
@fa-var-venus-mars: "\f228"; |
|||
@fa-var-viacoin: "\f237"; |
|||
@fa-var-viadeo: "\f2a9"; |
|||
@fa-var-viadeo-square: "\f2aa"; |
|||
@fa-var-video-camera: "\f03d"; |
|||
@fa-var-vimeo: "\f27d"; |
|||
@fa-var-vimeo-square: "\f194"; |
|||
@fa-var-vine: "\f1ca"; |
|||
@fa-var-vk: "\f189"; |
|||
@fa-var-volume-control-phone: "\f2a0"; |
|||
@fa-var-volume-down: "\f027"; |
|||
@fa-var-volume-off: "\f026"; |
|||
@fa-var-volume-up: "\f028"; |
|||
@fa-var-warning: "\f071"; |
|||
@fa-var-wechat: "\f1d7"; |
|||
@fa-var-weibo: "\f18a"; |
|||
@fa-var-weixin: "\f1d7"; |
|||
@fa-var-whatsapp: "\f232"; |
|||
@fa-var-wheelchair: "\f193"; |
|||
@fa-var-wheelchair-alt: "\f29b"; |
|||
@fa-var-wifi: "\f1eb"; |
|||
@fa-var-wikipedia-w: "\f266"; |
|||
@fa-var-window-close: "\f2d3"; |
|||
@fa-var-window-close-o: "\f2d4"; |
|||
@fa-var-window-maximize: "\f2d0"; |
|||
@fa-var-window-minimize: "\f2d1"; |
|||
@fa-var-window-restore: "\f2d2"; |
|||
@fa-var-windows: "\f17a"; |
|||
@fa-var-won: "\f159"; |
|||
@fa-var-wordpress: "\f19a"; |
|||
@fa-var-wpbeginner: "\f297"; |
|||
@fa-var-wpexplorer: "\f2de"; |
|||
@fa-var-wpforms: "\f298"; |
|||
@fa-var-wrench: "\f0ad"; |
|||
@fa-var-xing: "\f168"; |
|||
@fa-var-xing-square: "\f169"; |
|||
@fa-var-y-combinator: "\f23b"; |
|||
@fa-var-y-combinator-square: "\f1d4"; |
|||
@fa-var-yahoo: "\f19e"; |
|||
@fa-var-yc: "\f23b"; |
|||
@fa-var-yc-square: "\f1d4"; |
|||
@fa-var-yelp: "\f1e9"; |
|||
@fa-var-yen: "\f157"; |
|||
@fa-var-yoast: "\f2b1"; |
|||
@fa-var-youtube: "\f167"; |
|||
@fa-var-youtube-play: "\f16a"; |
|||
@fa-var-youtube-square: "\f166"; |
|||
|
@ -0,0 +1,34 @@ |
|||
// Spinning 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,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, |
|||
.#{$fa-css-prefix}-paper-plane:before { content: $fa-var-paper-plane; } |
|||
.#{$fa-css-prefix}-send-o:before, |
|||
.#{$fa-css-prefix}-paper-plane-o:before { content: $fa-var-paper-plane-o; } |
|||
.#{$fa-css-prefix}-history:before { content: $fa-var-history; } |
|||
.#{$fa-css-prefix}-circle-thin:before { content: $fa-var-circle-thin; } |
|||
.#{$fa-css-prefix}-header:before { content: $fa-var-header; } |
|||
.#{$fa-css-prefix}-paragraph:before { content: $fa-var-paragraph; } |
|||
.#{$fa-css-prefix}-sliders:before { content: $fa-var-sliders; } |
|||
.#{$fa-css-prefix}-share-alt:before { content: $fa-var-share-alt; } |
|||
.#{$fa-css-prefix}-share-alt-square:before { content: $fa-var-share-alt-square; } |
|||
.#{$fa-css-prefix}-bomb:before { content: $fa-var-bomb; } |
|||
.#{$fa-css-prefix}-soccer-ball-o:before, |
|||
.#{$fa-css-prefix}-futbol-o:before { content: $fa-var-futbol-o; } |
|||
.#{$fa-css-prefix}-tty:before { content: $fa-var-tty; } |
|||
.#{$fa-css-prefix}-binoculars:before { content: $fa-var-binoculars; } |
|||
.#{$fa-css-prefix}-plug:before { content: $fa-var-plug; } |
|||
.#{$fa-css-prefix}-slideshare:before { content: $fa-var-slideshare; } |
|||
.#{$fa-css-prefix}-twitch:before { content: $fa-var-twitch; } |
|||
.#{$fa-css-prefix}-yelp:before { content: $fa-var-yelp; } |
|||
.#{$fa-css-prefix}-newspaper-o:before { content: $fa-var-newspaper-o; } |
|||
.#{$fa-css-prefix}-wifi:before { content: $fa-var-wifi; } |
|||
.#{$fa-css-prefix}-calculator:before { content: $fa-var-calculator; } |
|||
.#{$fa-css-prefix}-paypal:before { content: $fa-var-paypal; } |
|||
.#{$fa-css-prefix}-google-wallet:before { content: $fa-var-google-wallet; } |
|||
.#{$fa-css-prefix}-cc-visa:before { content: $fa-var-cc-visa; } |
|||
.#{$fa-css-prefix}-cc-mastercard:before { content: $fa-var-cc-mastercard; } |
|||
.#{$fa-css-prefix}-cc-discover:before { content: $fa-var-cc-discover; } |
|||
.#{$fa-css-prefix}-cc-amex:before { content: $fa-var-cc-amex; } |
|||
.#{$fa-css-prefix}-cc-paypal:before { content: $fa-var-cc-paypal; } |
|||
.#{$fa-css-prefix}-cc-stripe:before { content: $fa-var-cc-stripe; } |
|||
.#{$fa-css-prefix}-bell-slash:before { content: $fa-var-bell-slash; } |
|||
.#{$fa-css-prefix}-bell-slash-o:before { content: $fa-var-bell-slash-o; } |
|||
.#{$fa-css-prefix}-trash:before { content: $fa-var-trash; } |
|||
.#{$fa-css-prefix}-copyright:before { content: $fa-var-copyright; } |
|||
.#{$fa-css-prefix}-at:before { content: $fa-var-at; } |
|||
.#{$fa-css-prefix}-eyedropper:before { content: $fa-var-eyedropper; } |
|||
.#{$fa-css-prefix}-paint-brush:before { content: $fa-var-paint-brush; } |
|||
.#{$fa-css-prefix}-birthday-cake:before { content: $fa-var-birthday-cake; } |
|||
.#{$fa-css-prefix}-area-chart:before { content: $fa-var-area-chart; } |
|||
.#{$fa-css-prefix}-pie-chart:before { content: $fa-var-pie-chart; } |
|||
.#{$fa-css-prefix}-line-chart:before { content: $fa-var-line-chart; } |
|||
.#{$fa-css-prefix}-lastfm:before { content: $fa-var-lastfm; } |
|||
.#{$fa-css-prefix}-lastfm-square:before { content: $fa-var-lastfm-square; } |
|||
.#{$fa-css-prefix}-toggle-off:before { content: $fa-var-toggle-off; } |
|||
.#{$fa-css-prefix}-toggle-on:before { content: $fa-var-toggle-on; } |
|||
.#{$fa-css-prefix}-bicycle:before { content: $fa-var-bicycle; } |
|||
.#{$fa-css-prefix}-bus:before { content: $fa-var-bus; } |
|||
.#{$fa-css-prefix}-ioxhost:before { content: $fa-var-ioxhost; } |
|||
.#{$fa-css-prefix}-angellist:before { content: $fa-var-angellist; } |
|||
.#{$fa-css-prefix}-cc:before { content: $fa-var-cc; } |
|||
.#{$fa-css-prefix}-shekel:before, |
|||
.#{$fa-css-prefix}-sheqel:before, |
|||
.#{$fa-css-prefix}-ils:before { content: $fa-var-ils; } |
|||
.#{$fa-css-prefix}-meanpath:before { content: $fa-var-meanpath; } |
|||
.#{$fa-css-prefix}-buysellads:before { content: $fa-var-buysellads; } |
|||
.#{$fa-css-prefix}-connectdevelop:before { content: $fa-var-connectdevelop; } |
|||
.#{$fa-css-prefix}-dashcube:before { content: $fa-var-dashcube; } |
|||
.#{$fa-css-prefix}-forumbee:before { content: $fa-var-forumbee; } |
|||
.#{$fa-css-prefix}-leanpub:before { content: $fa-var-leanpub; } |
|||
.#{$fa-css-prefix}-sellsy:before { content: $fa-var-sellsy; } |
|||
.#{$fa-css-prefix}-shirtsinbulk:before { content: $fa-var-shirtsinbulk; } |
|||
.#{$fa-css-prefix}-simplybuilt:before { content: $fa-var-simplybuilt; } |
|||
.#{$fa-css-prefix}-skyatlas:before { content: $fa-var-skyatlas; } |
|||
.#{$fa-css-prefix}-cart-plus:before { content: $fa-var-cart-plus; } |
|||
.#{$fa-css-prefix}-cart-arrow-down:before { content: $fa-var-cart-arrow-down; } |
|||
.#{$fa-css-prefix}-diamond:before { content: $fa-var-diamond; } |
|||
.#{$fa-css-prefix}-ship:before { content: $fa-var-ship; } |
|||
.#{$fa-css-prefix}-user-secret:before { content: $fa-var-user-secret; } |
|||
.#{$fa-css-prefix}-motorcycle:before { content: $fa-var-motorcycle; } |
|||
.#{$fa-css-prefix}-street-view:before { content: $fa-var-street-view; } |
|||
.#{$fa-css-prefix}-heartbeat:before { content: $fa-var-heartbeat; } |
|||
.#{$fa-css-prefix}-venus:before { content: $fa-var-venus; } |
|||
.#{$fa-css-prefix}-mars:before { content: $fa-var-mars; } |
|||
.#{$fa-css-prefix}-mercury:before { content: $fa-var-mercury; } |
|||
.#{$fa-css-prefix}-intersex:before, |
|||
.#{$fa-css-prefix}-transgender:before { content: $fa-var-transgender; } |
|||
.#{$fa-css-prefix}-transgender-alt:before { content: $fa-var-transgender-alt; } |
|||
.#{$fa-css-prefix}-venus-double:before { content: $fa-var-venus-double; } |
|||
.#{$fa-css-prefix}-mars-double:before { content: $fa-var-mars-double; } |
|||
.#{$fa-css-prefix}-venus-mars:before { content: $fa-var-venus-mars; } |
|||
.#{$fa-css-prefix}-mars-stroke:before { content: $fa-var-mars-stroke; } |
|||
.#{$fa-css-prefix}-mars-stroke-v:before { content: $fa-var-mars-stroke-v; } |
|||
.#{$fa-css-prefix}-mars-stroke-h:before { content: $fa-var-mars-stroke-h; } |
|||
.#{$fa-css-prefix}-neuter:before { content: $fa-var-neuter; } |
|||
.#{$fa-css-prefix}-genderless:before { content: $fa-var-genderless; } |
|||
.#{$fa-css-prefix}-facebook-official:before { content: $fa-var-facebook-official; } |
|||
.#{$fa-css-prefix}-pinterest-p:before { content: $fa-var-pinterest-p; } |
|||
.#{$fa-css-prefix}-whatsapp:before { content: $fa-var-whatsapp; } |
|||
.#{$fa-css-prefix}-server:before { content: $fa-var-server; } |
|||
.#{$fa-css-prefix}-user-plus:before { content: $fa-var-user-plus; } |
|||
.#{$fa-css-prefix}-user-times:before { content: $fa-var-user-times; } |
|||
.#{$fa-css-prefix}-hotel:before, |
|||
.#{$fa-css-prefix}-bed:before { content: $fa-var-bed; } |
|||
.#{$fa-css-prefix}-viacoin:before { content: $fa-var-viacoin; } |
|||
.#{$fa-css-prefix}-train:before { content: $fa-var-train; } |
|||
.#{$fa-css-prefix}-subway:before { content: $fa-var-subway; } |
|||
.#{$fa-css-prefix}-medium:before { content: $fa-var-medium; } |
|||
.#{$fa-css-prefix}-yc:before, |
|||
.#{$fa-css-prefix}-y-combinator:before { content: $fa-var-y-combinator; } |
|||
.#{$fa-css-prefix}-optin-monster:before { content: $fa-var-optin-monster; } |
|||
.#{$fa-css-prefix}-opencart:before { content: $fa-var-opencart; } |
|||
.#{$fa-css-prefix}-expeditedssl:before { content: $fa-var-expeditedssl; } |
|||
.#{$fa-css-prefix}-battery-4:before, |
|||
.#{$fa-css-prefix}-battery:before, |
|||
.#{$fa-css-prefix}-battery-full:before { content: $fa-var-battery-full; } |
|||
.#{$fa-css-prefix}-battery-3:before, |
|||
.#{$fa-css-prefix}-battery-three-quarters:before { content: $fa-var-battery-three-quarters; } |
|||
.#{$fa-css-prefix}-battery-2:before, |
|||
.#{$fa-css-prefix}-battery-half:before { content: $fa-var-battery-half; } |
|||
.#{$fa-css-prefix}-battery-1:before, |
|||
.#{$fa-css-prefix}-battery-quarter:before { content: $fa-var-battery-quarter; } |
|||
.#{$fa-css-prefix}-battery-0:before, |
|||
.#{$fa-css-prefix}-battery-empty:before { content: $fa-var-battery-empty; } |
|||
.#{$fa-css-prefix}-mouse-pointer:before { content: $fa-var-mouse-pointer; } |
|||
.#{$fa-css-prefix}-i-cursor:before { content: $fa-var-i-cursor; } |
|||
.#{$fa-css-prefix}-object-group:before { content: $fa-var-object-group; } |
|||
.#{$fa-css-prefix}-object-ungroup:before { content: $fa-var-object-ungroup; } |
|||
.#{$fa-css-prefix}-sticky-note:before { content: $fa-var-sticky-note; } |
|||
.#{$fa-css-prefix}-sticky-note-o:before { content: $fa-var-sticky-note-o; } |
|||
.#{$fa-css-prefix}-cc-jcb:before { content: $fa-var-cc-jcb; } |
|||
.#{$fa-css-prefix}-cc-diners-club:before { content: $fa-var-cc-diners-club; } |
|||
.#{$fa-css-prefix}-clone:before { content: $fa-var-clone; } |
|||
.#{$fa-css-prefix}-balance-scale:before { content: $fa-var-balance-scale; } |
|||
.#{$fa-css-prefix}-hourglass-o:before { content: $fa-var-hourglass-o; } |
|||
.#{$fa-css-prefix}-hourglass-1:before, |
|||
.#{$fa-css-prefix}-hourglass-start:before { content: $fa-var-hourglass-start; } |
|||
.#{$fa-css-prefix}-hourglass-2:before, |
|||
.#{$fa-css-prefix}-hourglass-half:before { content: $fa-var-hourglass-half; } |
|||
.#{$fa-css-prefix}-hourglass-3:before, |
|||
.#{$fa-css-prefix}-hourglass-end:before { content: $fa-var-hourglass-end; } |
|||
.#{$fa-css-prefix}-hourglass:before { content: $fa-var-hourglass; } |
|||
.#{$fa-css-prefix}-hand-grab-o:before, |
|||
.#{$fa-css-prefix}-hand-rock-o:before { content: $fa-var-hand-rock-o; } |
|||
.#{$fa-css-prefix}-hand-stop-o:before, |
|||
.#{$fa-css-prefix}-hand-paper-o:before { content: $fa-var-hand-paper-o; } |
|||
.#{$fa-css-prefix}-hand-scissors-o:before { content: $fa-var-hand-scissors-o; } |
|||
.#{$fa-css-prefix}-hand-lizard-o:before { content: $fa-var-hand-lizard-o; } |
|||
.#{$fa-css-prefix}-hand-spock-o:before { content: $fa-var-hand-spock-o; } |
|||
.#{$fa-css-prefix}-hand-pointer-o:before { content: $fa-var-hand-pointer-o; } |
|||
.#{$fa-css-prefix}-hand-peace-o:before { content: $fa-var-hand-peace-o; } |
|||
.#{$fa-css-prefix}-trademark:before { content: $fa-var-trademark; } |
|||
.#{$fa-css-prefix}-registered:before { content: $fa-var-registered; } |
|||
.#{$fa-css-prefix}-creative-commons:before { content: $fa-var-creative-commons; } |
|||
.#{$fa-css-prefix}-gg:before { content: $fa-var-gg; } |
|||
.#{$fa-css-prefix}-gg-circle:before { content: $fa-var-gg-circle; } |
|||
.#{$fa-css-prefix}-tripadvisor:before { content: $fa-var-tripadvisor; } |
|||
.#{$fa-css-prefix}-odnoklassniki:before { content: $fa-var-odnoklassniki; } |
|||
.#{$fa-css-prefix}-odnoklassniki-square:before { content: $fa-var-odnoklassniki-square; } |
|||
.#{$fa-css-prefix}-get-pocket:before { content: $fa-var-get-pocket; } |
|||
.#{$fa-css-prefix}-wikipedia-w:before { content: $fa-var-wikipedia-w; } |
|||
.#{$fa-css-prefix}-safari:before { content: $fa-var-safari; } |
|||
.#{$fa-css-prefix}-chrome:before { content: $fa-var-chrome; } |
|||
.#{$fa-css-prefix}-firefox:before { content: $fa-var-firefox; } |
|||
.#{$fa-css-prefix}-opera:before { content: $fa-var-opera; } |
|||
.#{$fa-css-prefix}-internet-explorer:before { content: $fa-var-internet-explorer; } |
|||
.#{$fa-css-prefix}-tv:before, |
|||
.#{$fa-css-prefix}-television:before { content: $fa-var-television; } |
|||
.#{$fa-css-prefix}-contao:before { content: $fa-var-contao; } |
|||
.#{$fa-css-prefix}-500px:before { content: $fa-var-500px; } |
|||
.#{$fa-css-prefix}-amazon:before { content: $fa-var-amazon; } |
|||
.#{$fa-css-prefix}-calendar-plus-o:before { content: $fa-var-calendar-plus-o; } |
|||
.#{$fa-css-prefix}-calendar-minus-o:before { content: $fa-var-calendar-minus-o; } |
|||
.#{$fa-css-prefix}-calendar-times-o:before { content: $fa-var-calendar-times-o; } |
|||
.#{$fa-css-prefix}-calendar-check-o:before { content: $fa-var-calendar-check-o; } |
|||
.#{$fa-css-prefix}-industry:before { content: $fa-var-industry; } |
|||
.#{$fa-css-prefix}-map-pin:before { content: $fa-var-map-pin; } |
|||
.#{$fa-css-prefix}-map-signs:before { content: $fa-var-map-signs; } |
|||
.#{$fa-css-prefix}-map-o:before { content: $fa-var-map-o; } |
|||
.#{$fa-css-prefix}-map:before { content: $fa-var-map; } |
|||
.#{$fa-css-prefix}-commenting:before { content: $fa-var-commenting; } |
|||
.#{$fa-css-prefix}-commenting-o:before { content: $fa-var-commenting-o; } |
|||
.#{$fa-css-prefix}-houzz:before { content: $fa-var-houzz; } |
|||
.#{$fa-css-prefix}-vimeo:before { content: $fa-var-vimeo; } |
|||
.#{$fa-css-prefix}-black-tie:before { content: $fa-var-black-tie; } |
|||
.#{$fa-css-prefix}-fonticons:before { content: $fa-var-fonticons; } |
|||
.#{$fa-css-prefix}-reddit-alien:before { content: $fa-var-reddit-alien; } |
|||
.#{$fa-css-prefix}-edge:before { content: $fa-var-edge; } |
|||
.#{$fa-css-prefix}-credit-card-alt:before { content: $fa-var-credit-card-alt; } |
|||
.#{$fa-css-prefix}-codiepie:before { content: $fa-var-codiepie; } |
|||
.#{$fa-css-prefix}-modx:before { content: $fa-var-modx; } |
|||
.#{$fa-css-prefix}-fort-awesome:before { content: $fa-var-fort-awesome; } |
|||
.#{$fa-css-prefix}-usb:before { content: $fa-var-usb; } |
|||
.#{$fa-css-prefix}-product-hunt:before { content: $fa-var-product-hunt; } |
|||
.#{$fa-css-prefix}-mixcloud:before { content: $fa-var-mixcloud; } |
|||
.#{$fa-css-prefix}-scribd:before { content: $fa-var-scribd; } |
|||
.#{$fa-css-prefix}-pause-circle:before { content: $fa-var-pause-circle; } |
|||
.#{$fa-css-prefix}-pause-circle-o:before { content: $fa-var-pause-circle-o; } |
|||
.#{$fa-css-prefix}-stop-circle:before { content: $fa-var-stop-circle; } |
|||
.#{$fa-css-prefix}-stop-circle-o:before { content: $fa-var-stop-circle-o; } |
|||
.#{$fa-css-prefix}-shopping-bag:before { content: $fa-var-shopping-bag; } |
|||
.#{$fa-css-prefix}-shopping-basket:before { content: $fa-var-shopping-basket; } |
|||
.#{$fa-css-prefix}-hashtag:before { content: $fa-var-hashtag; } |
|||
.#{$fa-css-prefix}-bluetooth:before { content: $fa-var-bluetooth; } |
|||
.#{$fa-css-prefix}-bluetooth-b:before { content: $fa-var-bluetooth-b; } |
|||
.#{$fa-css-prefix}-percent:before { content: $fa-var-percent; } |
|||
.#{$fa-css-prefix}-gitlab:before { content: $fa-var-gitlab; } |
|||
.#{$fa-css-prefix}-wpbeginner:before { content: $fa-var-wpbeginner; } |
|||
.#{$fa-css-prefix}-wpforms:before { content: $fa-var-wpforms; } |
|||
.#{$fa-css-prefix}-envira:before { content: $fa-var-envira; } |
|||
.#{$fa-css-prefix}-universal-access:before { content: $fa-var-universal-access; } |
|||
.#{$fa-css-prefix}-wheelchair-alt:before { content: $fa-var-wheelchair-alt; } |
|||
.#{$fa-css-prefix}-question-circle-o:before { content: $fa-var-question-circle-o; } |
|||
.#{$fa-css-prefix}-blind:before { content: $fa-var-blind; } |
|||
.#{$fa-css-prefix}-audio-description:before { content: $fa-var-audio-description; } |
|||
.#{$fa-css-prefix}-volume-control-phone:before { content: $fa-var-volume-control-phone; } |
|||
.#{$fa-css-prefix}-braille:before { content: $fa-var-braille; } |
|||
.#{$fa-css-prefix}-assistive-listening-systems:before { content: $fa-var-assistive-listening-systems; } |
|||
.#{$fa-css-prefix}-asl-interpreting:before, |
|||
.#{$fa-css-prefix}-american-sign-language-interpreting:before { content: $fa-var-american-sign-language-interpreting; } |
|||
.#{$fa-css-prefix}-deafness:before, |
|||
.#{$fa-css-prefix}-hard-of-hearing:before, |
|||
.#{$fa-css-prefix}-deaf:before { content: $fa-var-deaf; } |
|||
.#{$fa-css-prefix}-glide:before { content: $fa-var-glide; } |
|||
.#{$fa-css-prefix}-glide-g:before { content: $fa-var-glide-g; } |
|||
.#{$fa-css-prefix}-signing:before, |
|||
.#{$fa-css-prefix}-sign-language:before { content: $fa-var-sign-language; } |
|||
.#{$fa-css-prefix}-low-vision:before { content: $fa-var-low-vision; } |
|||
.#{$fa-css-prefix}-viadeo:before { content: $fa-var-viadeo; } |
|||
.#{$fa-css-prefix}-viadeo-square:before { content: $fa-var-viadeo-square; } |
|||
.#{$fa-css-prefix}-snapchat:before { content: $fa-var-snapchat; } |
|||
.#{$fa-css-prefix}-snapchat-ghost:before { content: $fa-var-snapchat-ghost; } |
|||
.#{$fa-css-prefix}-snapchat-square:before { content: $fa-var-snapchat-square; } |
|||
.#{$fa-css-prefix}-pied-piper:before { content: $fa-var-pied-piper; } |
|||
.#{$fa-css-prefix}-first-order:before { content: $fa-var-first-order; } |
|||
.#{$fa-css-prefix}-yoast:before { content: $fa-var-yoast; } |
|||
.#{$fa-css-prefix}-themeisle:before { content: $fa-var-themeisle; } |
|||
.#{$fa-css-prefix}-google-plus-circle:before, |
|||
.#{$fa-css-prefix}-google-plus-official:before { content: $fa-var-google-plus-official; } |
|||
.#{$fa-css-prefix}-fa:before, |
|||
.#{$fa-css-prefix}-font-awesome:before { content: $fa-var-font-awesome; } |
|||
.#{$fa-css-prefix}-handshake-o:before { content: $fa-var-handshake-o; } |
|||
.#{$fa-css-prefix}-envelope-open:before { content: $fa-var-envelope-open; } |
|||
.#{$fa-css-prefix}-envelope-open-o:before { content: $fa-var-envelope-open-o; } |
|||
.#{$fa-css-prefix}-linode:before { content: $fa-var-linode; } |
|||
.#{$fa-css-prefix}-address-book:before { content: $fa-var-address-book; } |
|||
.#{$fa-css-prefix}-address-book-o:before { content: $fa-var-address-book-o; } |
|||
.#{$fa-css-prefix}-vcard:before, |
|||
.#{$fa-css-prefix}-address-card:before { content: $fa-var-address-card; } |
|||
.#{$fa-css-prefix}-vcard-o:before, |
|||
.#{$fa-css-prefix}-address-card-o:before { content: $fa-var-address-card-o; } |
|||
.#{$fa-css-prefix}-user-circle:before { content: $fa-var-user-circle; } |
|||
.#{$fa-css-prefix}-user-circle-o:before { content: $fa-var-user-circle-o; } |
|||
.#{$fa-css-prefix}-user-o:before { content: $fa-var-user-o; } |
|||
.#{$fa-css-prefix}-id-badge:before { content: $fa-var-id-badge; } |
|||
.#{$fa-css-prefix}-drivers-license:before, |
|||
.#{$fa-css-prefix}-id-card:before { content: $fa-var-id-card; } |
|||
.#{$fa-css-prefix}-drivers-license-o:before, |
|||
.#{$fa-css-prefix}-id-card-o:before { content: $fa-var-id-card-o; } |
|||
.#{$fa-css-prefix}-quora:before { content: $fa-var-quora; } |
|||
.#{$fa-css-prefix}-free-code-camp:before { content: $fa-var-free-code-camp; } |
|||
.#{$fa-css-prefix}-telegram:before { content: $fa-var-telegram; } |
|||
.#{$fa-css-prefix}-thermometer-4:before, |
|||
.#{$fa-css-prefix}-thermometer:before, |
|||
.#{$fa-css-prefix}-thermometer-full:before { content: $fa-var-thermometer-full; } |
|||
.#{$fa-css-prefix}-thermometer-3:before, |
|||
.#{$fa-css-prefix}-thermometer-three-quarters:before { content: $fa-var-thermometer-three-quarters; } |
|||
.#{$fa-css-prefix}-thermometer-2:before, |
|||
.#{$fa-css-prefix}-thermometer-half:before { content: $fa-var-thermometer-half; } |
|||
.#{$fa-css-prefix}-thermometer-1:before, |
|||
.#{$fa-css-prefix}-thermometer-quarter:before { content: $fa-var-thermometer-quarter; } |
|||
.#{$fa-css-prefix}-thermometer-0:before, |
|||
.#{$fa-css-prefix}-thermometer-empty:before { content: $fa-var-thermometer-empty; } |
|||
.#{$fa-css-prefix}-shower:before { content: $fa-var-shower; } |
|||
.#{$fa-css-prefix}-bathtub:before, |
|||
.#{$fa-css-prefix}-s15:before, |
|||
.#{$fa-css-prefix}-bath:before { content: $fa-var-bath; } |
|||
.#{$fa-css-prefix}-podcast:before { content: $fa-var-podcast; } |
|||
.#{$fa-css-prefix}-window-maximize:before { content: $fa-var-window-maximize; } |
|||
.#{$fa-css-prefix}-window-minimize:before { content: $fa-var-window-minimize; } |
|||
.#{$fa-css-prefix}-window-restore:before { content: $fa-var-window-restore; } |
|||
.#{$fa-css-prefix}-times-rectangle:before, |
|||
.#{$fa-css-prefix}-window-close:before { content: $fa-var-window-close; } |
|||
.#{$fa-css-prefix}-times-rectangle-o:before, |
|||
.#{$fa-css-prefix}-window-close-o:before { content: $fa-var-window-close-o; } |
|||
.#{$fa-css-prefix}-bandcamp:before { content: $fa-var-bandcamp; } |
|||
.#{$fa-css-prefix}-grav:before { content: $fa-var-grav; } |
|||
.#{$fa-css-prefix}-etsy:before { content: $fa-var-etsy; } |
|||
.#{$fa-css-prefix}-imdb:before { content: $fa-var-imdb; } |
|||
.#{$fa-css-prefix}-ravelry:before { content: $fa-var-ravelry; } |
|||
.#{$fa-css-prefix}-eercast:before { content: $fa-var-eercast; } |
|||
.#{$fa-css-prefix}-microchip:before { content: $fa-var-microchip; } |
|||
.#{$fa-css-prefix}-snowflake-o:before { content: $fa-var-snowflake-o; } |
|||
.#{$fa-css-prefix}-superpowers:before { content: $fa-var-superpowers; } |
|||
.#{$fa-css-prefix}-wpexplorer:before { content: $fa-var-wpexplorer; } |
|||
.#{$fa-css-prefix}-meetup:before { content: $fa-var-meetup; } |
@ -0,0 +1,13 @@ |
|||
// Icon Sizes |
|||
// ------------------------- |
|||
|
|||
/* makes the font 33% larger relative to the icon container */ |
|||
.#{$fa-css-prefix}-lg { |
|||
font-size: (4em / 3); |
|||
line-height: (3em / 4); |
|||
vertical-align: -15%; |
|||
} |
|||
.#{$fa-css-prefix}-2x { font-size: 2em; } |
|||
.#{$fa-css-prefix}-3x { font-size: 3em; } |
|||
.#{$fa-css-prefix}-4x { font-size: 4em; } |
|||
.#{$fa-css-prefix}-5x { font-size: 5em; } |
@ -0,0 +1,19 @@ |
|||
// List Icons |
|||
// ------------------------- |
|||
|
|||
.#{$fa-css-prefix}-ul { |
|||
padding-left: 0; |
|||
margin-left: $fa-li-width; |
|||
list-style-type: none; |
|||
> li { position: relative; } |
|||
} |
|||
.#{$fa-css-prefix}-li { |
|||
position: absolute; |
|||
left: -$fa-li-width; |
|||
width: $fa-li-width; |
|||
top: (2em / 14); |
|||
text-align: center; |
|||
&.#{$fa-css-prefix}-lg { |
|||
left: -$fa-li-width + (4em / 14); |
|||
} |
|||
} |
@ -0,0 +1,60 @@ |
|||
// Mixins |
|||
// -------------------------- |
|||
|
|||
@mixin fa-icon() { |
|||
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; |
|||
|
|||
} |
|||
|
|||
@mixin fa-icon-rotate($degrees, $rotation) { |
|||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; |
|||
-webkit-transform: rotate($degrees); |
|||
-ms-transform: rotate($degrees); |
|||
transform: rotate($degrees); |
|||
} |
|||
|
|||
@mixin fa-icon-flip($horiz, $vert, $rotation) { |
|||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; |
|||
-webkit-transform: scale($horiz, $vert); |
|||
-ms-transform: scale($horiz, $vert); |
|||
transform: scale($horiz, $vert); |
|||
} |
|||
|
|||
|
|||
// Only display content to screen readers. A la Bootstrap 4. |
|||
// |
|||
// See: http://a11yproject.com/posts/how-to-hide-content/ |
|||
|
|||
@mixin sr-only { |
|||
position: absolute; |
|||
width: 1px; |
|||
height: 1px; |
|||
padding: 0; |
|||
margin: -1px; |
|||
overflow: hidden; |
|||
clip: rect(0,0,0,0); |
|||
border: 0; |
|||
} |
|||
|
|||
// Use in conjunction with .sr-only to only display content when it's focused. |
|||
// |
|||
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 |
|||
// |
|||
// Credit: HTML5 Boilerplate |
|||
|
|||
@mixin sr-only-focusable { |
|||
&:active, |
|||
&:focus { |
|||
position: static; |
|||
width: auto; |
|||
height: auto; |
|||
margin: 0; |
|||
overflow: visible; |
|||
clip: auto; |
|||
} |
|||
} |
@ -0,0 +1,15 @@ |
|||
/* FONT PATH |
|||
* -------------------------- */ |
|||
|
|||
@font-face { |
|||
font-family: 'FontAwesome'; |
|||
src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); |
|||
src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), |
|||
url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), |
|||
url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), |
|||
url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), |
|||
url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); |
|||
// src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts |
|||
font-weight: normal; |
|||
font-style: normal; |
|||
} |
@ -0,0 +1,20 @@ |
|||
// Rotated & Flipped Icons |
|||
// ------------------------- |
|||
|
|||
.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } |
|||
.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } |
|||
.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } |
|||
|
|||
.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } |
|||
.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } |
|||
|
|||
// Hook for IE8-9 |
|||
// ------------------------- |
|||
|
|||
:root .#{$fa-css-prefix}-rotate-90, |
|||
:root .#{$fa-css-prefix}-rotate-180, |
|||
:root .#{$fa-css-prefix}-rotate-270, |
|||
:root .#{$fa-css-prefix}-flip-horizontal, |
|||
:root .#{$fa-css-prefix}-flip-vertical { |
|||
filter: none; |
|||
} |
@ -0,0 +1,5 @@ |
|||
// Screen Readers |
|||
// ------------------------- |
|||
|
|||
.sr-only { @include sr-only(); } |
|||
.sr-only-focusable { @include sr-only-focusable(); } |
@ -0,0 +1,20 @@ |
|||
// Stacked Icons |
|||
// ------------------------- |
|||
|
|||
.#{$fa-css-prefix}-stack { |
|||
position: relative; |
|||
display: inline-block; |
|||
width: 2em; |
|||
height: 2em; |
|||
line-height: 2em; |
|||
vertical-align: middle; |
|||
} |
|||
.#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { |
|||
position: absolute; |
|||
left: 0; |
|||
width: 100%; |
|||
text-align: center; |
|||
} |
|||
.#{$fa-css-prefix}-stack-1x { line-height: inherit; } |
|||
.#{$fa-css-prefix}-stack-2x { font-size: 2em; } |
|||
.#{$fa-css-prefix}-inverse { color: $fa-inverse; } |
@ -0,0 +1,800 @@ |
|||
// Variables |
|||
// -------------------------- |
|||
|
|||
$fa-font-path: "../fonts" !default; |
|||
$fa-font-size-base: 14px !default; |
|||
$fa-line-height-base: 1 !default; |
|||
//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts" !default; // for referencing Bootstrap CDN font files directly |
|||
$fa-css-prefix: fa !default; |
|||
$fa-version: "4.7.0" !default; |
|||
$fa-border-color: #eee !default; |
|||
$fa-inverse: #fff !default; |
|||
$fa-li-width: (30em / 14) !default; |
|||
|
|||
$fa-var-500px: "\f26e"; |
|||
$fa-var-address-book: "\f2b9"; |
|||
$fa-var-address-book-o: "\f2ba"; |
|||
$fa-var-address-card: "\f2bb"; |
|||
$fa-var-address-card-o: "\f2bc"; |
|||
$fa-var-adjust: "\f042"; |
|||
$fa-var-adn: "\f170"; |
|||
$fa-var-align-center: "\f037"; |
|||
$fa-var-align-justify: "\f039"; |
|||
$fa-var-align-left: "\f036"; |
|||
$fa-var-align-right: "\f038"; |
|||
$fa-var-amazon: "\f270"; |
|||
$fa-var-ambulance: "\f0f9"; |
|||
$fa-var-american-sign-language-interpreting: "\f2a3"; |
|||
$fa-var-anchor: "\f13d"; |
|||
$fa-var-android: "\f17b"; |
|||
$fa-var-angellist: "\f209"; |
|||
$fa-var-angle-double-down: "\f103"; |
|||
$fa-var-angle-double-left: "\f100"; |
|||
$fa-var-angle-double-right: "\f101"; |
|||
$fa-var-angle-double-up: "\f102"; |
|||
$fa-var-angle-down: "\f107"; |
|||
$fa-var-angle-left: "\f104"; |
|||
$fa-var-angle-right: "\f105"; |
|||
$fa-var-angle-up: "\f106"; |
|||
$fa-var-apple: "\f179"; |
|||
$fa-var-archive: "\f187"; |
|||
$fa-var-area-chart: "\f1fe"; |
|||
$fa-var-arrow-circle-down: "\f0ab"; |
|||
$fa-var-arrow-circle-left: "\f0a8"; |
|||
$fa-var-arrow-circle-o-down: "\f01a"; |
|||
$fa-var-arrow-circle-o-left: "\f190"; |
|||
$fa-var-arrow-circle-o-right: "\f18e"; |
|||
$fa-var-arrow-circle-o-up: "\f01b"; |
|||
$fa-var-arrow-circle-right: "\f0a9"; |
|||
$fa-var-arrow-circle-up: "\f0aa"; |
|||
$fa-var-arrow-down: "\f063"; |
|||
$fa-var-arrow-left: "\f060"; |
|||
$fa-var-arrow-right: "\f061"; |
|||
$fa-var-arrow-up: "\f062"; |
|||
$fa-var-arrows: "\f047"; |
|||
$fa-var-arrows-alt: "\f0b2"; |
|||
$fa-var-arrows-h: "\f07e"; |
|||
$fa-var-arrows-v: "\f07d"; |
|||
$fa-var-asl-interpreting: "\f2a3"; |
|||
$fa-var-assistive-listening-systems: "\f2a2"; |
|||
$fa-var-asterisk: "\f069"; |
|||
$fa-var-at: "\f1fa"; |
|||
$fa-var-audio-description: "\f29e"; |
|||
$fa-var-automobile: "\f1b9"; |
|||
$fa-var-backward: "\f04a"; |
|||
$fa-var-balance-scale: "\f24e"; |
|||
$fa-var-ban: "\f05e"; |
|||
$fa-var-bandcamp: "\f2d5"; |
|||
$fa-var-bank: "\f19c"; |
|||
$fa-var-bar-chart: "\f080"; |
|||
$fa-var-bar-chart-o: "\f080"; |
|||
$fa-var-barcode: "\f02a"; |
|||
$fa-var-bars: "\f0c9"; |
|||
$fa-var-bath: "\f2cd"; |
|||
$fa-var-bathtub: "\f2cd"; |
|||
$fa-var-battery: "\f240"; |
|||
$fa-var-battery-0: "\f244"; |
|||
$fa-var-battery-1: "\f243"; |
|||
$fa-var-battery-2: "\f242"; |
|||
$fa-var-battery-3: "\f241"; |
|||
$fa-var-battery-4: "\f240"; |
|||
$fa-var-battery-empty: "\f244"; |
|||
$fa-var-battery-full: "\f240"; |
|||
$fa-var-battery-half: "\f242"; |
|||
$fa-var-battery-quarter: "\f243"; |
|||
$fa-var-battery-three-quarters: "\f241"; |
|||
$fa-var-bed: "\f236"; |
|||
$fa-var-beer: "\f0fc"; |
|||
$fa-var-behance: "\f1b4"; |
|||
$fa-var-behance-square: "\f1b5"; |
|||
$fa-var-bell: "\f0f3"; |
|||
$fa-var-bell-o: "\f0a2"; |
|||
$fa-var-bell-slash: "\f1f6"; |
|||
$fa-var-bell-slash-o: "\f1f7"; |
|||
$fa-var-bicycle: "\f206"; |
|||
$fa-var-binoculars: "\f1e5"; |
|||
$fa-var-birthday-cake: "\f1fd"; |
|||
$fa-var-bitbucket: "\f171"; |
|||
$fa-var-bitbucket-square: "\f172"; |
|||
$fa-var-bitcoin: "\f15a"; |
|||
$fa-var-black-tie: "\f27e"; |
|||
$fa-var-blind: "\f29d"; |
|||
$fa-var-bluetooth: "\f293"; |
|||
$fa-var-bluetooth-b: "\f294"; |
|||
$fa-var-bold: "\f032"; |
|||
$fa-var-bolt: "\f0e7"; |
|||
$fa-var-bomb: "\f1e2"; |
|||
$fa-var-book: "\f02d"; |
|||
$fa-var-bookmark: "\f02e"; |
|||
$fa-var-bookmark-o: "\f097"; |
|||
$fa-var-braille: "\f2a1"; |
|||
$fa-var-briefcase: "\f0b1"; |
|||
$fa-var-btc: "\f15a"; |
|||
$fa-var-bug: "\f188"; |
|||
$fa-var-building: "\f1ad"; |
|||
$fa-var-building-o: "\f0f7"; |
|||
$fa-var-bullhorn: "\f0a1"; |
|||
$fa-var-bullseye: "\f140"; |
|||
$fa-var-bus: "\f207"; |
|||
$fa-var-buysellads: "\f20d"; |
|||
$fa-var-cab: "\f1ba"; |
|||
$fa-var-calculator: "\f1ec"; |
|||
$fa-var-calendar: "\f073"; |
|||
$fa-var-calendar-check-o: "\f274"; |
|||
$fa-var-calendar-minus-o: "\f272"; |
|||
$fa-var-calendar-o: "\f133"; |
|||
$fa-var-calendar-plus-o: "\f271"; |
|||
$fa-var-calendar-times-o: "\f273"; |
|||
$fa-var-camera: "\f030"; |
|||
$fa-var-camera-retro: "\f083"; |
|||
$fa-var-car: "\f1b9"; |
|||
$fa-var-caret-down: "\f0d7"; |
|||
$fa-var-caret-left: "\f0d9"; |
|||
$fa-var-caret-right: "\f0da"; |
|||
$fa-var-caret-square-o-down: "\f150"; |
|||
$fa-var-caret-square-o-left: "\f191"; |
|||
$fa-var-caret-square-o-right: "\f152"; |
|||
$fa-var-caret-square-o-up: "\f151"; |
|||
$fa-var-caret-up: "\f0d8"; |
|||
$fa-var-cart-arrow-down: "\f218"; |
|||
$fa-var-cart-plus: "\f217"; |
|||
$fa-var-cc: "\f20a"; |
|||
$fa-var-cc-amex: "\f1f3"; |
|||
$fa-var-cc-diners-club: "\f24c"; |
|||
$fa-var-cc-discover: "\f1f2"; |
|||
$fa-var-cc-jcb: "\f24b"; |
|||
$fa-var-cc-mastercard: "\f1f1"; |
|||
$fa-var-cc-paypal: "\f1f4"; |
|||
$fa-var-cc-stripe: "\f1f5"; |
|||
$fa-var-cc-visa: "\f1f0"; |
|||
$fa-var-certificate: "\f0a3"; |
|||
$fa-var-chain: "\f0c1"; |
|||
$fa-var-chain-broken: "\f127"; |
|||
$fa-var-check: "\f00c"; |
|||
$fa-var-check-circle: "\f058"; |
|||
$fa-var-check-circle-o: "\f05d"; |
|||
$fa-var-check-square: "\f14a"; |
|||
$fa-var-check-square-o: "\f046"; |
|||
$fa-var-chevron-circle-down: "\f13a"; |
|||
$fa-var-chevron-circle-left: "\f137"; |
|||
$fa-var-chevron-circle-right: "\f138"; |
|||
$fa-var-chevron-circle-up: "\f139"; |
|||
$fa-var-chevron-down: "\f078"; |
|||
$fa-var-chevron-left: "\f053"; |
|||
$fa-var-chevron-right: "\f054"; |
|||
$fa-var-chevron-up: "\f077"; |
|||
$fa-var-child: "\f1ae"; |
|||
$fa-var-chrome: "\f268"; |
|||
$fa-var-circle: "\f111"; |
|||
$fa-var-circle-o: "\f10c"; |
|||
$fa-var-circle-o-notch: "\f1ce"; |
|||
$fa-var-circle-thin: "\f1db"; |
|||
$fa-var-clipboard: "\f0ea"; |
|||
$fa-var-clock-o: "\f017"; |
|||
$fa-var-clone: "\f24d"; |
|||
$fa-var-close: "\f00d"; |
|||
$fa-var-cloud: "\f0c2"; |
|||
$fa-var-cloud-download: "\f0ed"; |
|||
$fa-var-cloud-upload: "\f0ee"; |
|||
$fa-var-cny: "\f157"; |
|||
$fa-var-code: "\f121"; |
|||
$fa-var-code-fork: "\f126"; |
|||
$fa-var-codepen: "\f1cb"; |
|||
$fa-var-codiepie: "\f284"; |
|||
$fa-var-coffee: "\f0f4"; |
|||
$fa-var-cog: "\f013"; |
|||
$fa-var-cogs: "\f085"; |
|||
$fa-var-columns: "\f0db"; |
|||
$fa-var-comment: "\f075"; |
|||
$fa-var-comment-o: "\f0e5"; |
|||
$fa-var-commenting: "\f27a"; |
|||
$fa-var-commenting-o: "\f27b"; |
|||
$fa-var-comments: "\f086"; |
|||
$fa-var-comments-o: "\f0e6"; |
|||
$fa-var-compass: "\f14e"; |
|||
$fa-var-compress: "\f066"; |
|||
$fa-var-connectdevelop: "\f20e"; |
|||
$fa-var-contao: "\f26d"; |
|||
$fa-var-copy: "\f0c5"; |
|||
$fa-var-copyright: "\f1f9"; |
|||
$fa-var-creative-commons: "\f25e"; |
|||
$fa-var-credit-card: "\f09d"; |
|||
$fa-var-credit-card-alt: "\f283"; |
|||
$fa-var-crop: "\f125"; |
|||
$fa-var-crosshairs: "\f05b"; |
|||
$fa-var-css3: "\f13c"; |
|||
$fa-var-cube: "\f1b2"; |
|||
$fa-var-cubes: "\f1b3"; |
|||
$fa-var-cut: "\f0c4"; |
|||
$fa-var-cutlery: "\f0f5"; |
|||
$fa-var-dashboard: "\f0e4"; |
|||
$fa-var-dashcube: "\f210"; |
|||
$fa-var-database: "\f1c0"; |
|||
$fa-var-deaf: "\f2a4"; |
|||
$fa-var-deafness: "\f2a4"; |
|||
$fa-var-dedent: "\f03b"; |
|||
$fa-var-delicious: "\f1a5"; |
|||
$fa-var-desktop: "\f108"; |
|||
$fa-var-deviantart: "\f1bd"; |
|||
$fa-var-diamond: "\f219"; |
|||
$fa-var-digg: "\f1a6"; |
|||
$fa-var-dollar: "\f155"; |
|||
$fa-var-dot-circle-o: "\f192"; |
|||
$fa-var-download: "\f019"; |
|||
$fa-var-dribbble: "\f17d"; |
|||
$fa-var-drivers-license: "\f2c2"; |
|||
$fa-var-drivers-license-o: "\f2c3"; |
|||
$fa-var-dropbox: "\f16b"; |
|||
$fa-var-drupal: "\f1a9"; |
|||
$fa-var-edge: "\f282"; |
|||
$fa-var-edit: "\f044"; |
|||
$fa-var-eercast: "\f2da"; |
|||
$fa-var-eject: "\f052"; |
|||
$fa-var-ellipsis-h: "\f141"; |
|||
$fa-var-ellipsis-v: "\f142"; |
|||
$fa-var-empire: "\f1d1"; |
|||
$fa-var-envelope: "\f0e0"; |
|||
$fa-var-envelope-o: "\f003"; |
|||
$fa-var-envelope-open: "\f2b6"; |
|||
$fa-var-envelope-open-o: "\f2b7"; |
|||
$fa-var-envelope-square: "\f199"; |
|||
$fa-var-envira: "\f299"; |
|||
$fa-var-eraser: "\f12d"; |
|||
$fa-var-etsy: "\f2d7"; |
|||
$fa-var-eur: "\f153"; |
|||
$fa-var-euro: "\f153"; |
|||
$fa-var-exchange: "\f0ec"; |
|||
$fa-var-exclamation: "\f12a"; |
|||
$fa-var-exclamation-circle: "\f06a"; |
|||
$fa-var-exclamation-triangle: "\f071"; |
|||
$fa-var-expand: "\f065"; |
|||
$fa-var-expeditedssl: "\f23e"; |
|||
$fa-var-external-link: "\f08e"; |
|||
$fa-var-external-link-square: "\f14c"; |
|||
$fa-var-eye: "\f06e"; |
|||
$fa-var-eye-slash: "\f070"; |
|||
$fa-var-eyedropper: "\f1fb"; |
|||
$fa-var-fa: "\f2b4"; |
|||
$fa-var-facebook: "\f09a"; |
|||
$fa-var-facebook-f: "\f09a"; |
|||
$fa-var-facebook-official: "\f230"; |
|||
$fa-var-facebook-square: "\f082"; |
|||
$fa-var-fast-backward: "\f049"; |
|||
$fa-var-fast-forward: "\f050"; |
|||
$fa-var-fax: "\f1ac"; |
|||
$fa-var-feed: "\f09e"; |
|||
$fa-var-female: "\f182"; |
|||
$fa-var-fighter-jet: "\f0fb"; |
|||
$fa-var-file: "\f15b"; |
|||
$fa-var-file-archive-o: "\f1c6"; |
|||
$fa-var-file-audio-o: "\f1c7"; |
|||
$fa-var-file-code-o: "\f1c9"; |
|||
$fa-var-file-excel-o: "\f1c3"; |
|||
$fa-var-file-image-o: "\f1c5"; |
|||
$fa-var-file-movie-o: "\f1c8"; |
|||
$fa-var-file-o: "\f016"; |
|||
$fa-var-file-pdf-o: "\f1c1"; |
|||
$fa-var-file-photo-o: "\f1c5"; |
|||
$fa-var-file-picture-o: "\f1c5"; |
|||
$fa-var-file-powerpoint-o: "\f1c4"; |
|||
$fa-var-file-sound-o: "\f1c7"; |
|||
$fa-var-file-text: "\f15c"; |
|||
$fa-var-file-text-o: "\f0f6"; |
|||
$fa-var-file-video-o: "\f1c8"; |
|||
$fa-var-file-word-o: "\f1c2"; |
|||
$fa-var-file-zip-o: "\f1c6"; |
|||
$fa-var-files-o: "\f0c5"; |
|||
$fa-var-film: "\f008"; |
|||
$fa-var-filter: "\f0b0"; |
|||
$fa-var-fire: "\f06d"; |
|||
$fa-var-fire-extinguisher: "\f134"; |
|||
$fa-var-firefox: "\f269"; |
|||
$fa-var-first-order: "\f2b0"; |
|||
$fa-var-flag: "\f024"; |
|||
$fa-var-flag-checkered: "\f11e"; |
|||
$fa-var-flag-o: "\f11d"; |
|||
$fa-var-flash: "\f0e7"; |
|||
$fa-var-flask: "\f0c3"; |
|||
$fa-var-flickr: "\f16e"; |
|||
$fa-var-floppy-o: "\f0c7"; |
|||
$fa-var-folder: "\f07b"; |
|||
$fa-var-folder-o: "\f114"; |
|||
$fa-var-folder-open: "\f07c"; |
|||
$fa-var-folder-open-o: "\f115"; |
|||
$fa-var-font: "\f031"; |
|||
$fa-var-font-awesome: "\f2b4"; |
|||
$fa-var-fonticons: "\f280"; |
|||
$fa-var-fort-awesome: "\f286"; |
|||
$fa-var-forumbee: "\f211"; |
|||
$fa-var-forward: "\f04e"; |
|||
$fa-var-foursquare: "\f180"; |
|||
$fa-var-free-code-camp: "\f2c5"; |
|||
$fa-var-frown-o: "\f119"; |
|||
$fa-var-futbol-o: "\f1e3"; |
|||
$fa-var-gamepad: "\f11b"; |
|||
$fa-var-gavel: "\f0e3"; |
|||
$fa-var-gbp: "\f154"; |
|||
$fa-var-ge: "\f1d1"; |
|||
$fa-var-gear: "\f013"; |
|||
$fa-var-gears: "\f085"; |
|||
$fa-var-genderless: "\f22d"; |
|||
$fa-var-get-pocket: "\f265"; |
|||
$fa-var-gg: "\f260"; |
|||
$fa-var-gg-circle: "\f261"; |
|||
$fa-var-gift: "\f06b"; |
|||
$fa-var-git: "\f1d3"; |
|||
$fa-var-git-square: "\f1d2"; |
|||
$fa-var-github: "\f09b"; |
|||
$fa-var-github-alt: "\f113"; |
|||
$fa-var-github-square: "\f092"; |
|||
$fa-var-gitlab: "\f296"; |
|||
$fa-var-gittip: "\f184"; |
|||
$fa-var-glass: "\f000"; |
|||
$fa-var-glide: "\f2a5"; |
|||
$fa-var-glide-g: "\f2a6"; |
|||
$fa-var-globe: "\f0ac"; |
|||
$fa-var-google: "\f1a0"; |
|||
$fa-var-google-plus: "\f0d5"; |
|||
$fa-var-google-plus-circle: "\f2b3"; |
|||
$fa-var-google-plus-official: "\f2b3"; |
|||
$fa-var-google-plus-square: "\f0d4"; |
|||
$fa-var-google-wallet: "\f1ee"; |
|||
$fa-var-graduation-cap: "\f19d"; |
|||
$fa-var-gratipay: "\f184"; |
|||
$fa-var-grav: "\f2d6"; |
|||
$fa-var-group: "\f0c0"; |
|||
$fa-var-h-square: "\f0fd"; |
|||
$fa-var-hacker-news: "\f1d4"; |
|||
$fa-var-hand-grab-o: "\f255"; |
|||
$fa-var-hand-lizard-o: "\f258"; |
|||
$fa-var-hand-o-down: "\f0a7"; |
|||
$fa-var-hand-o-left: "\f0a5"; |
|||
$fa-var-hand-o-right: "\f0a4"; |
|||
$fa-var-hand-o-up: "\f0a6"; |
|||
$fa-var-hand-paper-o: "\f256"; |
|||
$fa-var-hand-peace-o: "\f25b"; |
|||
$fa-var-hand-pointer-o: "\f25a"; |
|||
$fa-var-hand-rock-o: "\f255"; |
|||
$fa-var-hand-scissors-o: "\f257"; |
|||
$fa-var-hand-spock-o: "\f259"; |
|||
$fa-var-hand-stop-o: "\f256"; |
|||
$fa-var-handshake-o: "\f2b5"; |
|||
$fa-var-hard-of-hearing: "\f2a4"; |
|||
$fa-var-hashtag: "\f292"; |
|||
$fa-var-hdd-o: "\f0a0"; |
|||
$fa-var-header: "\f1dc"; |
|||
$fa-var-headphones: "\f025"; |
|||
$fa-var-heart: "\f004"; |
|||
$fa-var-heart-o: "\f08a"; |
|||
$fa-var-heartbeat: "\f21e"; |
|||
$fa-var-history: "\f1da"; |
|||
$fa-var-home: "\f015"; |
|||
$fa-var-hospital-o: "\f0f8"; |
|||
$fa-var-hotel: "\f236"; |
|||
$fa-var-hourglass: "\f254"; |
|||
$fa-var-hourglass-1: "\f251"; |
|||
$fa-var-hourglass-2: "\f252"; |
|||
$fa-var-hourglass-3: "\f253"; |
|||
$fa-var-hourglass-end: "\f253"; |
|||
$fa-var-hourglass-half: "\f252"; |
|||
$fa-var-hourglass-o: "\f250"; |
|||
$fa-var-hourglass-start: "\f251"; |
|||
$fa-var-houzz: "\f27c"; |
|||
$fa-var-html5: "\f13b"; |
|||
$fa-var-i-cursor: "\f246"; |
|||
$fa-var-id-badge: "\f2c1"; |
|||
$fa-var-id-card: "\f2c2"; |
|||
$fa-var-id-card-o: "\f2c3"; |
|||
$fa-var-ils: "\f20b"; |
|||
$fa-var-image: "\f03e"; |
|||
$fa-var-imdb: "\f2d8"; |
|||
$fa-var-inbox: "\f01c"; |
|||
$fa-var-indent: "\f03c"; |
|||
$fa-var-industry: "\f275"; |
|||
$fa-var-info: "\f129"; |
|||
$fa-var-info-circle: "\f05a"; |
|||
$fa-var-inr: "\f156"; |
|||
$fa-var-instagram: "\f16d"; |
|||
$fa-var-institution: "\f19c"; |
|||
$fa-var-internet-explorer: "\f26b"; |
|||
$fa-var-intersex: "\f224"; |
|||
$fa-var-ioxhost: "\f208"; |
|||
$fa-var-italic: "\f033"; |
|||
$fa-var-joomla: "\f1aa"; |
|||
$fa-var-jpy: "\f157"; |
|||
$fa-var-jsfiddle: "\f1cc"; |
|||
$fa-var-key: "\f084"; |
|||
$fa-var-keyboard-o: "\f11c"; |
|||
$fa-var-krw: "\f159"; |
|||
$fa-var-language: "\f1ab"; |
|||
$fa-var-laptop: "\f109"; |
|||
$fa-var-lastfm: "\f202"; |
|||
$fa-var-lastfm-square: "\f203"; |
|||
$fa-var-leaf: "\f06c"; |
|||
$fa-var-leanpub: "\f212"; |
|||
$fa-var-legal: "\f0e3"; |
|||
$fa-var-lemon-o: "\f094"; |
|||
$fa-var-level-down: "\f149"; |
|||
$fa-var-level-up: "\f148"; |
|||
$fa-var-life-bouy: "\f1cd"; |
|||
$fa-var-life-buoy: "\f1cd"; |
|||
$fa-var-life-ring: "\f1cd"; |
|||
$fa-var-life-saver: "\f1cd"; |
|||
$fa-var-lightbulb-o: "\f0eb"; |
|||
$fa-var-line-chart: "\f201"; |
|||
$fa-var-link: "\f0c1"; |
|||
$fa-var-linkedin: "\f0e1"; |
|||
$fa-var-linkedin-square: "\f08c"; |
|||
$fa-var-linode: "\f2b8"; |
|||
$fa-var-linux: "\f17c"; |
|||
$fa-var-list: "\f03a"; |
|||
$fa-var-list-alt: "\f022"; |
|||
$fa-var-list-ol: "\f0cb"; |
|||
$fa-var-list-ul: "\f0ca"; |
|||
$fa-var-location-arrow: "\f124"; |
|||
$fa-var-lock: "\f023"; |
|||
$fa-var-long-arrow-down: "\f175"; |
|||
$fa-var-long-arrow-left: "\f177"; |
|||
$fa-var-long-arrow-right: "\f178"; |
|||
$fa-var-long-arrow-up: "\f176"; |
|||
$fa-var-low-vision: "\f2a8"; |
|||
$fa-var-magic: "\f0d0"; |
|||
$fa-var-magnet: "\f076"; |
|||
$fa-var-mail-forward: "\f064"; |
|||
$fa-var-mail-reply: "\f112"; |
|||
$fa-var-mail-reply-all: "\f122"; |
|||
$fa-var-male: "\f183"; |
|||
$fa-var-map: "\f279"; |
|||
$fa-var-map-marker: "\f041"; |
|||
$fa-var-map-o: "\f278"; |
|||
$fa-var-map-pin: "\f276"; |
|||
$fa-var-map-signs: "\f277"; |
|||
$fa-var-mars: "\f222"; |
|||
$fa-var-mars-double: "\f227"; |
|||
$fa-var-mars-stroke: "\f229"; |
|||
$fa-var-mars-stroke-h: "\f22b"; |
|||
$fa-var-mars-stroke-v: "\f22a"; |
|||
$fa-var-maxcdn: "\f136"; |
|||
$fa-var-meanpath: "\f20c"; |
|||
$fa-var-medium: "\f23a"; |
|||
$fa-var-medkit: "\f0fa"; |
|||
$fa-var-meetup: "\f2e0"; |
|||
$fa-var-meh-o: "\f11a"; |
|||
$fa-var-mercury: "\f223"; |
|||
$fa-var-microchip: "\f2db"; |
|||
$fa-var-microphone: "\f130"; |
|||
$fa-var-microphone-slash: "\f131"; |
|||
$fa-var-minus: "\f068"; |
|||
$fa-var-minus-circle: "\f056"; |
|||
$fa-var-minus-square: "\f146"; |
|||
$fa-var-minus-square-o: "\f147"; |
|||
$fa-var-mixcloud: "\f289"; |
|||
$fa-var-mobile: "\f10b"; |
|||
$fa-var-mobile-phone: "\f10b"; |
|||
$fa-var-modx: "\f285"; |
|||
$fa-var-money: "\f0d6"; |
|||
$fa-var-moon-o: "\f186"; |
|||
$fa-var-mortar-board: "\f19d"; |
|||
$fa-var-motorcycle: "\f21c"; |
|||
$fa-var-mouse-pointer: "\f245"; |
|||
$fa-var-music: "\f001"; |
|||
$fa-var-navicon: "\f0c9"; |
|||
$fa-var-neuter: "\f22c"; |
|||
$fa-var-newspaper-o: "\f1ea"; |
|||
$fa-var-object-group: "\f247"; |
|||
$fa-var-object-ungroup: "\f248"; |
|||
$fa-var-odnoklassniki: "\f263"; |
|||
$fa-var-odnoklassniki-square: "\f264"; |
|||
$fa-var-opencart: "\f23d"; |
|||
$fa-var-openid: "\f19b"; |
|||
$fa-var-opera: "\f26a"; |
|||
$fa-var-optin-monster: "\f23c"; |
|||
$fa-var-outdent: "\f03b"; |
|||
$fa-var-pagelines: "\f18c"; |
|||
$fa-var-paint-brush: "\f1fc"; |
|||
$fa-var-paper-plane: "\f1d8"; |
|||
$fa-var-paper-plane-o: "\f1d9"; |
|||
$fa-var-paperclip: "\f0c6"; |
|||
$fa-var-paragraph: "\f1dd"; |
|||
$fa-var-paste: "\f0ea"; |
|||
$fa-var-pause: "\f04c"; |
|||
$fa-var-pause-circle: "\f28b"; |
|||
$fa-var-pause-circle-o: "\f28c"; |
|||
$fa-var-paw: "\f1b0"; |
|||
$fa-var-paypal: "\f1ed"; |
|||
$fa-var-pencil: "\f040"; |
|||
$fa-var-pencil-square: "\f14b"; |
|||
$fa-var-pencil-square-o: "\f044"; |
|||
$fa-var-percent: "\f295"; |
|||
$fa-var-phone: "\f095"; |
|||
$fa-var-phone-square: "\f098"; |
|||
$fa-var-photo: "\f03e"; |
|||
$fa-var-picture-o: "\f03e"; |
|||
$fa-var-pie-chart: "\f200"; |
|||
$fa-var-pied-piper: "\f2ae"; |
|||
$fa-var-pied-piper-alt: "\f1a8"; |
|||
$fa-var-pied-piper-pp: "\f1a7"; |
|||
$fa-var-pinterest: "\f0d2"; |
|||
$fa-var-pinterest-p: "\f231"; |
|||
$fa-var-pinterest-square: "\f0d3"; |
|||
$fa-var-plane: "\f072"; |
|||
$fa-var-play: "\f04b"; |
|||
$fa-var-play-circle: "\f144"; |
|||
$fa-var-play-circle-o: "\f01d"; |
|||
$fa-var-plug: "\f1e6"; |
|||
$fa-var-plus: "\f067"; |
|||
$fa-var-plus-circle: "\f055"; |
|||
$fa-var-plus-square: "\f0fe"; |
|||
$fa-var-plus-square-o: "\f196"; |
|||
$fa-var-podcast: "\f2ce"; |
|||
$fa-var-power-off: "\f011"; |
|||
$fa-var-print: "\f02f"; |
|||
$fa-var-product-hunt: "\f288"; |
|||
$fa-var-puzzle-piece: "\f12e"; |
|||
$fa-var-qq: "\f1d6"; |
|||
$fa-var-qrcode: "\f029"; |
|||
$fa-var-question: "\f128"; |
|||
$fa-var-question-circle: "\f059"; |
|||
$fa-var-question-circle-o: "\f29c"; |
|||
$fa-var-quora: "\f2c4"; |
|||
$fa-var-quote-left: "\f10d"; |
|||
$fa-var-quote-right: "\f10e"; |
|||
$fa-var-ra: "\f1d0"; |
|||
$fa-var-random: "\f074"; |
|||
$fa-var-ravelry: "\f2d9"; |
|||
$fa-var-rebel: "\f1d0"; |
|||
$fa-var-recycle: "\f1b8"; |
|||
$fa-var-reddit: "\f1a1"; |
|||
$fa-var-reddit-alien: "\f281"; |
|||
$fa-var-reddit-square: "\f1a2"; |
|||
$fa-var-refresh: "\f021"; |
|||
$fa-var-registered: "\f25d"; |
|||
$fa-var-remove: "\f00d"; |
|||
$fa-var-renren: "\f18b"; |
|||
$fa-var-reorder: "\f0c9"; |
|||
$fa-var-repeat: "\f01e"; |
|||
$fa-var-reply: "\f112"; |
|||
$fa-var-reply-all: "\f122"; |
|||
$fa-var-resistance: "\f1d0"; |
|||
$fa-var-retweet: "\f079"; |
|||
$fa-var-rmb: "\f157"; |
|||
$fa-var-road: "\f018"; |
|||
$fa-var-rocket: "\f135"; |
|||
$fa-var-rotate-left: "\f0e2"; |
|||
$fa-var-rotate-right: "\f01e"; |
|||
$fa-var-rouble: "\f158"; |
|||
$fa-var-rss: "\f09e"; |
|||
$fa-var-rss-square: "\f143"; |
|||
$fa-var-rub: "\f158"; |
|||
$fa-var-ruble: "\f158"; |
|||
$fa-var-rupee: "\f156"; |
|||
$fa-var-s15: "\f2cd"; |
|||
$fa-var-safari: "\f267"; |
|||
$fa-var-save: "\f0c7"; |
|||
$fa-var-scissors: "\f0c4"; |
|||
$fa-var-scribd: "\f28a"; |
|||
$fa-var-search: "\f002"; |
|||
$fa-var-search-minus: "\f010"; |
|||
$fa-var-search-plus: "\f00e"; |
|||
$fa-var-sellsy: "\f213"; |
|||
$fa-var-send: "\f1d8"; |
|||
$fa-var-send-o: "\f1d9"; |
|||
$fa-var-server: "\f233"; |
|||
$fa-var-share: "\f064"; |
|||
$fa-var-share-alt: "\f1e0"; |
|||
$fa-var-share-alt-square: "\f1e1"; |
|||
$fa-var-share-square: "\f14d"; |
|||
$fa-var-share-square-o: "\f045"; |
|||
$fa-var-shekel: "\f20b"; |
|||
$fa-var-sheqel: "\f20b"; |
|||
$fa-var-shield: "\f132"; |
|||
$fa-var-ship: "\f21a"; |
|||
$fa-var-shirtsinbulk: "\f214"; |
|||
$fa-var-shopping-bag: "\f290"; |
|||
$fa-var-shopping-basket: "\f291"; |
|||
$fa-var-shopping-cart: "\f07a"; |
|||
$fa-var-shower: "\f2cc"; |
|||
$fa-var-sign-in: "\f090"; |
|||
$fa-var-sign-language: "\f2a7"; |
|||
$fa-var-sign-out: "\f08b"; |
|||
$fa-var-signal: "\f012"; |
|||
$fa-var-signing: "\f2a7"; |
|||
$fa-var-simplybuilt: "\f215"; |
|||
$fa-var-sitemap: "\f0e8"; |
|||
$fa-var-skyatlas: "\f216"; |
|||
$fa-var-skype: "\f17e"; |
|||
$fa-var-slack: "\f198"; |
|||
$fa-var-sliders: "\f1de"; |
|||
$fa-var-slideshare: "\f1e7"; |
|||
$fa-var-smile-o: "\f118"; |
|||
$fa-var-snapchat: "\f2ab"; |
|||
$fa-var-snapchat-ghost: "\f2ac"; |
|||
$fa-var-snapchat-square: "\f2ad"; |
|||
$fa-var-snowflake-o: "\f2dc"; |
|||
$fa-var-soccer-ball-o: "\f1e3"; |
|||
$fa-var-sort: "\f0dc"; |
|||
$fa-var-sort-alpha-asc: "\f15d"; |
|||
$fa-var-sort-alpha-desc: "\f15e"; |
|||
$fa-var-sort-amount-asc: "\f160"; |
|||
$fa-var-sort-amount-desc: "\f161"; |
|||
$fa-var-sort-asc: "\f0de"; |
|||
$fa-var-sort-desc: "\f0dd"; |
|||
$fa-var-sort-down: "\f0dd"; |
|||
$fa-var-sort-numeric-asc: "\f162"; |
|||
$fa-var-sort-numeric-desc: "\f163"; |
|||
$fa-var-sort-up: "\f0de"; |
|||
$fa-var-soundcloud: "\f1be"; |
|||
$fa-var-space-shuttle: "\f197"; |
|||
$fa-var-spinner: "\f110"; |
|||
$fa-var-spoon: "\f1b1"; |
|||
$fa-var-spotify: "\f1bc"; |
|||
$fa-var-square: "\f0c8"; |
|||
$fa-var-square-o: "\f096"; |
|||
$fa-var-stack-exchange: "\f18d"; |
|||
$fa-var-stack-overflow: "\f16c"; |
|||
$fa-var-star: "\f005"; |
|||
$fa-var-star-half: "\f089"; |
|||
$fa-var-star-half-empty: "\f123"; |
|||
$fa-var-star-half-full: "\f123"; |
|||
$fa-var-star-half-o: "\f123"; |
|||
$fa-var-star-o: "\f006"; |
|||
$fa-var-steam: "\f1b6"; |
|||
$fa-var-steam-square: "\f1b7"; |
|||
$fa-var-step-backward: "\f048"; |
|||
$fa-var-step-forward: "\f051"; |
|||
$fa-var-stethoscope: "\f0f1"; |
|||
$fa-var-sticky-note: "\f249"; |
|||
$fa-var-sticky-note-o: "\f24a"; |
|||
$fa-var-stop: "\f04d"; |
|||
$fa-var-stop-circle: "\f28d"; |
|||
$fa-var-stop-circle-o: "\f28e"; |
|||
$fa-var-street-view: "\f21d"; |
|||
$fa-var-strikethrough: "\f0cc"; |
|||
$fa-var-stumbleupon: "\f1a4"; |
|||
$fa-var-stumbleupon-circle: "\f1a3"; |
|||
$fa-var-subscript: "\f12c"; |
|||
$fa-var-subway: "\f239"; |
|||
$fa-var-suitcase: "\f0f2"; |
|||
$fa-var-sun-o: "\f185"; |
|||
$fa-var-superpowers: "\f2dd"; |
|||
$fa-var-superscript: "\f12b"; |
|||
$fa-var-support: "\f1cd"; |
|||
$fa-var-table: "\f0ce"; |
|||
$fa-var-tablet: "\f10a"; |
|||
$fa-var-tachometer: "\f0e4"; |
|||
$fa-var-tag: "\f02b"; |
|||
$fa-var-tags: "\f02c"; |
|||
$fa-var-tasks: "\f0ae"; |
|||
$fa-var-taxi: "\f1ba"; |
|||
$fa-var-telegram: "\f2c6"; |
|||
$fa-var-television: "\f26c"; |
|||
$fa-var-tencent-weibo: "\f1d5"; |
|||
$fa-var-terminal: "\f120"; |
|||
$fa-var-text-height: "\f034"; |
|||
$fa-var-text-width: "\f035"; |
|||
$fa-var-th: "\f00a"; |
|||
$fa-var-th-large: "\f009"; |
|||
$fa-var-th-list: "\f00b"; |
|||
$fa-var-themeisle: "\f2b2"; |
|||
$fa-var-thermometer: "\f2c7"; |
|||
$fa-var-thermometer-0: "\f2cb"; |
|||
$fa-var-thermometer-1: "\f2ca"; |
|||
$fa-var-thermometer-2: "\f2c9"; |
|||
$fa-var-thermometer-3: "\f2c8"; |
|||
$fa-var-thermometer-4: "\f2c7"; |
|||
$fa-var-thermometer-empty: "\f2cb"; |
|||
$fa-var-thermometer-full: "\f2c7"; |
|||
$fa-var-thermometer-half: "\f2c9"; |
|||
$fa-var-thermometer-quarter: "\f2ca"; |
|||
$fa-var-thermometer-three-quarters: "\f2c8"; |
|||
$fa-var-thumb-tack: "\f08d"; |
|||
$fa-var-thumbs-down: "\f165"; |
|||
$fa-var-thumbs-o-down: "\f088"; |
|||
$fa-var-thumbs-o-up: "\f087"; |
|||
$fa-var-thumbs-up: "\f164"; |
|||
$fa-var-ticket: "\f145"; |
|||
$fa-var-times: "\f00d"; |
|||
$fa-var-times-circle: "\f057"; |
|||
$fa-var-times-circle-o: "\f05c"; |
|||
$fa-var-times-rectangle: "\f2d3"; |
|||
$fa-var-times-rectangle-o: "\f2d4"; |
|||
$fa-var-tint: "\f043"; |
|||
$fa-var-toggle-down: "\f150"; |
|||
$fa-var-toggle-left: "\f191"; |
|||
$fa-var-toggle-off: "\f204"; |
|||
$fa-var-toggle-on: "\f205"; |
|||
$fa-var-toggle-right: "\f152"; |
|||
$fa-var-toggle-up: "\f151"; |
|||
$fa-var-trademark: "\f25c"; |
|||
$fa-var-train: "\f238"; |
|||
$fa-var-transgender: "\f224"; |
|||
$fa-var-transgender-alt: "\f225"; |
|||
$fa-var-trash: "\f1f8"; |
|||
$fa-var-trash-o: "\f014"; |
|||
$fa-var-tree: "\f1bb"; |
|||
$fa-var-trello: "\f181"; |
|||
$fa-var-tripadvisor: "\f262"; |
|||
$fa-var-trophy: "\f091"; |
|||
$fa-var-truck: "\f0d1"; |
|||
$fa-var-try: "\f195"; |
|||
$fa-var-tty: "\f1e4"; |
|||
$fa-var-tumblr: "\f173"; |
|||
$fa-var-tumblr-square: "\f174"; |
|||
$fa-var-turkish-lira: "\f195"; |
|||
$fa-var-tv: "\f26c"; |
|||
$fa-var-twitch: "\f1e8"; |
|||
$fa-var-twitter: "\f099"; |
|||
$fa-var-twitter-square: "\f081"; |
|||
$fa-var-umbrella: "\f0e9"; |
|||
$fa-var-underline: "\f0cd"; |
|||
$fa-var-undo: "\f0e2"; |
|||
$fa-var-universal-access: "\f29a"; |
|||
$fa-var-university: "\f19c"; |
|||
$fa-var-unlink: "\f127"; |
|||
$fa-var-unlock: "\f09c"; |
|||
$fa-var-unlock-alt: "\f13e"; |
|||
$fa-var-unsorted: "\f0dc"; |
|||
$fa-var-upload: "\f093"; |
|||
$fa-var-usb: "\f287"; |
|||
$fa-var-usd: "\f155"; |
|||
$fa-var-user: "\f007"; |
|||
$fa-var-user-circle: "\f2bd"; |
|||
$fa-var-user-circle-o: "\f2be"; |
|||
$fa-var-user-md: "\f0f0"; |
|||
$fa-var-user-o: "\f2c0"; |
|||
$fa-var-user-plus: "\f234"; |
|||
$fa-var-user-secret: "\f21b"; |
|||
$fa-var-user-times: "\f235"; |
|||
$fa-var-users: "\f0c0"; |
|||
$fa-var-vcard: "\f2bb"; |
|||
$fa-var-vcard-o: "\f2bc"; |
|||
$fa-var-venus: "\f221"; |
|||
$fa-var-venus-double: "\f226"; |
|||
$fa-var-venus-mars: "\f228"; |
|||
$fa-var-viacoin: "\f237"; |
|||
$fa-var-viadeo: "\f2a9"; |
|||
$fa-var-viadeo-square: "\f2aa"; |
|||
$fa-var-video-camera: "\f03d"; |
|||
$fa-var-vimeo: "\f27d"; |
|||
$fa-var-vimeo-square: "\f194"; |
|||
$fa-var-vine: "\f1ca"; |
|||
$fa-var-vk: "\f189"; |
|||
$fa-var-volume-control-phone: "\f2a0"; |
|||
$fa-var-volume-down: "\f027"; |
|||
$fa-var-volume-off: "\f026"; |
|||
$fa-var-volume-up: "\f028"; |
|||
$fa-var-warning: "\f071"; |
|||
$fa-var-wechat: "\f1d7"; |
|||
$fa-var-weibo: "\f18a"; |
|||
$fa-var-weixin: "\f1d7"; |
|||
$fa-var-whatsapp: "\f232"; |
|||
$fa-var-wheelchair: "\f193"; |
|||
$fa-var-wheelchair-alt: "\f29b"; |
|||
$fa-var-wifi: "\f1eb"; |
|||
$fa-var-wikipedia-w: "\f266"; |
|||
$fa-var-window-close: "\f2d3"; |
|||
$fa-var-window-close-o: "\f2d4"; |
|||
$fa-var-window-maximize: "\f2d0"; |
|||
$fa-var-window-minimize: "\f2d1"; |
|||
$fa-var-window-restore: "\f2d2"; |
|||
$fa-var-windows: "\f17a"; |
|||
$fa-var-won: "\f159"; |
|||
$fa-var-wordpress: "\f19a"; |
|||
$fa-var-wpbeginner: "\f297"; |
|||
$fa-var-wpexplorer: "\f2de"; |
|||
$fa-var-wpforms: "\f298"; |
|||
$fa-var-wrench: "\f0ad"; |
|||
$fa-var-xing: "\f168"; |
|||
$fa-var-xing-square: "\f169"; |
|||
$fa-var-y-combinator: "\f23b"; |
|||
$fa-var-y-combinator-square: "\f1d4"; |
|||
$fa-var-yahoo: "\f19e"; |
|||
$fa-var-yc: "\f23b"; |
|||
$fa-var-yc-square: "\f1d4"; |
|||
$fa-var-yelp: "\f1e9"; |
|||
$fa-var-yen: "\f157"; |
|||
$fa-var-yoast: "\f2b1"; |
|||
$fa-var-youtube: "\f167"; |
|||
$fa-var-youtube-play: "\f16a"; |
|||
$fa-var-youtube-square: "\f166"; |
|||
|
@ -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"; |
|||
@import "mixins"; |
|||
@import "path"; |
|||
@import "core"; |
|||
@import "larger"; |
|||
@import "fixed-width"; |
|||
@import "list"; |
|||
@import "bordered-pulled"; |
|||
@import "animated"; |
|||
@import "rotated-flipped"; |
|||
@import "stacked"; |
|||
@import "icons"; |
|||
@import "screen-reader"; |
File diff suppressed because it is too large
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 231 KiB |
After Width: | Height: | Size: 59 KiB |
@ -0,0 +1,344 @@ |
|||
using DyeingComputer.UserClass; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Data; |
|||
using System.Linq; |
|||
using System.Net; |
|||
using System.Net.Http; |
|||
using System.Net.Sockets; |
|||
using System.Reflection.Emit; |
|||
using System.Text; |
|||
using System.Threading; |
|||
using System.Threading.Tasks; |
|||
using System.Diagnostics; |
|||
using TouchSocket.Core; |
|||
using TouchSocket.Sockets; |
|||
using DyeingComputer.ViewModel; |
|||
using System.Runtime.InteropServices; |
|||
using ScottPlot.Colormaps; |
|||
using static System.Windows.Forms.AxHost; |
|||
using static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock; |
|||
using static System.Windows.Forms.VisualStyles.VisualStyleElement; |
|||
using Newtonsoft.Json; |
|||
using static DyeingComputer.UserClass.SqliteHelper; |
|||
using DyeingComputer.View; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{/// <summary>
|
|||
/// 异步TCP服务器
|
|||
/// </summary>
|
|||
public class AsyncTcpServer |
|||
{ |
|||
//设置系统时间的API函数
|
|||
[DllImport("kernel32.dll")] |
|||
private static extern bool SetLocalTime(ref SYSTEMTIME time); |
|||
[StructLayout(LayoutKind.Sequential)] |
|||
private struct SYSTEMTIME |
|||
{ |
|||
public short year; |
|||
public short month; |
|||
public short dayOfWeek; |
|||
public short day; |
|||
public short hour; |
|||
public short minute; |
|||
public short second; |
|||
public short milliseconds; |
|||
} |
|||
/// <summary>
|
|||
/// 设置系统时间
|
|||
/// </summary>
|
|||
/// <param name="dt">需要设置的时间</param>
|
|||
/// <returns>返回系统时间设置状态,true为成功,false为失败</returns>
|
|||
private static bool SetLocalDateTime(DateTime dt) |
|||
{ |
|||
SYSTEMTIME st; |
|||
st.year = (short)dt.Year; |
|||
st.month = (short)dt.Month; |
|||
st.dayOfWeek = (short)dt.DayOfWeek; |
|||
st.day = (short)dt.Day; |
|||
st.hour = (short)dt.Hour; |
|||
st.minute = (short)dt.Minute; |
|||
st.second = (short)dt.Second; |
|||
st.milliseconds = (short)dt.Millisecond; |
|||
bool rt = SetLocalTime(ref st); |
|||
return rt; |
|||
} |
|||
|
|||
public static async Task Main() |
|||
{ |
|||
NetFwManger.AllowPort(7790,"TCP");//开放7790端口
|
|||
TcpService service = new TcpService(); |
|||
service.Connecting = (client, e) => { return EasyTask.CompletedTask; };//有客户端正在连接
|
|||
service.Connected = (client, e) => { return EasyTask.CompletedTask; };//有客户端成功连接
|
|||
service.Closing = (client, e) => { return EasyTask.CompletedTask; };//有客户端正在断开连接,只有当主动断开时才有效。
|
|||
service.Closed = (client, e) => { return EasyTask.CompletedTask; };//有客户端断开连接
|
|||
service.Received = (client, e) => |
|||
{ |
|||
string SYSAPI = e.ByteBlock.Span.ToString(Encoding.ASCII).Substring(0,5); |
|||
string DAT = e.ByteBlock.Span.ToString(Encoding.ASCII).Substring(5); |
|||
string SYSDAT ="";// = e.ByteBlock.Span.ToString(Encoding.ASCII).Substring(5);
|
|||
string SYSKEY =""; |
|||
if(DAT.Length>=16) SYSKEY = DAT.Substring(0,16); |
|||
if (DAT.Length > 16) SYSDAT = DAT.Substring(16); |
|||
//LogGing.LogSQLDATA("800", "TcpServer", "API:"+ SYSAPI);
|
|||
if (SYSAPI == "SC800") |
|||
{ |
|||
Dictionary<string, object> Chart_new = new Dictionary<string, object>();//缓存函数
|
|||
Chart_new.Add("MACHINE", MainWindowViewModel.S01); |
|||
Chart_new.Add("GROUP", MainWindowViewModel.S05); |
|||
Chart_new.Add("SYSKEY", MainWindowViewModel.SYSKEY); |
|||
Chart_new.Add("TIME", MainWindowViewModel.SYSTime); |
|||
client.SendAsync("[" + MainWindowViewModel.S01 + "]" + Chart_new.ToJsonString()); |
|||
} |
|||
else if (SYSAPI == "SC810") |
|||
{ |
|||
if (SYSKEY == MainWindowViewModel.SYSKEY) |
|||
{ |
|||
try |
|||
{ |
|||
Dictionary<string, object> WorkOrder_dat; |
|||
WorkOrder_dat = SerializeConvert.JsonDeserializeFromString<Dictionary<string, object>>(SYSDAT); |
|||
//WorkOrder_dat.GetValue("WorkOrder");
|
|||
bool dat_w= SQLDATA.WorkOrder( |
|||
WorkOrder_dat.GetValue("WorkOrder").ToString(), |
|||
WorkOrder_dat.GetValue("ProcessName").ToString(), |
|||
WorkOrder_dat.GetValue("StartTime").ToString(), |
|||
WorkOrder_dat.GetValue("EndTime").ToString(), |
|||
WorkOrder_dat.GetValue("Time").ToString(), |
|||
WorkOrder_dat.GetValue("Remark").ToString(), |
|||
WorkOrder_dat.GetValue("lock").ToString(), |
|||
WorkOrder_dat.GetValue("State").ToString(), |
|||
WorkOrder_dat.GetValue("ProcessID").ToString()); |
|||
if (!dat_w) { client.SendAsync("SC910"); } |
|||
else { client.SendAsync("SC810"+SYSKEY+SYSDAT); } |
|||
} |
|||
catch |
|||
{ |
|||
client.SendAsync("SC990"); |
|||
} |
|||
} |
|||
else { client.SendAsync("SC999"); } |
|||
}//WorkOrder表信息检查写入
|
|||
else if (SYSAPI == "SC811") |
|||
{ |
|||
if (SYSKEY == MainWindowViewModel.SYSKEY) |
|||
{ |
|||
try |
|||
{ |
|||
DataTable WorkOrder_dat; |
|||
WorkOrder_dat = SerializeConvert.JsonDeserializeFromString<DataTable>(SYSDAT); |
|||
bool dat_w = SQLDATA.WorkOderStep(WorkOrder_dat); |
|||
if (!dat_w) { client.SendAsync("SC911"); } |
|||
else { client.SendAsync("SC811" + SYSKEY + SYSDAT); } |
|||
} |
|||
catch |
|||
{ |
|||
client.SendAsync("SC991"); |
|||
} |
|||
} |
|||
else { client.SendAsync("SC999"); } |
|||
}//WorkOrderstep表信息检查写入
|
|||
else if (SYSAPI == "SC820") |
|||
{ |
|||
if (SYSKEY == MainWindowViewModel.SYSKEY) |
|||
{ |
|||
try |
|||
{ |
|||
if (SYSDAT.Length == 21) |
|||
{ |
|||
SYSDAT = SYSDAT.Substring(1, 19); |
|||
DateTime dt; |
|||
if (DateTime.TryParse(SYSDAT, out dt)) |
|||
SetLocalDateTime(dt); |
|||
} |
|||
client.SendAsync("[" + DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss") + "]"); |
|||
} |
|||
catch { client.SendAsync("SC920"); } |
|||
} |
|||
else { client.SendAsync("SC999"); } |
|||
}//设置系统时间
|
|||
else if (SYSAPI == "SC821") |
|||
{ |
|||
if (SYSKEY == MainWindowViewModel.SYSKEY) |
|||
{ |
|||
try |
|||
{ |
|||
Dictionary<string, object> dat_821; |
|||
dat_821 = SerializeConvert.JsonDeserializeFromString<Dictionary<string, object>>(SYSDAT); |
|||
if (dat_821.GetValue("INSTRUCTION").ToString() == "START") |
|||
{ |
|||
SQLDATA.TechnologicalProcess_START(dat_821.GetValue("ProgramID").ToString()); |
|||
} |
|||
else if (dat_821.GetValue("INSTRUCTION").ToString() == "STOP") |
|||
{ |
|||
MainWindowViewModel.WORK_RUN = 0;//停止
|
|||
MainWindowViewModel.DIDETime = 0; |
|||
} |
|||
else if (dat_821.GetValue("INSTRUCTION").ToString() == "PAUSE") |
|||
{ |
|||
MainWindowViewModel.WORK_RUN = 1;//暂停
|
|||
} |
|||
else if (dat_821.GetValue("INSTRUCTION").ToString() == "CONTINUE") |
|||
{ |
|||
MainWindowViewModel.WORK_RUN = 2;//暂停
|
|||
} |
|||
else if (dat_821.GetValue("INSTRUCTION").ToString() == "JUMP") |
|||
{ |
|||
MainWindowViewModel.RUN_DATATABLE = TechnologicalProcessView.sql.Tables[0];//缓存表
|
|||
MainWindowViewModel.RUN_STEPID = Convert.ToInt16(dat_821.GetValue("ID").ToString());//插入步骤号
|
|||
MainWindowViewModel.STEP_START(dat_821.GetValue("Numder").ToString(), Convert.ToDouble(dat_821.GetValue("P1")), |
|||
Convert.ToDouble(dat_821.GetValue("P2")), Convert.ToDouble(dat_821.GetValue("P3")), |
|||
Convert.ToDouble(dat_821.GetValue("P4")), Convert.ToDouble(dat_821.GetValue("P5"))); |
|||
} |
|||
client.SendAsync("SC821" + SYSKEY + SYSDAT); |
|||
} |
|||
catch { client.SendAsync("SC921"); } |
|||
} |
|||
else { client.SendAsync("SC999"); } |
|||
}//启停跳步指令
|
|||
else if (SYSAPI == "SC830") |
|||
{ |
|||
if (SYSKEY == MainWindowViewModel.SYSKEY) |
|||
{ |
|||
Dictionary<string, object> Chart_new = new Dictionary<string, object>();//缓存函数
|
|||
Chart_new.Add("DYELOT", MainWindowViewModel.WorkNumder); |
|||
Chart_new.Add("Time", MainWindowViewModel.SYSTime); |
|||
Chart_new.Add("MST", MainWindowViewModel.TEMP_co); |
|||
Chart_new.Add("MTT", MainWindowViewModel.Selet_dtm("1010")); |
|||
Chart_new.Add("MTL", MainWindowViewModel.Selet_dtm("1015")); |
|||
Chart_new.Add("MTH", MainWindowViewModel.Selet_dtm("1009")); |
|||
Chart_new.Add("MUT", MainWindowViewModel.Selet_dtm("1011")); |
|||
Chart_new.Add("STTA", MainWindowViewModel.Selet_dtm("1012")); |
|||
Chart_new.Add("STLA", MainWindowViewModel.Selet_dtm("1017")); |
|||
Chart_new.Add("STTB", MainWindowViewModel.Selet_dtm("1013")); |
|||
Chart_new.Add("STLB", MainWindowViewModel.Selet_dtm("1018")); |
|||
Chart_new.Add("STTC", MainWindowViewModel.Selet_dtm("1014")); |
|||
Chart_new.Add("STLC", MainWindowViewModel.Selet_dtm("1019")); |
|||
client.SendAsync("[" + MainWindowViewModel.S01 + "]" + Chart_new.ToJsonString()); |
|||
} |
|||
else { client.SendAsync("SC999"); } |
|||
}//当前信息
|
|||
else if (SYSAPI == "SC831") |
|||
{ |
|||
if (SYSKEY == MainWindowViewModel.SYSKEY) |
|||
{ |
|||
|
|||
client.SendAsync("[" + MainWindowViewModel.S01 + "]" +TechnologicalProcessView.sql.Tables[0].ToJsonString()); |
|||
} |
|||
else { client.SendAsync("SC999"); } |
|||
}//当前工作表
|
|||
else if (SYSAPI == "SC832") |
|||
{ |
|||
if (SYSKEY == MainWindowViewModel.SYSKEY) |
|||
{ |
|||
|
|||
client.SendAsync("[" + MainWindowViewModel.S01 + "]" + MainWindowViewModel.SYSlog); |
|||
} |
|||
else { client.SendAsync("SC999"); } |
|||
}//当前细节信息
|
|||
else if (SYSAPI == "SC851") |
|||
{ |
|||
if (SYSKEY == MainWindowViewModel.SYSKEY) |
|||
{ |
|||
client.SendAsync("[" + MainWindowViewModel.S01 + "]" + MainWindowViewModel.dt_d.ToJsonString());//数字开关信息
|
|||
} |
|||
else { client.SendAsync("SC999"); } |
|||
}//数字开关表
|
|||
else if (SYSAPI == "SC852") |
|||
{ |
|||
if (SYSKEY == MainWindowViewModel.SYSKEY) |
|||
{ |
|||
client.SendAsync("[" + MainWindowViewModel.S01 + "]" + MainWindowViewModel.dt_a.ToJsonString());//寄存器信息
|
|||
} |
|||
else { client.SendAsync("SC999"); } |
|||
}//寄存器表
|
|||
else if (SYSAPI == "SC853") |
|||
{ |
|||
if (SYSKEY == MainWindowViewModel.SYSKEY) |
|||
{ |
|||
client.SendAsync("[" + MainWindowViewModel.S01 + "]" + MainWindowViewModel.dt_m.ToJsonString());//缓存信息
|
|||
} |
|||
else { client.SendAsync("SC999"); } |
|||
}//缓存表
|
|||
|
|||
return EasyTask.CompletedTask; |
|||
}; |
|||
|
|||
await service.SetupAsync(new TouchSocketConfig()//载入配置
|
|||
.SetListenIPHosts(new IPHost[] { new IPHost("tcp://127.0.0.1:7789"), new IPHost(7790) })//同时监听两个地址
|
|||
.ConfigureContainer(a =>//容器的配置顺序应该在最前面
|
|||
{ |
|||
//a.AddConsoleLogger();//添加一个控制台日志注入(注意:在maui中控制台日志不可用)
|
|||
}) |
|||
.ConfigurePlugins(a => |
|||
{ |
|||
//a.Add<DifferentProtocolPlugin>();
|
|||
}) |
|||
); |
|||
await service.StartAsync();//启动
|
|||
|
|||
LogGing.LogGingDATA("800SREVER:START"); |
|||
} |
|||
} |
|||
|
|||
class MyTcpService : TcpService<MyTcpSessionClient> |
|||
{ |
|||
protected override MyTcpSessionClient NewClient() |
|||
{ |
|||
return new MyTcpSessionClient(); |
|||
} |
|||
} |
|||
|
|||
class MyTcpSessionClient : TcpSessionClient |
|||
{ |
|||
internal void SetDataHandlingAdapter(SingleStreamDataHandlingAdapter adapter) |
|||
{ |
|||
base.SetAdapter(adapter); |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 此插件实现,按照不同端口,使用不同适配器。
|
|||
/// <list type="bullet">
|
|||
/// <item>7789端口:使用"**"结尾的数据</item>
|
|||
/// <item>7790端口:使用"##"结尾的数据</item>
|
|||
/// </list>
|
|||
/// </summary>
|
|||
internal class DifferentProtocolPlugin : PluginBase, ITcpConnectingPlugin, ITcpReceivedPlugin |
|||
{ |
|||
public async Task OnTcpConnecting(ITcpSession client, ConnectingEventArgs e) |
|||
{ |
|||
if (client is MyTcpSessionClient sessionClient) |
|||
{ |
|||
if (sessionClient.ServicePort == 7789) |
|||
{ |
|||
sessionClient.SetDataHandlingAdapter(new TerminatorPackageAdapter("**")); |
|||
} |
|||
else |
|||
{ |
|||
sessionClient.SetDataHandlingAdapter(new TerminatorPackageAdapter("##")); |
|||
} |
|||
} |
|||
|
|||
await e.InvokeNext(); |
|||
} |
|||
|
|||
public async Task OnTcpReceived(ITcpSession client, ReceivedDataEventArgs e) |
|||
{ |
|||
//如果是自定义适配器,此处解析时,可以判断e.RequestInfo的类型
|
|||
|
|||
if (client is ITcpSessionClient sessionClient) |
|||
{ |
|||
sessionClient.Logger.Info($"{sessionClient.GetIPPort()}收到数据,服务器端口:{sessionClient.ServicePort},数据:{e.ByteBlock}"); |
|||
} |
|||
|
|||
await e.InvokeNext(); |
|||
} |
|||
} |
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
@ -0,0 +1,190 @@ |
|||
using System; |
|||
using System.Text; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
/// <summary>
|
|||
/// CRC校验
|
|||
/// </summary>
|
|||
public class CRCcheck16 |
|||
{ |
|||
|
|||
#region CRC16
|
|||
public static byte[] CRC16(byte[] data) |
|||
{ |
|||
int len = data.Length; |
|||
if (len > 0) |
|||
{ |
|||
ushort crc = 0xFFFF; |
|||
|
|||
for (int i = 0; i < len; i++) |
|||
{ |
|||
crc = (ushort)(crc ^ (data[i])); |
|||
for (int j = 0; j < 8; j++) |
|||
{ |
|||
crc = (crc & 1) != 0 ? (ushort)((crc >> 1) ^ 0xA001) : (ushort)(crc >> 1); |
|||
} |
|||
} |
|||
byte hi = (byte)((crc & 0xFF00) >> 8); //高位置
|
|||
byte lo = (byte)(crc & 0x00FF); //低位置
|
|||
|
|||
return new byte[] { hi, lo }; |
|||
} |
|||
return new byte[] { 0, 0 }; |
|||
} |
|||
#endregion
|
|||
|
|||
#region ToCRC16
|
|||
public static string ToCRC16(string content) |
|||
{ |
|||
return ToCRC16(content, Encoding.UTF8); |
|||
} |
|||
|
|||
public static string ToCRC16(string content, bool isReverse) |
|||
{ |
|||
return ToCRC16(content, Encoding.UTF8, isReverse); |
|||
} |
|||
|
|||
public static string ToCRC16(string content, Encoding encoding) |
|||
{ |
|||
return ByteToString(CRC16(encoding.GetBytes(content)), true); |
|||
} |
|||
|
|||
public static string ToCRC16(string content, Encoding encoding, bool isReverse) |
|||
{ |
|||
return ByteToString(CRC16(encoding.GetBytes(content)), isReverse); |
|||
} |
|||
|
|||
public static string ToCRC16(byte[] data) |
|||
{ |
|||
return ByteToString(CRC16(data), true); |
|||
} |
|||
|
|||
public static string ToCRC16(byte[] data, bool isReverse) |
|||
{ |
|||
return ByteToString(CRC16(data), isReverse); |
|||
} |
|||
#endregion
|
|||
|
|||
#region ToModbusCRC16
|
|||
public static string ToModbusCRC16(string s) |
|||
{ |
|||
return ToModbusCRC16(s, true); |
|||
} |
|||
|
|||
public static string ToModbusCRC16(string s, bool isReverse) |
|||
{ |
|||
return ByteToString(CRC16(StringToHexByte(s)), isReverse); |
|||
} |
|||
|
|||
public static string ToModbusCRC16(byte[] data) |
|||
{ |
|||
return ToModbusCRC16(data, true); |
|||
} |
|||
|
|||
public static string ToModbusCRC16(byte[] data, bool isReverse) |
|||
{ |
|||
return ByteToString(CRC16(data), isReverse); |
|||
} |
|||
#endregion
|
|||
|
|||
#region ByteToString
|
|||
public static string ByteToString(byte[] arr, bool isReverse) |
|||
{ |
|||
try |
|||
{ |
|||
byte hi = arr[0], lo = arr[1]; |
|||
return Convert.ToString(isReverse ? hi + lo * 0x100 : hi * 0x100 + lo, 16).ToUpper().PadLeft(4, '0'); |
|||
} |
|||
catch (Exception ex) { throw (ex); } |
|||
} |
|||
|
|||
public static string ByteToString(byte[] arr) |
|||
{ |
|||
try |
|||
{ |
|||
return ByteToString(arr, true); |
|||
} |
|||
catch (Exception ex) { throw (ex); } |
|||
} |
|||
#endregion
|
|||
|
|||
#region StringToHexString
|
|||
public static string StringToHexString(string str) |
|||
{ |
|||
StringBuilder s = new StringBuilder(); |
|||
foreach (short c in str.ToCharArray()) |
|||
{ |
|||
s.Append(c.ToString("X4")); |
|||
} |
|||
return s.ToString(); |
|||
} |
|||
#endregion
|
|||
|
|||
#region StringToHexByte
|
|||
private static string ConvertChinese(string str) |
|||
{ |
|||
StringBuilder s = new StringBuilder(); |
|||
foreach (short c in str.ToCharArray()) |
|||
{ |
|||
if (c <= 0 || c >= 127) |
|||
{ |
|||
s.Append(c.ToString("X4")); |
|||
} |
|||
else |
|||
{ |
|||
s.Append((char)c); |
|||
} |
|||
} |
|||
return s.ToString(); |
|||
} |
|||
|
|||
private static string FilterChinese(string str) |
|||
{ |
|||
StringBuilder s = new StringBuilder(); |
|||
foreach (short c in str.ToCharArray()) |
|||
{ |
|||
if (c > 0 && c < 127) |
|||
{ |
|||
s.Append((char)c); |
|||
} |
|||
} |
|||
return s.ToString(); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 字符串转16进制字符数组
|
|||
/// </summary>
|
|||
/// <param name="hex"></param>
|
|||
/// <returns></returns>
|
|||
public static byte[] StringToHexByte(string str) |
|||
{ |
|||
return StringToHexByte(str, false); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 字符串转16进制字符数组
|
|||
/// </summary>
|
|||
/// <param name="str"></param>
|
|||
/// <param name="isFilterChinese">是否过滤掉中文字符</param>
|
|||
/// <returns></returns>
|
|||
public static byte[] StringToHexByte(string str, bool isFilterChinese) |
|||
{ |
|||
string hex = isFilterChinese ? FilterChinese(str) : ConvertChinese(str); |
|||
|
|||
//清除所有空格
|
|||
hex = hex.Replace(" ", ""); |
|||
//若字符个数为奇数,补一个0
|
|||
hex += hex.Length % 2 != 0 ? "0" : ""; |
|||
|
|||
byte[] result = new byte[hex.Length / 2]; |
|||
for (int i = 0, c = result.Length; i < c; i++) |
|||
{ |
|||
result[i] = Convert.ToByte(hex.Substring(i * 2, 2), 16); |
|||
} |
|||
return result; |
|||
} |
|||
#endregion
|
|||
|
|||
} |
|||
} |
@ -0,0 +1,216 @@ |
|||
using Microsoft.Win32; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Data; |
|||
using System.IO; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using System.Windows.Markup; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
internal class CSV |
|||
{ |
|||
/// <summary>
|
|||
/// 将DataTable中数据写入到CSV文件中
|
|||
/// </summary>
|
|||
/// <param name="dt">提供保存数据的DataTable</param>
|
|||
/// <param name="strFormat">CSV的文件路径</param>
|
|||
public static void SaveCSV(DataTable dt,string strFormat) |
|||
{ |
|||
FileInfo fi = new FileInfo(strFormat); |
|||
if (!fi.Directory.Exists) |
|||
{ |
|||
fi.Directory.Create(); |
|||
} |
|||
FileStream fs = new FileStream(strFormat, System.IO.FileMode.Create, System.IO.FileAccess.Write); |
|||
//StreamWriter sw = new StreamWriter(fs, System.Text.Encoding.Default);
|
|||
StreamWriter sw = new StreamWriter(fs, System.Text.Encoding.UTF8); |
|||
string data = ""; |
|||
//写出列名称
|
|||
for (int i = 0; i < dt.Columns.Count; i++) |
|||
{ |
|||
data += dt.Columns[i].ColumnName.ToString(); |
|||
if (i < dt.Columns.Count - 1) |
|||
{ |
|||
data += ","; |
|||
} |
|||
} |
|||
sw.WriteLine(data); |
|||
//写出各行数据
|
|||
for (int i = 0; i < dt.Rows.Count; i++) |
|||
{ |
|||
data = ""; |
|||
for (int j = 0; j < dt.Columns.Count; j++) |
|||
{ |
|||
string str = dt.Rows[i][j].ToString(); |
|||
str = str.Replace("\"", "\"\"");//替换英文冒号 英文冒号需要换成两个冒号
|
|||
if (str.Contains(',') || str.Contains('"') |
|||
|| str.Contains('\r') || str.Contains('\n')) //含逗号 冒号 换行符的需要放到引号中
|
|||
{ |
|||
str = string.Format("\"{0}\"", str); |
|||
} |
|||
|
|||
data += str; |
|||
if (j < dt.Columns.Count - 1) |
|||
{ |
|||
data += ","; |
|||
} |
|||
} |
|||
sw.WriteLine(data); |
|||
} |
|||
sw.Close(); fs.Close(); |
|||
} |
|||
|
|||
#region CSV文件读取
|
|||
/// <summary>
|
|||
/// 将CSV文件的数据读取到DataTable中
|
|||
/// </summary>
|
|||
/// <param name="fileName">CSV文件路径</param>
|
|||
/// <returns>返回读取了CSV数据的DataTable</returns>
|
|||
public static DataTable OpenCSV(string filePath)//从csv读取数据返回table
|
|||
{ |
|||
System.Text.Encoding encoding = GetType(filePath); //Encoding.ASCII;//
|
|||
DataTable dt = new DataTable(); |
|||
System.IO.FileStream fs = new System.IO.FileStream(filePath, System.IO.FileMode.Open, System.IO.FileAccess.Read); |
|||
System.IO.StreamReader sr = new System.IO.StreamReader(fs, encoding); |
|||
|
|||
//记录每次读取的一行记录
|
|||
string strLine = ""; |
|||
//记录每行记录中的各字段内容
|
|||
string[] aryLine = null; |
|||
string[] tableHead = null; |
|||
//标示列数
|
|||
int columnCount = 0; |
|||
//标示是否是读取的第一行
|
|||
bool IsFirst = true; |
|||
//逐行读取CSV中的数据
|
|||
int readCol = 0; |
|||
while ((strLine = sr.ReadLine()) != null) |
|||
{ |
|||
if (readCol > 0) |
|||
{ |
|||
if (IsFirst == true) |
|||
{ |
|||
tableHead = strLine.Split(','); |
|||
IsFirst = false; |
|||
columnCount = tableHead.Length; |
|||
//创建列
|
|||
for (int i = 0; i < columnCount; i++) |
|||
{ |
|||
DataColumn dc = new DataColumn(tableHead[i]); |
|||
dt.Columns.Add(dc); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
aryLine = strLine.Split(','); |
|||
DataRow dr = dt.NewRow(); |
|||
for (int j = 0; j < columnCount; j++) |
|||
{ |
|||
dr[j] = aryLine[j]; |
|||
} |
|||
dt.Rows.Add(dr); |
|||
} |
|||
} |
|||
readCol++; |
|||
} |
|||
if (aryLine != null && aryLine.Length > 0) |
|||
{ |
|||
dt.DefaultView.Sort = tableHead[0] + " " + "asc"; |
|||
} |
|||
|
|||
sr.Close(); |
|||
fs.Close(); |
|||
return dt; |
|||
} |
|||
/// 给定文件的路径,读取文件的二进制数据,判断文件的编码类型
|
|||
/// <param name="FILE_NAME">文件路径</param>
|
|||
/// <returns>文件的编码类型</returns>
|
|||
|
|||
public static System.Text.Encoding GetType(string FILE_NAME) |
|||
{ |
|||
System.IO.FileStream fs = new System.IO.FileStream(FILE_NAME, System.IO.FileMode.Open, |
|||
System.IO.FileAccess.Read); |
|||
System.Text.Encoding r = GetType(fs); |
|||
fs.Close(); |
|||
return r; |
|||
} |
|||
|
|||
/// 通过给定的文件流,判断文件的编码类型
|
|||
/// <param name="fs">文件流</param>
|
|||
/// <returns>文件的编码类型</returns>
|
|||
public static System.Text.Encoding GetType(System.IO.FileStream fs) |
|||
{ |
|||
byte[] Unicode = new byte[] { 0xFF, 0xFE, 0x41 }; |
|||
byte[] UnicodeBIG = new byte[] { 0xFE, 0xFF, 0x00 }; |
|||
byte[] UTF8 = new byte[] { 0xEF, 0xBB, 0xBF }; //带BOM
|
|||
System.Text.Encoding reVal = System.Text.Encoding.Default; |
|||
|
|||
System.IO.BinaryReader r = new System.IO.BinaryReader(fs, System.Text.Encoding.Default); |
|||
int i; |
|||
int.TryParse(fs.Length.ToString(), out i); |
|||
byte[] ss = r.ReadBytes(i); |
|||
if (IsUTF8Bytes(ss) || (ss[0] == 0xEF && ss[1] == 0xBB && ss[2] == 0xBF)) |
|||
{ |
|||
reVal = System.Text.Encoding.UTF8; |
|||
} |
|||
else if (ss[0] == 0xFE && ss[1] == 0xFF && ss[2] == 0x00) |
|||
{ |
|||
reVal = System.Text.Encoding.BigEndianUnicode; |
|||
} |
|||
else if (ss[0] == 0xFF && ss[1] == 0xFE && ss[2] == 0x41) |
|||
{ |
|||
reVal = System.Text.Encoding.Unicode; |
|||
} |
|||
r.Close(); |
|||
return reVal; |
|||
} |
|||
|
|||
/// 判断是否是不带 BOM 的 UTF8 格式
|
|||
/// <param name="data"></param>
|
|||
/// <returns></returns>
|
|||
private static bool IsUTF8Bytes(byte[] data) |
|||
{ |
|||
int charByteCounter = 1; //计算当前正分析的字符应还有的字节数
|
|||
byte curByte; //当前分析的字节.
|
|||
for (int i = 0; i < data.Length; i++) |
|||
{ |
|||
curByte = data[i]; |
|||
if (charByteCounter == 1) |
|||
{ |
|||
if (curByte >= 0x80) |
|||
{ |
|||
//判断当前
|
|||
while (((curByte <<= 1) & 0x80) != 0) |
|||
{ |
|||
charByteCounter++; |
|||
} |
|||
//标记位首位若为非0 则至少以2个1开始 如:110XXXXX...........1111110X
|
|||
if (charByteCounter == 1 || charByteCounter > 6) |
|||
{ |
|||
return false; |
|||
} |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
//若是UTF-8 此时第一位必须为1
|
|||
if ((curByte & 0xC0) != 0x80) |
|||
{ |
|||
return false; |
|||
} |
|||
charByteCounter--; |
|||
} |
|||
} |
|||
if (charByteCounter > 1) |
|||
{ |
|||
throw new Exception("非预期的byte格式"); |
|||
} |
|||
return true; |
|||
} |
|||
#endregion
|
|||
|
|||
} |
|||
} |
@ -0,0 +1,138 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
/// <summary>
|
|||
/// 使用using代替lock操作的对象,可指定写入和读取锁定模式
|
|||
/// </summary>
|
|||
public sealed class ClsLock |
|||
{ |
|||
#region 内部类
|
|||
|
|||
/// <summary>
|
|||
/// 利用IDisposable的using语法糖方便的释放锁定操作内部类
|
|||
/// </summary>
|
|||
private struct Lock : IDisposable |
|||
{ |
|||
/// <summary>
|
|||
/// 读写锁对象
|
|||
/// </summary>
|
|||
private readonly ReaderWriterLockSlim _Lock; |
|||
/// <summary>
|
|||
/// 是否为写入模式
|
|||
/// </summary>
|
|||
private bool _IsWrite; |
|||
/// <summary>
|
|||
/// 利用IDisposable的using语法糖方便的释放锁定操作构造函数
|
|||
/// </summary>
|
|||
/// <param name="rwl">读写锁</param>
|
|||
/// <param name="isWrite">写入模式为true,读取模式为false</param>
|
|||
public Lock(ReaderWriterLockSlim rwl, bool isWrite) |
|||
{ |
|||
_Lock = rwl; |
|||
_IsWrite = isWrite; |
|||
} |
|||
/// <summary>
|
|||
/// 释放对象时退出指定锁定模式
|
|||
/// </summary>
|
|||
public void Dispose() |
|||
{ |
|||
if (_IsWrite) |
|||
{ |
|||
if (_Lock.IsWriteLockHeld) |
|||
{ |
|||
_Lock.ExitWriteLock(); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
if (_Lock.IsReadLockHeld) |
|||
{ |
|||
_Lock.ExitReadLock(); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 空的可释放对象,免去了调用时需要判断是否为null的问题内部类
|
|||
/// </summary>
|
|||
private class Disposable : IDisposable |
|||
{ |
|||
/// <summary>
|
|||
/// 空的可释放对象
|
|||
/// </summary>
|
|||
public static readonly Disposable Empty = new Disposable(); |
|||
/// <summary>
|
|||
/// 空的释放方法
|
|||
/// </summary>
|
|||
public void Dispose() { } |
|||
} |
|||
|
|||
#endregion
|
|||
|
|||
/// <summary>
|
|||
/// 读写锁
|
|||
/// </summary>
|
|||
private readonly ReaderWriterLockSlim _LockSlim = new ReaderWriterLockSlim(); |
|||
/// <summary>
|
|||
/// 使用using代替lock操作的对象,可指定写入和读取锁定模式构造函数
|
|||
/// </summary>
|
|||
public ClsLock() |
|||
{ |
|||
Enabled = true; |
|||
} |
|||
/// <summary>
|
|||
/// 是否启用,当该值为false时,Read()和Write()方法将返回 Disposable.Empty
|
|||
/// </summary>
|
|||
public bool Enabled { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 进入读取锁定模式,该模式下允许多个读操作同时进行,
|
|||
/// 退出读锁请将返回对象释放,建议使用using语块,
|
|||
/// Enabled为false时,返回Disposable.Empty,
|
|||
/// 在读取或写入锁定模式下重复执行,返回Disposable.Empty;
|
|||
/// </summary>
|
|||
public IDisposable Read() |
|||
{ |
|||
if (Enabled == false || _LockSlim.IsReadLockHeld || _LockSlim.IsWriteLockHeld) |
|||
{ |
|||
return Disposable.Empty; |
|||
} |
|||
else |
|||
{ |
|||
_LockSlim.EnterReadLock(); |
|||
return new Lock(_LockSlim, false); |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 进入写入锁定模式,该模式下只允许同时执行一个读操作,
|
|||
/// 退出读锁请将返回对象释放,建议使用using语块,
|
|||
/// Enabled为false时,返回Disposable.Empty,
|
|||
/// 在写入锁定模式下重复执行,返回Disposable.Empty
|
|||
/// </summary>
|
|||
/// <exception cref="NotImplementedException">读取模式下不能进入写入锁定状态</exception>
|
|||
public IDisposable Write() |
|||
{ |
|||
if (Enabled == false || _LockSlim.IsWriteLockHeld) |
|||
{ |
|||
return Disposable.Empty; |
|||
} |
|||
else if (_LockSlim.IsReadLockHeld) |
|||
{ |
|||
throw new NotImplementedException("读取模式下不能进入写入锁定状态"); |
|||
} |
|||
else |
|||
{ |
|||
_LockSlim.EnterWriteLock(); |
|||
return new Lock(_LockSlim, true); |
|||
} |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,52 @@ |
|||
using System; |
|||
using System.Windows; |
|||
using System.Windows.Controls; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
/// <summary>
|
|||
/// 实时更新datagrid
|
|||
/// 调用示例:DataGridHelper.SetRealTimeCommit(Grid, true); Grid为对象控件名
|
|||
/// </summary>
|
|||
public static class DataGridHelper |
|||
{ |
|||
public static void SetRealTimeCommit(DataGrid dataGrid, bool isRealTime) |
|||
{ |
|||
dataGrid.SetValue(RealTimeCommitProperty, isRealTime); |
|||
} |
|||
|
|||
public static bool GetRealTimeCommit(DataGrid dataGrid) |
|||
{ |
|||
return (bool)dataGrid.GetValue(RealTimeCommitProperty); |
|||
} |
|||
|
|||
public static readonly DependencyProperty RealTimeCommitProperty = |
|||
DependencyProperty.RegisterAttached("RealTimeCommit", typeof(bool), |
|||
typeof(DataGridHelper), |
|||
new PropertyMetadata(false, RealTimeCommitCallBack)); |
|||
|
|||
private static void RealTimeCommitCallBack(DependencyObject d, DependencyPropertyChangedEventArgs e) |
|||
{ |
|||
var dg = d as DataGrid; |
|||
if (dg == null) |
|||
return; |
|||
EventHandler<DataGridCellEditEndingEventArgs> ceHandler = delegate (object xx, DataGridCellEditEndingEventArgs yy) |
|||
{ |
|||
var flag = GetRealTimeCommit(dg); |
|||
if (!flag) |
|||
return; |
|||
var cellContent = yy.Column.GetCellContent(yy.Row); |
|||
if (cellContent != null && cellContent.BindingGroup != null) |
|||
cellContent.BindingGroup.CommitEdit(); |
|||
}; |
|||
dg.CellEditEnding += ceHandler; |
|||
RoutedEventHandler eh = null; |
|||
eh = (xx, yy) => |
|||
{ |
|||
dg.Unloaded -= eh; |
|||
dg.CellEditEnding -= ceHandler; |
|||
}; |
|||
dg.Unloaded += eh; |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,59 @@ |
|||
using System; |
|||
using System.Collections.ObjectModel; |
|||
using System.Data; |
|||
using System.Reflection; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
internal class DataTableToObservableCollection //数据表到可观察集合
|
|||
{ |
|||
public ObservableCollection<T> ToObservableCollection<T>(DataTable dt) where T : class, new() |
|||
{ |
|||
Type t = typeof(T); |
|||
PropertyInfo[] propertys = t.GetProperties(); |
|||
ObservableCollection<T> lst = new ObservableCollection<T>(); |
|||
string typeName = string.Empty; |
|||
foreach (DataRow dr in dt.Rows) |
|||
{ |
|||
T entity = new T(); |
|||
foreach (PropertyInfo pi in propertys) |
|||
{ |
|||
typeName = pi.Name; |
|||
if (dt.Columns.Contains(typeName)) |
|||
{ |
|||
if (!pi.CanWrite) continue; |
|||
object value = dr[typeName]; |
|||
if (value == DBNull.Value) continue; |
|||
if (pi.PropertyType == typeof(string)) |
|||
{ |
|||
pi.SetValue(entity, value.ToString(), null); |
|||
} |
|||
else if (pi.PropertyType == typeof(int) || pi.PropertyType == typeof(int?)) |
|||
{ |
|||
pi.SetValue(entity, int.Parse(value.ToString()), null); |
|||
} |
|||
else if (pi.PropertyType == typeof(DateTime?) || pi.PropertyType == typeof(DateTime)) |
|||
{ |
|||
pi.SetValue(entity, DateTime.Parse(value.ToString()), null); |
|||
} |
|||
else if (pi.PropertyType == typeof(float)) |
|||
{ |
|||
pi.SetValue(entity, float.Parse(value.ToString()), null); |
|||
} |
|||
else if (pi.PropertyType == typeof(double)) |
|||
{ |
|||
pi.SetValue(entity, double.Parse(value.ToString()), null); |
|||
} |
|||
else |
|||
{ |
|||
pi.SetValue(entity, value, null); |
|||
} |
|||
} |
|||
} |
|||
lst.Add(entity); |
|||
} |
|||
return lst; |
|||
} |
|||
|
|||
} |
|||
} |
@ -0,0 +1,95 @@ |
|||
using System.Management; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
/// <summary>
|
|||
/// 获取硬件SN
|
|||
/// </summary>
|
|||
internal class HardwareSN |
|||
{ |
|||
/// <summary>
|
|||
/// 获取cpuid
|
|||
/// </summary>
|
|||
public static string GetCPUSerialNumber() |
|||
{ |
|||
try |
|||
{ |
|||
ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_Processor"); |
|||
string cpuSerialNumber = ""; |
|||
foreach (ManagementObject mo in searcher.Get()) |
|||
{ |
|||
cpuSerialNumber = mo["ProcessorId"].ToString().Trim(); |
|||
break; |
|||
} |
|||
return cpuSerialNumber; |
|||
} |
|||
catch |
|||
{ |
|||
return ""; |
|||
} |
|||
} |
|||
/// <summary>
|
|||
/// 获取主板id
|
|||
/// </summary>
|
|||
public static string GetBIOSSerialNumber() |
|||
{ |
|||
try |
|||
{ |
|||
ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_BIOS"); |
|||
string biosSerialNumber = ""; |
|||
foreach (ManagementObject mo in searcher.Get()) |
|||
{ |
|||
biosSerialNumber = mo.GetPropertyValue("SerialNumber").ToString().Trim(); |
|||
break; |
|||
} |
|||
return biosSerialNumber; |
|||
} |
|||
catch |
|||
{ |
|||
return ""; |
|||
} |
|||
} |
|||
/// <summary>
|
|||
/// 获取硬盘id
|
|||
/// </summary>
|
|||
public static string GetHardDiskSerialNumber() |
|||
{ |
|||
try |
|||
{ |
|||
ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_PhysicalMedia"); |
|||
string hardDiskSerialNumber = ""; |
|||
foreach (ManagementObject mo in searcher.Get()) |
|||
{ |
|||
hardDiskSerialNumber = mo["SerialNumber"].ToString().Trim(); |
|||
break; |
|||
} |
|||
return hardDiskSerialNumber; |
|||
} |
|||
catch |
|||
{ |
|||
return ""; |
|||
} |
|||
} |
|||
/// <summary>
|
|||
/// 获取网卡id
|
|||
/// </summary>
|
|||
public static string GetNetCardMACAddress() |
|||
{ |
|||
try |
|||
{ |
|||
ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_NetworkAdapter WHERE ((MACAddress Is Not NULL) AND (Manufacturer <> 'Microsoft'))"); |
|||
string netCardMACAddress = ""; |
|||
foreach (ManagementObject mo in searcher.Get()) |
|||
{ |
|||
netCardMACAddress = mo["MACAddress"].ToString().Trim(); |
|||
break; |
|||
} |
|||
return netCardMACAddress; |
|||
} |
|||
catch |
|||
{ |
|||
return ""; |
|||
} |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,52 @@ |
|||
using System.Runtime.InteropServices; |
|||
using System.Text; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
internal class IniFile |
|||
{ |
|||
public class IniFiles |
|||
{ |
|||
public string path; |
|||
[DllImport("kernel32")] //返回0表示失败,非0为成功
|
|||
private static extern long WritePrivateProfileString(string section, string key, string val, string filePath); |
|||
[DllImport("kernel32")] //返回取得字符串缓冲区的长度
|
|||
private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath); |
|||
/// <summary>
|
|||
/// 保存ini文件的路径
|
|||
/// 调用示例:var ini = IniFiles("C:\file.ini");
|
|||
/// </summary>
|
|||
/// <param name="INIPath"></param>
|
|||
public IniFiles(string iniPath) |
|||
{ |
|||
this.path = iniPath; |
|||
} |
|||
/// <summary>
|
|||
/// 写Ini文件
|
|||
/// 调用示例:ini.IniWritevalue("Server","name","localhost");
|
|||
/// </summary>
|
|||
/// <param name="Section">[缓冲区]</param>
|
|||
/// <param name="Key">键</param>
|
|||
/// <param name="value">值</param>
|
|||
public void IniWritevalue(string Section, string Key, string value) |
|||
{ |
|||
WritePrivateProfileString(Section, Key, value, this.path); |
|||
} |
|||
/// <summary>
|
|||
/// 读Ini文件
|
|||
/// 调用示例:ini.IniWritevalue("Server","name");
|
|||
/// </summary>
|
|||
/// <param name="Section">[缓冲区]</param>
|
|||
/// <param name="Key">键</param>
|
|||
/// <returns>值</returns>
|
|||
public string IniReadvalue(string Section, string Key) |
|||
{ |
|||
StringBuilder temp = new StringBuilder(255); |
|||
|
|||
int i = GetPrivateProfileString(Section, Key, "", temp, 255, this.path); |
|||
return temp.ToString(); |
|||
} |
|||
|
|||
} |
|||
} |
|||
} |
@ -0,0 +1,97 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Runtime.Remoting.Metadata.W3cXsd2001; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using Newtonsoft.Json; |
|||
using static System.Windows.Forms.VisualStyles.VisualStyleElement; |
|||
|
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
public class Json |
|||
{ |
|||
|
|||
} |
|||
|
|||
public class ProgramSteps_ |
|||
{ |
|||
public string Program { get; set; } |
|||
public int Step { get; set; } |
|||
public string StepID { get; set; } |
|||
public string StepName { get; set; } |
|||
public string ParameterName { get; set; } |
|||
public double Parameter1 { get; set; } |
|||
public double Parameter2 { get; set; } |
|||
public double Parameter3 { get; set; } |
|||
public double Parameter4 { get; set; } |
|||
public double Parameter5 { get; set; } |
|||
public double Parameter6 { get; set; } |
|||
public double Parameter7 { get; set; } |
|||
public double Parameter8 { get; set; } |
|||
public double Parameter9 { get; set; } |
|||
public double Parameter10 { get; set; } |
|||
public string Remark { get; set; } |
|||
} |
|||
public class WorkorderSteps_ |
|||
{ |
|||
public string Program { get; set; } |
|||
public int Step { get; set; } |
|||
public string StepID { get; set; } |
|||
public string StepName { get; set; } |
|||
public string ParameterName { get; set; } |
|||
public double Parameter1 { get; set; } |
|||
public double Parameter2 { get; set; } |
|||
public double Parameter3 { get; set; } |
|||
public double Parameter4 { get; set; } |
|||
public double Parameter5 { get; set; } |
|||
public string Remark { get; set; } |
|||
} |
|||
public class WorkOrder_ |
|||
{ |
|||
public string WorkOrder { get; set; } |
|||
public string ProcessName { get; set; } |
|||
public DateTime StartTime { get; set; } |
|||
public DateTime EndTime { get; set; } |
|||
public DateTime Time { get; set; } |
|||
public string Remark { get; set; } |
|||
public string ProcessID { get; set; } |
|||
public int State { get; set; } |
|||
public int lock_ { get; set; } |
|||
} |
|||
public class RUN_ |
|||
{ |
|||
public string Program { get; set; } |
|||
public int Step { get; set; } |
|||
public string StepID { get; set; } |
|||
public string StepName { get; set; } |
|||
public string ParameterName { get; set; } |
|||
public double Parameter1 { get; set; } |
|||
public double Parameter2 { get; set; } |
|||
public double Parameter3 { get; set; } |
|||
public double Parameter4 { get; set; } |
|||
public double Parameter5 { get; set; } |
|||
public double Parameter6 { get; set; } |
|||
public double Parameter7 { get; set; } |
|||
public double Parameter8 { get; set; } |
|||
public double Parameter9 { get; set; } |
|||
public double Parameter10 { get; set; } |
|||
public string Remark { get; set; } |
|||
public int Run { get; set; } |
|||
public string Ryelot { get; set; } |
|||
} |
|||
public class DyelotHistory_ |
|||
{ |
|||
public DateTime TIME { get; set;} |
|||
public string WorkOrder { get; set; } |
|||
public string Dyelot { get; set; } |
|||
public int Tank { get; set; } |
|||
public int Step { get; set; } |
|||
public int State { get; set; } |
|||
public int Redye { get; set; } |
|||
public int Type { get; set; } |
|||
public string Machine { get; set; } |
|||
} |
|||
|
|||
} |
@ -0,0 +1,76 @@ |
|||
using System.Text; |
|||
using System.Windows.Controls; |
|||
using System.Windows.Documents; |
|||
using System.Windows.Media; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
public static class LogDataRead |
|||
{ |
|||
private const int MaxCount = 1000; |
|||
private static int Count = 0; |
|||
private static RichTextBox textControl; |
|||
private static InlineCollection inlines; |
|||
|
|||
//设置主控件
|
|||
public static void SetTextControl(RichTextBox _textBox) |
|||
{ |
|||
textControl = _textBox; |
|||
Paragraph graph = new Paragraph(); |
|||
inlines = graph.Inlines; |
|||
textControl.Document.Blocks.Add(graph); |
|||
} |
|||
|
|||
//输出黑色消息
|
|||
public static void Info(string format, params object[] args) |
|||
{ |
|||
AppendText(Brushes.Black, format, args); |
|||
} |
|||
|
|||
//输出绿色消息
|
|||
public static void Suc(string format, params object[] args) |
|||
{ |
|||
AppendText(Brushes.DarkGreen, format, args); |
|||
} |
|||
|
|||
//输出黄色消息
|
|||
public static void Warning(string format, params object[] args) |
|||
{ |
|||
AppendText(Brushes.DarkOrange, format, args); |
|||
} |
|||
|
|||
//输出红色消息
|
|||
public static void Error(string format, params object[] args) |
|||
{ |
|||
AppendText(Brushes.Red, format, args); |
|||
} |
|||
|
|||
//清除日志
|
|||
public static void Clear() |
|||
{ |
|||
Count = 0; |
|||
inlines.Clear(); |
|||
textControl.ScrollToEnd(); |
|||
} |
|||
|
|||
private static void AppendText(Brush color, string format, params object[] args) |
|||
{ |
|||
textControl.BeginChange(); |
|||
StringBuilder builder = new StringBuilder(); |
|||
builder.Append("["); |
|||
builder.Append(Count++); |
|||
builder.Append("] : "); |
|||
builder.Append(string.Format(format, (object[])args)); |
|||
builder.Append("\n"); |
|||
string str = builder.ToString(); |
|||
inlines.Add(new Run(str) { Foreground = color }); |
|||
if (inlines.Count > MaxCount) |
|||
{ |
|||
inlines.Remove(inlines.FirstInline); |
|||
} |
|||
textControl.ScrollToEnd(); |
|||
textControl.EndChange(); |
|||
} |
|||
|
|||
} |
|||
} |
@ -0,0 +1,70 @@ |
|||
using DyeingComputer.ViewModel; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Data; |
|||
using System.IO; |
|||
using static DyeingComputer.UserClass.SqliteHelper; |
|||
using static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
public class LogGing |
|||
{ |
|||
private static SQLiteHelper SQLiteHelpers = null; //定义数据库
|
|||
private readonly static string DBAddress = Environment.CurrentDirectory + "\\DataBase\\800COMPUTER.db"; //数据库路径
|
|||
public static bool sqld=false; |
|||
public static void LogGingDATA(string dat) |
|||
{ |
|||
string logpath = System.Environment.CurrentDirectory + "\\Log";//日志文件目录
|
|||
string logPath = "" + System.Environment.CurrentDirectory + "\\Log\\" + DateTime.Now.ToString("yyyy-MM-dd") + ".txt";//日志文件
|
|||
string Log_time = "[" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "]:"; |
|||
|
|||
if (Directory.Exists(logpath))//检查日志路径
|
|||
{ |
|||
if (!File.Exists(logPath))//检查日志文件并写入启动日志
|
|||
{ |
|||
FileStream fs = new FileStream(logPath, FileMode.CreateNew, FileAccess.Write);//创建写入文件
|
|||
StreamWriter wr = new StreamWriter(fs);//创建文件
|
|||
wr.WriteLine(Log_time + dat); |
|||
wr.Close(); |
|||
|
|||
} |
|||
else |
|||
{ |
|||
try |
|||
{ |
|||
FileStream fs = new FileStream(logPath, FileMode.Append, FileAccess.Write); |
|||
StreamWriter wr = new StreamWriter(fs);//创建文件
|
|||
wr.WriteLine(Log_time + dat); |
|||
wr.Close(); |
|||
} |
|||
catch { } |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
DirectoryInfo directoryInfo = new DirectoryInfo(logpath); |
|||
directoryInfo.Create();//创建日志路径
|
|||
} |
|||
} |
|||
public static void LogSQLDATA(string NAME, string api, string dat) |
|||
{ |
|||
if (!sqld) |
|||
{ |
|||
sqld = true; |
|||
SQLiteHelpers = new SQLiteHelper(DBAddress); //数据库连接路径
|
|||
string Log_time = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); |
|||
Dictionary<string, object> logsql = new Dictionary<string, object>(); |
|||
// 添加元素
|
|||
logsql.Add("NAME", NAME); |
|||
logsql.Add("API", api); |
|||
logsql.Add("MESSAGE", dat); |
|||
logsql.Add("TIME", Log_time); |
|||
SQLiteHelpers.Open(); //打开数据库
|
|||
SQLiteHelpers.InsertData("SERVER", logsql);//行插入
|
|||
SQLiteHelpers.Close(); //关闭连接
|
|||
sqld = false; |
|||
} |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,59 @@ |
|||
using System; |
|||
using System.Security.Cryptography; |
|||
using System.Text; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
/// <summary>
|
|||
/// MD5加密
|
|||
/// </summary>
|
|||
internal class MD5check |
|||
{ |
|||
/// <summary>
|
|||
/// 16位MD5加密
|
|||
/// </summary>
|
|||
/// <param name="password"></param>
|
|||
/// <returns></returns>
|
|||
public static string MD5Encrypt16(string password) |
|||
{ |
|||
var md5 = new MD5CryptoServiceProvider(); |
|||
string t2 = BitConverter.ToString(md5.ComputeHash(Encoding.Default.GetBytes(password)), 4, 8); |
|||
t2 = t2.Replace("-", ""); |
|||
return t2; |
|||
} |
|||
/// <summary>
|
|||
/// 32位MD5加密
|
|||
/// </summary>
|
|||
/// <param name="password"></param>
|
|||
/// <returns></returns>
|
|||
public static string MD5Encrypt32(string password) |
|||
{ |
|||
string cl = password; |
|||
string pwd = ""; |
|||
MD5 md5 = MD5.Create(); //实例化一个md5对像
|
|||
// 加密后是一个字节类型的数组,这里要注意编码UTF8/Unicode等的选择
|
|||
byte[] s = md5.ComputeHash(Encoding.UTF8.GetBytes(cl)); |
|||
// 通过使用循环,将字节类型的数组转换为字符串,此字符串是常规字符格式化所得
|
|||
for (int i = 0; i < s.Length; i++) |
|||
{ |
|||
// 将得到的字符串使用十六进制类型格式。格式后的字符是小写的字母,如果使用大写(X)则格式后的字符是大写字符
|
|||
pwd = pwd + s[i].ToString("X"); |
|||
} |
|||
return pwd; |
|||
} |
|||
/// <summary>
|
|||
/// 64位MD5加密
|
|||
/// </summary>
|
|||
/// <param name="password"></param>
|
|||
/// <returns></returns>
|
|||
public static string MD5Encrypt64(string password) |
|||
{ |
|||
string cl = password; |
|||
//string pwd = "";
|
|||
MD5 md5 = MD5.Create(); //实例化一个md5对像
|
|||
// 加密后是一个字节类型的数组,这里要注意编码UTF8/Unicode等的选择
|
|||
byte[] s = md5.ComputeHash(Encoding.UTF8.GetBytes(cl)); |
|||
return Convert.ToBase64String(s); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,71 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using NetFwTypeLib; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
public class NetFwManger |
|||
{ |
|||
private static string GetName(int port, string protocol) |
|||
{ |
|||
return "800-port-" + protocol + "-" + port; |
|||
} |
|||
|
|||
public static void AllowPort(int port, string protocol) |
|||
{ |
|||
|
|||
DelPort(port, protocol); |
|||
//创建一个INetFwRule对象
|
|||
Type type = Type.GetTypeFromProgID("HNetCfg.FwRule"); |
|||
INetFwRule rule = (INetFwRule)Activator.CreateInstance(type); |
|||
|
|||
//设置规则的属性
|
|||
rule.Action = NET_FW_ACTION_.NET_FW_ACTION_ALLOW; //允许连接
|
|||
rule.Direction = NET_FW_RULE_DIRECTION_.NET_FW_RULE_DIR_IN; //入站规则
|
|||
rule.Enabled = true; //启用规则
|
|||
rule.InterfaceTypes = "All"; //适用于所有网络接口
|
|||
rule.Name = GetName(port, protocol); //规则名称
|
|||
if (protocol.ToLower() == "tcp") |
|||
{ |
|||
rule.Protocol = (int)NET_FW_IP_PROTOCOL_.NET_FW_IP_PROTOCOL_TCP; //TCP协议
|
|||
} |
|||
else |
|||
{ |
|||
rule.Protocol = (int)NET_FW_IP_PROTOCOL_.NET_FW_IP_PROTOCOL_UDP; //UDP协议
|
|||
} |
|||
|
|||
rule.LocalPorts = "" + port; //本地端口号
|
|||
|
|||
//获取FirewallPolicy对象
|
|||
Type policyType = Type.GetTypeFromProgID("HNetCfg.FwPolicy2"); |
|||
INetFwPolicy2 policy = (INetFwPolicy2)Activator.CreateInstance(policyType); |
|||
|
|||
//将规则添加到防火墙策略中
|
|||
policy.Rules.Add(rule); |
|||
} |
|||
|
|||
public static void DelPort(int port, string protocol) |
|||
{ |
|||
//获取FirewallPolicy对象
|
|||
Type policyType = Type.GetTypeFromProgID("HNetCfg.FwPolicy2"); |
|||
INetFwPolicy2 policy = (INetFwPolicy2)Activator.CreateInstance(policyType); |
|||
|
|||
//获取现有的规则集合
|
|||
INetFwRules rules = policy.Rules; |
|||
|
|||
//查找名称的规则并删除它
|
|||
foreach (INetFwRule rule in rules) |
|||
{ |
|||
if (rule.Name == GetName(port, protocol)) |
|||
{ |
|||
rules.Remove(rule.Name); |
|||
Console.WriteLine(@"Firewall rule deleted successfully."); |
|||
break; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,53 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using System.Windows.Controls; |
|||
using System.Windows.Input; |
|||
using System.Windows; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
/// <summary>
|
|||
/// DataGrid中只能输入数字的列
|
|||
/// </summary>
|
|||
/// local:DataGridNumericColumn Binding = "{Binding NumericProperty}"
|
|||
///
|
|||
public class NumericTextColumn : DataGridTextColumn |
|||
{ |
|||
protected override object PrepareCellForEdit(FrameworkElement editingElement, RoutedEventArgs editingEventArgs) |
|||
{ |
|||
var edit = editingElement as TextBox; |
|||
edit.PreviewTextInput += Edit_PreviewTextInput; |
|||
DataObject.AddPastingHandler(edit, OnPaste); |
|||
//限制输入法切换,可避免中文输入添加到列中
|
|||
InputMethod.SetIsInputMethodEnabled(edit, false); |
|||
return base.PrepareCellForEdit(editingElement, editingEventArgs); |
|||
} |
|||
|
|||
private void OnPaste(object sender, DataObjectPastingEventArgs e) |
|||
{ |
|||
var data = e.SourceDataObject.GetData(DataFormats.Text); |
|||
if (!IsDataValid(data)) e.CancelCommand(); |
|||
} |
|||
|
|||
private void Edit_PreviewTextInput(object sender, TextCompositionEventArgs e) |
|||
{ |
|||
e.Handled = !IsDataValid(e.Text); |
|||
} |
|||
|
|||
bool IsDataValid(object data) |
|||
{ |
|||
try |
|||
{ |
|||
Convert.ToInt32(data); |
|||
return true; |
|||
} |
|||
catch |
|||
{ |
|||
return false; |
|||
} |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,150 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
public class PID |
|||
{ |
|||
private double Ts; // Sample period in seconds
|
|||
private double K; // Rollup parameter
|
|||
private double b0, b1, b2; // Rollup parameters
|
|||
private double a0, a1, a2; // Rollup parameters
|
|||
private double y0 = 0; // Current output
|
|||
private double y1 = 0; // Output one iteration old
|
|||
private double y2 = 0; // Output two iterations old
|
|||
private double e0 = 0; // Current error
|
|||
private double e1 = 0; // Error one iteration old
|
|||
private double e2 = 0; // Error two iterations old
|
|||
|
|||
#region 构造函数
|
|||
/// <summary>
|
|||
/// PID构造器
|
|||
/// </summary>
|
|||
/// <param name="Kp">比例增益</param>
|
|||
/// <param name="Ki">积分增益</param>
|
|||
/// <param name="Kd">微分增益</param>
|
|||
/// <param name="N">微分滤波系数</param>
|
|||
/// <param name="OutputUpperLimit">控制器输出上限</param>
|
|||
/// <param name="OutputLowerLimit">控制器输出下限</param>
|
|||
public PID(double Kp, double Ki, double Kd, double N, double OutputUpperLimit, double OutputLowerLimit) |
|||
{ |
|||
this.Kp = Kp; |
|||
this.Ki = Ki; |
|||
this.Kd = Kd; |
|||
this.N = N; |
|||
this.OutputUpperLimit = OutputUpperLimit; |
|||
this.OutputLowerLimit = OutputLowerLimit; |
|||
} |
|||
|
|||
public PID() |
|||
{ |
|||
this.Kp = 0.5; |
|||
this.Ki = 0.1; |
|||
this.Kd = 0.2; |
|||
this.N = 1; |
|||
this.OutputUpperLimit = 65530; |
|||
this.OutputLowerLimit = 0; |
|||
} |
|||
#endregion
|
|||
/// <summary>
|
|||
/// PID迭代器,在每个采样周期调用此函数以获取当前控制器输出。
|
|||
/// 设定点和过程值应使用相同的单位。
|
|||
/// </summary>
|
|||
/// <param name="setPoint">设定目标值</param>
|
|||
/// <param name="processValue">当前实际值</param>
|
|||
/// <param name="ts">自上次迭代以来的时间跨度,对第一次调用使用默认采样周期</param>
|
|||
/// <returns>Current Controller Output</returns>
|
|||
public double PID_iterate(double setPoint, double processValue, TimeSpan ts) |
|||
{ |
|||
// Ensure the timespan is not too small or zero.
|
|||
Ts = (ts.TotalSeconds >= TsMin) ? ts.TotalSeconds : TsMin; |
|||
|
|||
// Calculate rollup parameters
|
|||
K = 2 / Ts; |
|||
b0 = Math.Pow(K, 2) * Kp + K * Ki + Ki * N + K * Kp * N + Math.Pow(K, 2) * Kd * N; |
|||
b1 = 2 * Ki * N - 2 * Math.Pow(K, 2) * Kp - 2 * Math.Pow(K, 2) * Kd * N; |
|||
b2 = Math.Pow(K, 2) * Kp - K * Ki + Ki * N - K * Kp * N + Math.Pow(K, 2) * Kd * N; |
|||
a0 = Math.Pow(K, 2) + N * K; |
|||
a1 = -2 * Math.Pow(K, 2); |
|||
a2 = Math.Pow(K, 2) - K * N; |
|||
|
|||
// Age errors and output history
|
|||
e2 = e1; // Age errors one iteration
|
|||
e1 = e0; // Age errors one iteration
|
|||
e0 = setPoint - processValue; // Compute new error
|
|||
y2 = y1; // Age outputs one iteration
|
|||
y1 = y0; // Age outputs one iteration
|
|||
y0 = -a1 / a0 * y1 - a2 / a0 * y2 + b0 / a0 * e0 + b1 / a0 * e1 + b2 / a0 * e2; // Calculate current output
|
|||
|
|||
// Clamp output if needed
|
|||
if (y0 > OutputUpperLimit) |
|||
{ |
|||
y0 = OutputUpperLimit; |
|||
} |
|||
else if (y0 < OutputLowerLimit) |
|||
{ |
|||
y0 = OutputLowerLimit; |
|||
} |
|||
|
|||
return y0; |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 重置控制器历史记录,有效重置控制器。
|
|||
/// </summary>
|
|||
public void ResetController() |
|||
{ |
|||
e2 = 0; |
|||
e1 = 0; |
|||
e0 = 0; |
|||
y2 = 0; |
|||
y1 = 0; |
|||
y0 = 0; |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 比例增益,如果此参数发生剧烈变化,请考虑重置控制器。
|
|||
/// </summary>
|
|||
public double Kp { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 积分增益,如果此参数发生剧烈变化,请考虑重置控制器。
|
|||
/// </summary>
|
|||
public double Ki { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 微分增益,如果此参数发生剧烈变化,请考虑重置控制器。
|
|||
/// </summary>
|
|||
public double Kd { get; set; } |
|||
|
|||
/// <summary>
|
|||
///微分滤波系数。
|
|||
/// N越小,过滤效果越好
|
|||
/// N越大,过滤效果越差
|
|||
/// 如果此参数发生剧烈变化,请考虑重置控制器。
|
|||
/// </summary>
|
|||
public double N { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 避免除以零的最小允许采样周期!
|
|||
/// Ts值可能会在第一次迭代时被错误地设置为过低的值或零。
|
|||
/// TsMin默认设置为1毫秒。
|
|||
/// </summary>
|
|||
public double TsMin { get; set; } = 0.001; |
|||
|
|||
/// <summary>
|
|||
/// 控制器的输出上限。
|
|||
/// 是一个比输出下限大的数值。
|
|||
/// </summary>
|
|||
public double OutputUpperLimit { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 控制器的输出下限。
|
|||
/// 是一个比输出上限小的数值。
|
|||
/// </summary>
|
|||
public double OutputLowerLimit { get; set; } |
|||
} |
|||
} |
@ -0,0 +1,28 @@ |
|||
using System; |
|||
using System.Runtime.InteropServices; |
|||
using System.Windows.Forms; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
internal class PressKey |
|||
{ |
|||
/// <summary>
|
|||
/// 键盘模拟
|
|||
/// </summary>
|
|||
[DllImport("user32.dll", SetLastError = true)] |
|||
static extern void keybd_event(byte bVk, byte bScan, uint dwFlags, UIntPtr dwExtraInfo); |
|||
public static void PressKeys(Keys key, bool up) |
|||
{ |
|||
const int KEYEVENTF_EXTENDEDKEY = 0x1; |
|||
const int KEYEVENTF_KEYUP = 0x2; |
|||
if (up) |
|||
{ |
|||
keybd_event((byte)key, 0x45, KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, (UIntPtr)0); |
|||
} |
|||
else |
|||
{ |
|||
keybd_event((byte)key, 0x45, KEYEVENTF_EXTENDEDKEY, (UIntPtr)0); |
|||
} |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,114 @@ |
|||
using DyeingComputer.View; |
|||
using DyeingComputer.ViewModel; |
|||
using ScottPlot.Colormaps; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Data; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using System.Windows.Documents; |
|||
using System.Xml.Linq; |
|||
using static DyeingComputer.UserClass.SqliteHelper; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
public class SQLDATA |
|||
{ |
|||
private static SQLiteHelper SQLiteHelpers = null; //定义数据库
|
|||
private readonly static string DBAddress = Environment.CurrentDirectory + "\\DataBase\\800COMPUTER.db"; //数据库路径
|
|||
//WorkOrder表检查写入
|
|||
public static bool WorkOrder(string WorkOrder, string ProcessName,string StartTime, string EndTime, string Time, string Remark,string lock_,string state,string ProcessID) |
|||
{ |
|||
SQLiteHelpers = new SQLiteHelper(DBAddress); //数据库连接路径
|
|||
SQLiteHelpers.Open(); //打开数据库
|
|||
object i = SQLiteHelpers.ExecuteScalar("select * from WorkOrder where WorkOrder = "+ WorkOrder,null); |
|||
if (i!=null) |
|||
{ |
|||
SQLiteHelpers.Close(); |
|||
return false; |
|||
} |
|||
Dictionary<string, object> WorkOrder_new = new Dictionary<string, object>();//缓存函数
|
|||
WorkOrder_new.Add("WorkOrder", WorkOrder); |
|||
WorkOrder_new.Add("ProcessName", ProcessName); |
|||
WorkOrder_new.Add("StartTime", StartTime); |
|||
WorkOrder_new.Add("EndTime", EndTime); |
|||
WorkOrder_new.Add("Time", Time); |
|||
WorkOrder_new.Add("Remark", Remark); |
|||
WorkOrder_new.Add("lock", Convert.ToInt16(lock_)); |
|||
WorkOrder_new.Add("state", Convert.ToInt16(state)); |
|||
WorkOrder_new.Add("ProcessID", ProcessID); |
|||
SQLiteHelpers.InsertData("WorkOrder", WorkOrder_new); |
|||
SQLiteHelpers.Close(); |
|||
return true; |
|||
} |
|||
|
|||
public static bool WorkOderStep(DataTable WorkOrderStep_) |
|||
{ |
|||
SQLiteHelpers = new SQLiteHelper(DBAddress); //数据库连接路径
|
|||
SQLiteHelpers.Open(); //打开数据库
|
|||
DataTable data_t = WorkOrderStep_.Clone(); |
|||
int a = WorkOrderStep_.Rows.Count; |
|||
if (a < 1) |
|||
{ |
|||
SQLiteHelpers.Close(); |
|||
return false; |
|||
} |
|||
string Program = WorkOrderStep_.Rows[0][0].ToString(); |
|||
object n = SQLiteHelpers.ExecuteScalar("select * from WorkorderSteps where Program = " + Program, null); |
|||
if (n != null)//如id存在着返回错误状态
|
|||
{ |
|||
SQLiteHelpers.Close(); |
|||
return false; |
|||
} |
|||
for (int i = 0; i < a; i++) |
|||
{ |
|||
data_t.Clear();//清空
|
|||
DataRow dr = data_t.NewRow(); |
|||
dr.ItemArray = WorkOrderStep_.Rows[i].ItemArray; |
|||
data_t.Rows.InsertAt(dr, 0); |
|||
SQLiteHelpers.InsertData("WorkorderSteps", SQLiteHelpers.DataTableToDictionary(data_t));//行插入
|
|||
} |
|||
SQLiteHelpers.Close(); //关闭连接
|
|||
return true; |
|||
} |
|||
|
|||
public static void TechnologicalProcess_START(string workName) |
|||
{ |
|||
SQLiteHelpers = new SQLiteHelper(DBAddress); //数据库连接路径
|
|||
SQLiteHelpers.Open(); //打开数据库
|
|||
int r = 0; |
|||
string sql_script = "select * from WorkorderSteps where ProgramID = '" + workName + "'"; |
|||
if (TechnologicalProcessView.sql != null) TechnologicalProcessView.sql.Clear(); //清空缓存
|
|||
TechnologicalProcessView.sql = SQLiteHelpers.ExecuteDataSet(sql_script, null); //读取表写入缓存
|
|||
TechnologicalProcessView.Program_Name = SQLiteHelpers.ExecuteScalar("select ProgramName from Workorder where ProgramID = '" + workName + "'", null).ToString(); |
|||
|
|||
SQLiteHelpers.Delete("RUN", null, null); //删除run信息
|
|||
DataTable data_t = new DataTable(); |
|||
data_t = TechnologicalProcessView.sql.Tables[0].Clone(); |
|||
data_t.Columns.Add("DYELOT", typeof(string)); //添加列
|
|||
int a = TechnologicalProcessView.sql.Tables[0].Rows.Count; |
|||
for (int i = 0; i < a; i++) |
|||
{ |
|||
data_t.Clear();//清空
|
|||
DataRow dt = TechnologicalProcessView.sql.Tables[0].Rows[i];//行转
|
|||
DataRow dr = data_t.NewRow(); |
|||
dr.ItemArray = dt.ItemArray; |
|||
dr.BeginEdit(); //添加订单号
|
|||
dr["DYELOT"] = MainWindowViewModel.WorkNumder; |
|||
dr.EndEdit(); |
|||
data_t.Rows.InsertAt(dr, 0); //行转换
|
|||
|
|||
r = SQLiteHelpers.InsertData("RUN", SQLiteHelpers.DataTableToDictionary(data_t));//行插入
|
|||
} |
|||
//数据插入
|
|||
MainWindowViewModel.WorkNumder = SQLiteHelpers.ExecuteDataSet("select WorkOrder from Workorder where ProgramID = '" + workName + "'", null);; |
|||
TechnologicalProcessView.workName = workName; |
|||
MainWindowViewModel.SYS_REDYE = 0; |
|||
MainWindowViewModel.ViewID = 1; |
|||
|
|||
SQLiteHelpers.Close(); //关闭连接
|
|||
} |
|||
|
|||
} |
|||
} |
@ -0,0 +1,686 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using System.Data; |
|||
using System.IO; |
|||
using System.Data.Common; |
|||
using System.Windows.Media.Animation; |
|||
using System.Data.SQLite; |
|||
using System.Windows.Shapes; |
|||
using System.Drawing; |
|||
|
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
public class SqliteHelper |
|||
{ |
|||
|
|||
public class SQLiteHelper |
|||
{ |
|||
#region 字段
|
|||
|
|||
/// <summary>
|
|||
/// 事务的基类
|
|||
/// </summary>
|
|||
private DbTransaction DBtrans; |
|||
/// <summary>
|
|||
/// 使用静态变量字典解决多线程实例本类,实现一个数据库对应一个clslock
|
|||
/// </summary>
|
|||
private static readonly Dictionary<string, ClsLock> RWL = new Dictionary<string, ClsLock>(); |
|||
/// <summary>
|
|||
/// 数据库地址
|
|||
/// </summary>
|
|||
private readonly string mdataFile; |
|||
/// <summary>
|
|||
/// 数据库密码
|
|||
/// </summary>
|
|||
private readonly string mPassWord; |
|||
private readonly string LockName = null; |
|||
/// <summary>
|
|||
/// 数据库连接定义
|
|||
/// </summary>
|
|||
private SQLiteConnection mConn; |
|||
|
|||
#endregion
|
|||
|
|||
#region 构造函数
|
|||
|
|||
/// <summary>
|
|||
/// 根据数据库地址初始化
|
|||
/// </summary>
|
|||
/// <param name="dataFile">数据库地址</param>
|
|||
public SQLiteHelper(string dataFile) |
|||
{ |
|||
this.mdataFile = dataFile ?? throw new ArgumentNullException("dataFile=null"); |
|||
//this.mdataFile = AppDomain.CurrentDomain.BaseDirectory + dataFile;
|
|||
this.mdataFile = dataFile; |
|||
if (!RWL.ContainsKey(dataFile)) |
|||
{ |
|||
LockName = dataFile; |
|||
RWL.Add(dataFile, new ClsLock()); |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 使用密码打开数据库
|
|||
/// </summary>
|
|||
/// <param name="dataFile">数据库地址</param>
|
|||
/// <param name="PassWord">数据库密码</param>
|
|||
public SQLiteHelper(string dataFile, string PassWord) |
|||
{ |
|||
this.mdataFile = dataFile ?? throw new ArgumentNullException("dataFile is null"); |
|||
this.mPassWord = PassWord ?? throw new ArgumentNullException("PassWord is null"); |
|||
//this.mdataFile = AppDomain.CurrentDomain.BaseDirectory + dataFile;
|
|||
this.mdataFile = dataFile; |
|||
if (!RWL.ContainsKey(dataFile)) |
|||
{ |
|||
LockName = dataFile; |
|||
RWL.Add(dataFile, new ClsLock()); |
|||
} |
|||
} |
|||
|
|||
#endregion
|
|||
|
|||
#region 打开/关闭 数据库
|
|||
|
|||
/// <summary>
|
|||
/// 打开 SQLiteManager 使用的数据库连接
|
|||
/// </summary>
|
|||
public void Open() |
|||
{ |
|||
if (string.IsNullOrWhiteSpace(mPassWord)) |
|||
{ |
|||
mConn = OpenConnection(this.mdataFile); |
|||
} |
|||
else |
|||
{ |
|||
mConn = OpenConnection(this.mdataFile, mPassWord); |
|||
} |
|||
Console.WriteLine("The database was opened successfully"); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 关闭连接
|
|||
/// </summary>
|
|||
public void Close() |
|||
{ |
|||
if (this.mConn != null) |
|||
{ |
|||
try |
|||
{ |
|||
this.mConn.Close(); |
|||
if (RWL.ContainsKey(LockName)) |
|||
{ |
|||
RWL.Remove(LockName); |
|||
} |
|||
} |
|||
catch |
|||
{ |
|||
Console.WriteLine("Shutdown failed"); |
|||
} |
|||
} |
|||
Console.WriteLine("The database was shut down successfully"); |
|||
} |
|||
|
|||
#endregion
|
|||
|
|||
#region 事务
|
|||
|
|||
/// <summary>
|
|||
/// 开始事务
|
|||
/// </summary>
|
|||
public void BeginTrain() |
|||
{ |
|||
EnsureConnection(); |
|||
DBtrans = mConn.BeginTransaction(); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 提交事务
|
|||
/// </summary>
|
|||
public void DBCommit() |
|||
{ |
|||
try |
|||
{ |
|||
DBtrans.Commit(); |
|||
} |
|||
catch (Exception) |
|||
{ |
|||
DBtrans.Rollback(); |
|||
} |
|||
} |
|||
|
|||
#endregion
|
|||
|
|||
#region 工具
|
|||
|
|||
/// <summary>
|
|||
/// 打开一个SQLite数据库文件,如果文件不存在,则创建(无密码)
|
|||
/// </summary>
|
|||
/// <param name="dataFile"></param>
|
|||
/// <returns>SQLiteConnection 类</returns>
|
|||
private SQLiteConnection OpenConnection(string dataFile) |
|||
{ |
|||
if (dataFile == null) |
|||
{ |
|||
throw new ArgumentNullException("dataFiledataFile=null"); |
|||
} |
|||
if (!File.Exists(dataFile)) |
|||
{ |
|||
SQLiteConnection.CreateFile(dataFile); |
|||
} |
|||
SQLiteConnection conn = new SQLiteConnection(); |
|||
SQLiteConnectionStringBuilder conStr = new SQLiteConnectionStringBuilder |
|||
{ |
|||
DataSource = dataFile |
|||
}; |
|||
conn.ConnectionString = conStr.ToString(); |
|||
conn.Open(); |
|||
return conn; |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 打开一个SQLite数据库文件,如果文件不存在,则创建(有密码)
|
|||
/// </summary>
|
|||
/// <param name="dataFile"></param>
|
|||
/// <param name="Password"></param>
|
|||
/// <returns>SQLiteConnection 类</returns>
|
|||
private SQLiteConnection OpenConnection(string dataFile, string Password) |
|||
{ |
|||
if (dataFile == null) |
|||
{ |
|||
throw new ArgumentNullException("dataFile=null"); |
|||
} |
|||
if (!File.Exists(Convert.ToString(dataFile))) |
|||
{ |
|||
SQLiteConnection.CreateFile(dataFile); |
|||
} |
|||
try |
|||
{ |
|||
SQLiteConnection conn = new SQLiteConnection(); |
|||
SQLiteConnectionStringBuilder conStr = new SQLiteConnectionStringBuilder |
|||
{ |
|||
DataSource = dataFile, |
|||
Password = Password |
|||
}; |
|||
conn.ConnectionString = conStr.ToString(); |
|||
conn.Open(); |
|||
return conn; |
|||
} |
|||
catch (Exception) |
|||
{ |
|||
return null; |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 读取 或 设置 SQLiteManager 使用的数据库连接
|
|||
/// </summary>
|
|||
public SQLiteConnection Connection |
|||
{ |
|||
get |
|||
{ |
|||
return mConn; |
|||
} |
|||
private set |
|||
{ |
|||
mConn = value ?? throw new ArgumentNullException(); |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 确保数据库是连接状态
|
|||
/// </summary>
|
|||
/// <exception cref="Exception"></exception>
|
|||
protected void EnsureConnection() |
|||
{ |
|||
if (this.mConn == null) |
|||
{ |
|||
throw new Exception("SQLiteManager.Connection=null"); |
|||
} |
|||
if (mConn.State != ConnectionState.Open) |
|||
{ |
|||
mConn.Open(); |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 获取数据库文件的路径
|
|||
/// </summary>
|
|||
/// <returns></returns>
|
|||
public string GetDataFile() |
|||
{ |
|||
return this.mdataFile; |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 判断表 table 是否存在
|
|||
/// </summary>
|
|||
/// <param name="table"></param>
|
|||
/// <returns>存在返回true,否则返回false</returns>
|
|||
public bool TableExists(string table) |
|||
{ |
|||
if (table == null) |
|||
{ |
|||
throw new ArgumentNullException("table=null"); |
|||
} |
|||
EnsureConnection(); |
|||
SQLiteDataReader reader = ExecuteReader("SELECT count(*) as c FROM sqlite_master WHERE type='table' AND name=@tableName ", new SQLiteParameter[] { new SQLiteParameter("tableName", table) }); |
|||
if (reader == null) |
|||
{ |
|||
return false; |
|||
} |
|||
reader.Read(); |
|||
int c = reader.GetInt32(0); |
|||
reader.Close(); |
|||
reader.Dispose(); |
|||
//return false;
|
|||
return c == 1; |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// VACUUM 命令(通过复制主数据库中的内容到一个临时数据库文件,然后清空主数据库,并从副本中重新载入原始的数据库文件)
|
|||
/// </summary>
|
|||
/// <returns></returns>
|
|||
public bool Vacuum() |
|||
{ |
|||
try |
|||
{ |
|||
using (SQLiteCommand Command = new SQLiteCommand("VACUUM", Connection)) |
|||
{ |
|||
Command.ExecuteNonQuery(); |
|||
} |
|||
return true; |
|||
} |
|||
catch (System.Data.SQLite.SQLiteException) |
|||
{ |
|||
return false; |
|||
} |
|||
} |
|||
|
|||
#endregion
|
|||
|
|||
#region 执行SQL
|
|||
|
|||
/// <summary>
|
|||
/// 执行SQL, 并返回 SQLiteDataReader 对象结果
|
|||
/// </summary>
|
|||
/// <param name="sql"></param>
|
|||
/// <param name="paramArr">null 表示无参数</param>
|
|||
/// <returns></returns>
|
|||
public SQLiteDataReader ExecuteReader(string sql, SQLiteParameter[] paramArr) |
|||
{ |
|||
if (sql == null) |
|||
{ |
|||
throw new ArgumentNullException("sql=null"); |
|||
} |
|||
EnsureConnection(); |
|||
using (RWL[LockName].Read()) |
|||
{ |
|||
using (SQLiteCommand cmd = new SQLiteCommand(sql, Connection)) |
|||
{ |
|||
if (paramArr != null) |
|||
{ |
|||
cmd.Parameters.AddRange(paramArr); |
|||
} |
|||
try |
|||
{ |
|||
SQLiteDataReader reader = cmd.ExecuteReader(); |
|||
cmd.Parameters.Clear(); |
|||
return reader; |
|||
} |
|||
catch (Exception) |
|||
{ |
|||
return null; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 执行查询,并返回dataset对象
|
|||
/// </summary>
|
|||
/// <param name="sql">SQL查询语句</param>
|
|||
/// <param name="paramArr">参数数组</param>
|
|||
/// <returns></returns>
|
|||
public DataSet ExecuteDataSet(string sql, SQLiteParameter[] paramArr) |
|||
{ |
|||
if (sql == null) |
|||
{ |
|||
throw new ArgumentNullException("sql=null"); |
|||
} |
|||
this.EnsureConnection(); |
|||
using (RWL[LockName].Read()) |
|||
{ |
|||
using (SQLiteCommand cmd = new SQLiteCommand(sql, this.Connection)) |
|||
{ |
|||
if (paramArr != null) |
|||
{ |
|||
cmd.Parameters.AddRange(paramArr); |
|||
} |
|||
try |
|||
{ |
|||
SQLiteDataAdapter da = new SQLiteDataAdapter(); |
|||
DataSet ds = new DataSet(); |
|||
da.SelectCommand = cmd; |
|||
da.Fill(ds); |
|||
cmd.Parameters.Clear(); |
|||
da.Dispose(); |
|||
return ds; |
|||
} |
|||
catch (Exception) |
|||
{ |
|||
return null; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 执行SQL查询,并返回dataset对象。
|
|||
/// </summary>
|
|||
/// <param name="strTable">映射源表的名称</param>
|
|||
/// <param name="sql">SQL语句</param>
|
|||
/// <param name="paramArr">SQL参数数组</param>
|
|||
/// <returns></returns>
|
|||
public DataSet ExecuteDataSet(string strTable, string sql, SQLiteParameter[] paramArr) |
|||
{ |
|||
if (sql == null) |
|||
{ |
|||
throw new ArgumentNullException("sql=null"); |
|||
} |
|||
this.EnsureConnection(); |
|||
using (RWL[LockName].Read()) |
|||
{ |
|||
using (SQLiteCommand cmd = new SQLiteCommand(sql, this.Connection)) |
|||
{ |
|||
if (paramArr != null) |
|||
{ |
|||
cmd.Parameters.AddRange(paramArr); |
|||
} |
|||
try |
|||
{ |
|||
SQLiteDataAdapter da = new SQLiteDataAdapter(); |
|||
DataSet ds = new DataSet(); |
|||
da.SelectCommand = cmd; |
|||
da.Fill(ds, strTable); |
|||
cmd.Parameters.Clear(); |
|||
da.Dispose(); |
|||
return ds; |
|||
} |
|||
catch (Exception) |
|||
{ |
|||
return null; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 执行SQL,返回受影响的行数,可用于执行表创建语句,paramArr == null 表示无参数
|
|||
/// </summary>
|
|||
/// <param name="sql"></param>
|
|||
/// <returns></returns>
|
|||
public int ExecuteNonQuery(string sql, SQLiteParameter[] paramArr) |
|||
{ |
|||
if (sql == null) |
|||
{ |
|||
throw new ArgumentNullException("sql=null"); |
|||
} |
|||
this.EnsureConnection(); |
|||
using (RWL[LockName].Read()) |
|||
{ |
|||
try |
|||
{ |
|||
using (SQLiteCommand cmd = new SQLiteCommand(sql, Connection)) |
|||
{ |
|||
if (paramArr != null) |
|||
{ |
|||
foreach (SQLiteParameter p in paramArr) |
|||
{ |
|||
cmd.Parameters.Add(p); |
|||
} |
|||
} |
|||
int c = cmd.ExecuteNonQuery(); |
|||
cmd.Parameters.Clear(); |
|||
return c; |
|||
} |
|||
} |
|||
catch (SQLiteException) |
|||
{ |
|||
return 0; |
|||
} |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 执行SQL,返回结果集第一行,如果结果集为空,那么返回空 List(List.Count=0),
|
|||
/// rowWrapper = null 时,使用 WrapRowToDictionary
|
|||
/// </summary>
|
|||
/// <param name="sql"></param>
|
|||
/// <param name="paramArr"></param>
|
|||
/// <returns></returns>
|
|||
public object ExecuteScalar(string sql, SQLiteParameter[] paramArr) |
|||
{ |
|||
if (sql == null) |
|||
{ |
|||
throw new ArgumentNullException("sql=null"); |
|||
} |
|||
this.EnsureConnection(); |
|||
using (RWL[LockName].Read()) |
|||
{ |
|||
using (SQLiteCommand cmd = new SQLiteCommand(sql, Connection)) |
|||
{ |
|||
if (paramArr != null) |
|||
{ |
|||
cmd.Parameters.AddRange(paramArr); |
|||
} |
|||
try |
|||
{ |
|||
object reader = cmd.ExecuteScalar(); |
|||
cmd.Parameters.Clear(); |
|||
cmd.Dispose(); |
|||
return reader; |
|||
} |
|||
catch (Exception) |
|||
{ |
|||
return null; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 查询一行记录,无结果时返回 null,conditionCol = null 时将忽略条件,直接执行 select * from table
|
|||
/// </summary>
|
|||
/// <param name="table">表名</param>
|
|||
/// <param name="conditionCol"></param>
|
|||
/// <param name="conditionVal"></param>
|
|||
/// <returns></returns>
|
|||
public object QueryOne(string table, string conditionCol, object conditionVal) |
|||
{ |
|||
if (table == null) |
|||
{ |
|||
throw new ArgumentNullException("table=null"); |
|||
} |
|||
this.EnsureConnection(); |
|||
string sql = "select * from " + table; |
|||
if (conditionCol != null) |
|||
{ |
|||
sql += " where " + conditionCol + "=@" + conditionCol; |
|||
} |
|||
object result = ExecuteScalar(sql, new SQLiteParameter[] { new SQLiteParameter(conditionCol, conditionVal) }); |
|||
return result; |
|||
} |
|||
|
|||
#endregion
|
|||
|
|||
#region 增 删 改
|
|||
|
|||
/// <summary>
|
|||
/// 执行 insert into 语句
|
|||
/// </summary>
|
|||
/// <param name="table"></param>
|
|||
/// <param name="entity"></param>
|
|||
/// <returns></returns>
|
|||
public int InsertData(string table, Dictionary<string, object> entity) |
|||
{ |
|||
if (table == null) |
|||
{ |
|||
throw new ArgumentNullException("table=null"); |
|||
} |
|||
this.EnsureConnection(); |
|||
string sql = BuildInsert(table, entity); |
|||
return this.ExecuteNonQuery(sql, BuildParamArray(entity)); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 执行 update 语句,注意:如果 where = null,那么 whereParams 也为 null,
|
|||
/// </summary>
|
|||
/// <param name="table">表名</param>
|
|||
/// <param name="entity">要修改的列名和列名的值</param>
|
|||
/// <param name="where">查找符合条件的列</param>
|
|||
/// <param name="whereParams">where条件中参数的值</param>
|
|||
/// <returns></returns>
|
|||
public int Update(string table, Dictionary<string, object> entity, string where, SQLiteParameter[] whereParams) |
|||
{ |
|||
if (table == null) |
|||
{ |
|||
throw new ArgumentNullException("table=null"); |
|||
} |
|||
this.EnsureConnection(); |
|||
string sql = BuildUpdate(table, entity); |
|||
SQLiteParameter[] parameter = BuildParamArray(entity); |
|||
if (where != null) |
|||
{ |
|||
sql += " where " + where; |
|||
if (whereParams != null) |
|||
{ |
|||
SQLiteParameter[] newArr = new SQLiteParameter[(parameter.Length + whereParams.Length)]; |
|||
Array.Copy(parameter, newArr, parameter.Length); |
|||
Array.Copy(whereParams, 0, newArr, parameter.Length, whereParams.Length); |
|||
parameter = newArr; |
|||
} |
|||
} |
|||
return this.ExecuteNonQuery(sql, parameter); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 执行 delete from table 语句,where不必包含'where'关键字,where = null 时将忽略 whereParams
|
|||
/// </summary>
|
|||
/// <param name="table"></param>
|
|||
/// <param name="where"></param>
|
|||
/// <param name="whereParams"></param>
|
|||
/// <returns></returns>
|
|||
public int Delete(string table, string where, SQLiteParameter[] whereParams) |
|||
{ |
|||
if (table == null) |
|||
{ |
|||
throw new ArgumentNullException("table=null"); |
|||
} |
|||
this.EnsureConnection(); |
|||
string sql = "delete from " + table + " "; |
|||
if (where != null) |
|||
{ |
|||
sql += "where " + where; |
|||
} |
|||
return ExecuteNonQuery(sql, whereParams); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 将 Dictionary 类型数据 转换为 SQLiteParameter[] 类型
|
|||
/// </summary>
|
|||
/// <param name="entity"></param>
|
|||
/// <returns></returns>
|
|||
private SQLiteParameter[] BuildParamArray(Dictionary<string, object> entity) |
|||
{ |
|||
List<SQLiteParameter> list = new List<SQLiteParameter>(); |
|||
foreach (string key in entity.Keys) |
|||
{ |
|||
list.Add(new SQLiteParameter(key, entity[key])); |
|||
} |
|||
if (list.Count == 0) |
|||
{ |
|||
return null; |
|||
} |
|||
return list.ToArray(); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 将 Dictionary 类型数据 转换为 插入数据 的 SQL语句
|
|||
/// </summary>
|
|||
/// <param name="table">表名</param>
|
|||
/// <param name="entity">字典</param>
|
|||
/// <returns></returns>
|
|||
private string BuildInsert(string table, Dictionary<string, object> entity) |
|||
{ |
|||
StringBuilder buf = new StringBuilder(); |
|||
buf.Append("insert into ").Append(table); |
|||
buf.Append(" ("); |
|||
foreach (string key in entity.Keys) |
|||
{ |
|||
buf.Append(key).Append(","); |
|||
} |
|||
buf.Remove(buf.Length - 1, 1); // 移除最后一个,
|
|||
buf.Append(") "); |
|||
buf.Append("values("); |
|||
foreach (string key in entity.Keys) |
|||
{ |
|||
buf.Append("@").Append(key).Append(","); // 创建一个参数
|
|||
} |
|||
buf.Remove(buf.Length - 1, 1); |
|||
buf.Append(") "); |
|||
|
|||
return buf.ToString(); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 将 Dictionary 类型数据 转换为 修改数据 的 SQL语句
|
|||
/// </summary>
|
|||
/// <param name="table">表名</param>
|
|||
/// <param name="entity">字典</param>
|
|||
/// <returns></returns>
|
|||
private string BuildUpdate(string table, Dictionary<string, object> entity) |
|||
{ |
|||
StringBuilder buf = new StringBuilder(); |
|||
buf.Append("update ").Append(table).Append(" set "); |
|||
foreach (string key in entity.Keys) |
|||
{ |
|||
buf.Append(key).Append("=").Append("@").Append(key).Append(","); |
|||
} |
|||
buf.Remove(buf.Length - 1, 1); |
|||
buf.Append(" "); |
|||
return buf.ToString(); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 将 DataTable 转换为 Dictionary 类型数据
|
|||
/// </summary>
|
|||
public Dictionary<string, object> DataTableToDictionary(DataTable dataTable) |
|||
{ |
|||
Dictionary<string, object> result = new Dictionary<string, object>(); |
|||
if (dataTable != null) |
|||
{ |
|||
foreach (DataRow dataRow in dataTable.Rows) |
|||
{ |
|||
foreach (DataColumn dataColumn in dataTable.Columns) |
|||
{ |
|||
result.Add(dataColumn.ColumnName, dataRow[dataColumn].ToString()); |
|||
//result = Console.WriteLine(dataRow[dataColumn].ToString());
|
|||
//result.Add(dataColumn.ColumnName, dataRow[dataColumn].ToString())(new RepeatDictionaryComparer());
|
|||
} |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
result = null; |
|||
} |
|||
return result; |
|||
} |
|||
|
|||
} |
|||
#endregion
|
|||
} |
|||
} |
@ -0,0 +1,37 @@ |
|||
using System; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
/// <summary>
|
|||
/// 字符串转数字
|
|||
/// </summary>
|
|||
internal class StrToInt |
|||
{ |
|||
/// <summary>
|
|||
/// 十六进制字符串转十进制
|
|||
/// </summary>
|
|||
/// <param name="str">十六进制字符</param>
|
|||
/// <returns></returns>
|
|||
public static int To16Convert10(string str) |
|||
{ |
|||
int res = 0; |
|||
try |
|||
{ |
|||
str = str.Trim().Replace(" ", ""); //移除空字符
|
|||
//方法1
|
|||
res = int.Parse(str, System.Globalization.NumberStyles.AllowHexSpecifier); |
|||
//方法2
|
|||
//int r2 = System.Int32.Parse(str, System.Globalization.NumberStyles.HexNumber);
|
|||
//Console.WriteLine(r2);
|
|||
//方法3
|
|||
//int r3 = Convert.ToInt32(str, 16);
|
|||
//Console.WriteLine(r3);
|
|||
} |
|||
catch (Exception) |
|||
{ |
|||
res = 0; |
|||
} |
|||
return res; |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,46 @@ |
|||
using System.Net.NetworkInformation; |
|||
using System.Net.Sockets; |
|||
|
|||
namespace DyeingComputer.UserClass |
|||
{ |
|||
public class get_local_ip_address |
|||
{ |
|||
public static string getLocalIPAddressWithNetworkInterface(NetworkInterfaceType _type)//获取本机ip并以字符串方式返回
|
|||
{ |
|||
string output = ""; |
|||
foreach (NetworkInterface item in NetworkInterface.GetAllNetworkInterfaces()) |
|||
{ |
|||
if (item.NetworkInterfaceType == _type && item.OperationalStatus == OperationalStatus.Up) |
|||
{ |
|||
foreach (UnicastIPAddressInformation ip in item.GetIPProperties().UnicastAddresses) |
|||
{ |
|||
if (ip.Address.AddressFamily == AddressFamily.InterNetwork) |
|||
{ |
|||
output = ip.Address.ToString(); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
return output; |
|||
} |
|||
|
|||
public static string IP_Address() |
|||
{ |
|||
string ip; |
|||
|
|||
ip = getLocalIPAddressWithNetworkInterface(NetworkInterfaceType.Ethernet); |
|||
if (ip == "") ip = getLocalIPAddressWithNetworkInterface(NetworkInterfaceType.Wireless80211); |
|||
if (ip == "") ip = getLocalIPAddressWithNetworkInterface(NetworkInterfaceType.Ppp); |
|||
if (ip == "") ip = getLocalIPAddressWithNetworkInterface(NetworkInterfaceType.Wwanpp); |
|||
if (ip == "") ip = getLocalIPAddressWithNetworkInterface(NetworkInterfaceType.TokenRing); |
|||
if (ip == "") ip = getLocalIPAddressWithNetworkInterface(NetworkInterfaceType.Fddi); |
|||
if (ip == "") ip = getLocalIPAddressWithNetworkInterface(NetworkInterfaceType.GenericModem); |
|||
if (ip == "") ip = getLocalIPAddressWithNetworkInterface(NetworkInterfaceType.IPOverAtm); |
|||
if (ip == "") ip = getLocalIPAddressWithNetworkInterface(NetworkInterfaceType.Tunnel); |
|||
if (ip == "") ip = getLocalIPAddressWithNetworkInterface(NetworkInterfaceType.Unknown); |
|||
|
|||
if (ip == "") ip = "127.0.0.1"; |
|||
return ip; |
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue