Show More
@@ -93,3 +93,8 span#login_widget { | |||
|
93 | 93 | } |
|
94 | 94 | } |
|
95 | 95 | |
|
96 | // less mixin to be sure to add the right class to get icons with font awesome. | |
|
97 | .icon(@ico){ | |
|
98 | .fa(); | |
|
99 | content: @ico; | |
|
100 | } |
@@ -1,1 +1,1 | |||
|
1 | Subproject commit 7c07f705d4f068828fb76f74ac7d4d355aea06f9 | |
|
1 | Subproject commit a80ac7a2f6d045e3903d3c9e189a10cc96255b05 |
@@ -35,7 +35,7 define([ | |||
|
35 | 35 | { |
|
36 | 36 | id : 'save_b', |
|
37 | 37 | label : 'Save and Checkpoint', |
|
38 |
icon : ' |
|
|
38 | icon : 'fa-save', | |
|
39 | 39 | callback : function () { |
|
40 | 40 | that.notebook.save_checkpoint(); |
|
41 | 41 | } |
@@ -46,7 +46,7 define([ | |||
|
46 | 46 | { |
|
47 | 47 | id : 'insert_below_b', |
|
48 | 48 | label : 'Insert Cell Below', |
|
49 |
icon : ' |
|
|
49 | icon : 'fa-plus', | |
|
50 | 50 | callback : function () { |
|
51 | 51 | that.notebook.insert_cell_below('code'); |
|
52 | 52 | that.notebook.select_next(); |
@@ -59,7 +59,7 define([ | |||
|
59 | 59 | { |
|
60 | 60 | id : 'cut_b', |
|
61 | 61 | label : 'Cut Cell', |
|
62 |
icon : ' |
|
|
62 | icon : 'fa-cut', | |
|
63 | 63 | callback : function () { |
|
64 | 64 | that.notebook.cut_cell(); |
|
65 | 65 | } |
@@ -67,7 +67,7 define([ | |||
|
67 | 67 | { |
|
68 | 68 | id : 'copy_b', |
|
69 | 69 | label : 'Copy Cell', |
|
70 |
icon : ' |
|
|
70 | icon : 'fa-copy', | |
|
71 | 71 | callback : function () { |
|
72 | 72 | that.notebook.copy_cell(); |
|
73 | 73 | } |
@@ -75,7 +75,7 define([ | |||
|
75 | 75 | { |
|
76 | 76 | id : 'paste_b', |
|
77 | 77 | label : 'Paste Cell Below', |
|
78 |
icon : ' |
|
|
78 | icon : 'fa-paste', | |
|
79 | 79 | callback : function () { |
|
80 | 80 | that.notebook.paste_cell_below(); |
|
81 | 81 | } |
@@ -86,7 +86,7 define([ | |||
|
86 | 86 | { |
|
87 | 87 | id : 'move_up_b', |
|
88 | 88 | label : 'Move Cell Up', |
|
89 |
icon : ' |
|
|
89 | icon : 'fa-arrow-up', | |
|
90 | 90 | callback : function () { |
|
91 | 91 | that.notebook.move_cell_up(); |
|
92 | 92 | } |
@@ -94,7 +94,7 define([ | |||
|
94 | 94 | { |
|
95 | 95 | id : 'move_down_b', |
|
96 | 96 | label : 'Move Cell Down', |
|
97 |
icon : ' |
|
|
97 | icon : 'fa-arrow-down', | |
|
98 | 98 | callback : function () { |
|
99 | 99 | that.notebook.move_cell_down(); |
|
100 | 100 | } |
@@ -106,7 +106,7 define([ | |||
|
106 | 106 | { |
|
107 | 107 | id : 'run_b', |
|
108 | 108 | label : 'Run Cell', |
|
109 |
icon : ' |
|
|
109 | icon : 'fa-play', | |
|
110 | 110 | callback : function () { |
|
111 | 111 | // emulate default shift-enter behavior |
|
112 | 112 | that.notebook.execute_cell_and_select_below(); |
@@ -115,7 +115,7 define([ | |||
|
115 | 115 | { |
|
116 | 116 | id : 'interrupt_b', |
|
117 | 117 | label : 'Interrupt', |
|
118 |
icon : ' |
|
|
118 | icon : 'fa-stop', | |
|
119 | 119 | callback : function () { |
|
120 | 120 | that.notebook.session.interrupt_kernel(); |
|
121 | 121 | } |
@@ -123,7 +123,7 define([ | |||
|
123 | 123 | { |
|
124 | 124 | id : 'repeat_b', |
|
125 | 125 | label : 'Restart Kernel', |
|
126 |
icon : ' |
|
|
126 | icon : 'fa-repeat', | |
|
127 | 127 | callback : function () { |
|
128 | 128 | that.notebook.restart_kernel(); |
|
129 | 129 | } |
@@ -66,7 +66,7 define([ | |||
|
66 | 66 | .addClass('btn btn-default') |
|
67 | 67 | .attr("title", el.label) |
|
68 | 68 | .append( |
|
69 | $("<i/>").addClass(el.icon) | |
|
69 | $("<i/>").addClass(el.icon).addClass('fa') | |
|
70 | 70 | ); |
|
71 | 71 | var id = el.id; |
|
72 | 72 | if( id !== undefined ) |
@@ -28,7 +28,7 | |||
|
28 | 28 | } |
|
29 | 29 | |
|
30 | 30 | .edit_mode_icon:before { |
|
31 |
|
|
|
31 | .icon(@fa-var-pencil) | |
|
32 | 32 | } |
|
33 | 33 | |
|
34 | 34 | .command_mode_icon:before { |
@@ -36,11 +36,11 | |||
|
36 | 36 | } |
|
37 | 37 | |
|
38 | 38 | .kernel_idle_icon:before { |
|
39 |
|
|
|
39 | .icon(@fa-var-circle-o); | |
|
40 | 40 | } |
|
41 | 41 | |
|
42 | 42 | .kernel_busy_icon:before { |
|
43 |
|
|
|
43 | .icon(@fa-var-circle); | |
|
44 | 44 | } |
|
45 | 45 | |
|
46 | 46 |
@@ -12,7 +12,7 | |||
|
12 | 12 | * |
|
13 | 13 | */ |
|
14 | 14 | @import "../components/font-awesome/less/font-awesome.less"; |
|
15 |
@ |
|
|
15 | @fa-font-path: "../components/font-awesome/fonts"; | |
|
16 | 16 | |
|
17 | 17 | // base |
|
18 | 18 | @import "../base/less/style.less"; |
This diff has been collapsed as it changes many lines, (1495 lines changed) Show them Hide them | |||
@@ -5785,147 +5785,71 button.close { | |||
|
5785 | 5785 | * |
|
5786 | 5786 | */ |
|
5787 | 5787 | /*! |
|
5788 | * Font Awesome 3.2.1 | |
|
5789 | * the iconic font designed for Bootstrap | |
|
5790 | * ------------------------------------------------------------------------------ | |
|
5791 | * The full suite of pictographic icons, examples, and documentation can be | |
|
5792 | * found at http://fontawesome.io. Stay up to date on Twitter at | |
|
5793 | * http://twitter.com/fontawesome. | |
|
5794 | * | |
|
5795 | * License | |
|
5796 | * ------------------------------------------------------------------------------ | |
|
5797 | * - The Font Awesome font is licensed under SIL OFL 1.1 - | |
|
5798 | * http://scripts.sil.org/OFL | |
|
5799 | * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - | |
|
5800 | * http://opensource.org/licenses/mit-license.html | |
|
5801 | * - Font Awesome documentation licensed under CC BY 3.0 - | |
|
5802 | * http://creativecommons.org/licenses/by/3.0/ | |
|
5803 | * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: | |
|
5804 | * "Font Awesome by Dave Gandy - http://fontawesome.io" | |
|
5805 | * | |
|
5806 | * Author - Dave Gandy | |
|
5807 | * ------------------------------------------------------------------------------ | |
|
5808 | * Email: dave@fontawesome.io | |
|
5809 | * Twitter: http://twitter.com/davegandy | |
|
5810 | * Work: Lead Product Designer @ Kyruus - http://kyruus.com | |
|
5788 | * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome | |
|
5789 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) | |
|
5811 | 5790 | */ |
|
5812 | 5791 | /* FONT PATH |
|
5813 | 5792 | * -------------------------- */ |
|
5814 | 5793 | @font-face { |
|
5815 | 5794 | font-family: 'FontAwesome'; |
|
5816 |
src: url('../components/font-awesome/font/fontawesome-webfont.eot?v= |
|
|
5817 |
src: url('../components/font-awesome/font/fontawesome-webfont.eot?#iefix&v= |
|
|
5795 | src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.1.0'); | |
|
5796 | src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg'); | |
|
5818 | 5797 | font-weight: normal; |
|
5819 | 5798 | font-style: normal; |
|
5820 | 5799 | } |
|
5821 | /* FONT AWESOME CORE | |
|
5822 | * -------------------------- */ | |
|
5823 | [class^="icon-"], | |
|
5824 | [class*=" icon-"] { | |
|
5800 | .fa { | |
|
5801 | display: inline-block; | |
|
5825 | 5802 | font-family: FontAwesome; |
|
5826 | font-weight: normal; | |
|
5827 | 5803 | font-style: normal; |
|
5828 | text-decoration: inherit; | |
|
5804 | font-weight: normal; | |
|
5805 | line-height: 1; | |
|
5829 | 5806 | -webkit-font-smoothing: antialiased; |
|
5830 | *margin-right: .3em; | |
|
5831 | } | |
|
5832 | [class^="icon-"]:before, | |
|
5833 | [class*=" icon-"]:before { | |
|
5834 | text-decoration: inherit; | |
|
5835 | display: inline-block; | |
|
5836 | speak: none; | |
|
5807 | -moz-osx-font-smoothing: grayscale; | |
|
5837 | 5808 | } |
|
5838 | 5809 | /* makes the font 33% larger relative to the icon container */ |
|
5839 | .icon-large:before { | |
|
5840 | vertical-align: -10%; | |
|
5810 | .fa-lg { | |
|
5841 | 5811 | font-size: 1.33333333em; |
|
5812 | line-height: 0.75em; | |
|
5813 | vertical-align: -15%; | |
|
5842 | 5814 | } |
|
5843 | /* makes sure icons active on rollover in links */ | |
|
5844 | a [class^="icon-"], | |
|
5845 | a [class*=" icon-"] { | |
|
5846 | display: inline; | |
|
5815 | .fa-2x { | |
|
5816 | font-size: 2em; | |
|
5847 | 5817 | } |
|
5848 | /* increased font size for icon-large */ | |
|
5849 | [class^="icon-"].icon-fixed-width, | |
|
5850 | [class*=" icon-"].icon-fixed-width { | |
|
5851 | display: inline-block; | |
|
5852 | width: 1.14285714em; | |
|
5853 | text-align: right; | |
|
5854 | padding-right: 0.28571429em; | |
|
5818 | .fa-3x { | |
|
5819 | font-size: 3em; | |
|
5820 | } | |
|
5821 | .fa-4x { | |
|
5822 | font-size: 4em; | |
|
5855 | 5823 | } |
|
5856 | [class^="icon-"].icon-fixed-width.icon-large, | |
|
5857 | [class*=" icon-"].icon-fixed-width.icon-large { | |
|
5858 | width: 1.42857143em; | |
|
5824 | .fa-5x { | |
|
5825 | font-size: 5em; | |
|
5859 | 5826 | } |
|
5860 | .icons-ul { | |
|
5827 | .fa-fw { | |
|
5828 | width: 1.28571429em; | |
|
5829 | text-align: center; | |
|
5830 | } | |
|
5831 | .fa-ul { | |
|
5832 | padding-left: 0; | |
|
5861 | 5833 | margin-left: 2.14285714em; |
|
5862 | 5834 | list-style-type: none; |
|
5863 | 5835 | } |
|
5864 |
. |
|
|
5836 | .fa-ul > li { | |
|
5865 | 5837 | position: relative; |
|
5866 | 5838 | } |
|
5867 | .icons-ul .icon-li { | |
|
5839 | .fa-li { | |
|
5868 | 5840 | position: absolute; |
|
5869 | 5841 | left: -2.14285714em; |
|
5870 | 5842 | width: 2.14285714em; |
|
5843 | top: 0.14285714em; | |
|
5871 | 5844 | text-align: center; |
|
5872 | line-height: inherit; | |
|
5873 | 5845 | } |
|
5874 | [class^="icon-"].hide, | |
|
5875 | [class*=" icon-"].hide { | |
|
5876 | display: none; | |
|
5846 | .fa-li.fa-lg { | |
|
5847 | left: -1.85714286em; | |
|
5877 | 5848 | } |
|
5878 | .icon-muted { | |
|
5879 | color: #eeeeee; | |
|
5880 | } | |
|
5881 | .icon-light { | |
|
5882 | color: #ffffff; | |
|
5883 | } | |
|
5884 | .icon-dark { | |
|
5885 | color: #333333; | |
|
5886 | } | |
|
5887 | .icon-border { | |
|
5888 | border: solid 1px #eeeeee; | |
|
5849 | .fa-border { | |
|
5889 | 5850 | padding: .2em .25em .15em; |
|
5890 | -webkit-border-radius: 3px; | |
|
5891 |
|
|
|
5892 | border-radius: 3px; | |
|
5893 | } | |
|
5894 | .icon-2x { | |
|
5895 | font-size: 2em; | |
|
5896 | } | |
|
5897 | .icon-2x.icon-border { | |
|
5898 | border-width: 2px; | |
|
5899 | -webkit-border-radius: 4px; | |
|
5900 | -moz-border-radius: 4px; | |
|
5901 | border-radius: 4px; | |
|
5902 | } | |
|
5903 | .icon-3x { | |
|
5904 | font-size: 3em; | |
|
5905 | } | |
|
5906 | .icon-3x.icon-border { | |
|
5907 | border-width: 3px; | |
|
5908 | -webkit-border-radius: 5px; | |
|
5909 | -moz-border-radius: 5px; | |
|
5910 | border-radius: 5px; | |
|
5911 | } | |
|
5912 | .icon-4x { | |
|
5913 | font-size: 4em; | |
|
5914 | } | |
|
5915 | .icon-4x.icon-border { | |
|
5916 | border-width: 4px; | |
|
5917 | -webkit-border-radius: 6px; | |
|
5918 | -moz-border-radius: 6px; | |
|
5919 | border-radius: 6px; | |
|
5920 | } | |
|
5921 | .icon-5x { | |
|
5922 | font-size: 5em; | |
|
5923 | } | |
|
5924 | .icon-5x.icon-border { | |
|
5925 | border-width: 5px; | |
|
5926 | -webkit-border-radius: 7px; | |
|
5927 | -moz-border-radius: 7px; | |
|
5928 | border-radius: 7px; | |
|
5851 | border: solid 0.08em #eeeeee; | |
|
5852 | border-radius: .1em; | |
|
5929 | 5853 | } |
|
5930 | 5854 | .pull-right { |
|
5931 | 5855 | float: right; |
@@ -5933,147 +5857,18 a [class*=" icon-"] { | |||
|
5933 | 5857 | .pull-left { |
|
5934 | 5858 | float: left; |
|
5935 | 5859 | } |
|
5936 | [class^="icon-"].pull-left, | |
|
5937 | [class*=" icon-"].pull-left { | |
|
5860 | .fa.pull-left { | |
|
5938 | 5861 | margin-right: .3em; |
|
5939 | 5862 | } |
|
5940 | [class^="icon-"].pull-right, | |
|
5941 | [class*=" icon-"].pull-right { | |
|
5863 | .fa.pull-right { | |
|
5942 | 5864 | margin-left: .3em; |
|
5943 | 5865 | } |
|
5944 | /* BOOTSTRAP SPECIFIC CLASSES | |
|
5945 | * -------------------------- */ | |
|
5946 | /* Bootstrap 2.0 sprites.less reset */ | |
|
5947 | [class^="icon-"], | |
|
5948 | [class*=" icon-"] { | |
|
5949 | display: inline; | |
|
5950 | width: auto; | |
|
5951 | height: auto; | |
|
5952 | line-height: normal; | |
|
5953 | vertical-align: baseline; | |
|
5954 | background-image: none; | |
|
5955 | background-position: 0% 0%; | |
|
5956 | background-repeat: repeat; | |
|
5957 | margin-top: 0; | |
|
5958 | } | |
|
5959 | /* more sprites.less reset */ | |
|
5960 | .icon-white, | |
|
5961 | .nav-pills > .active > a > [class^="icon-"], | |
|
5962 | .nav-pills > .active > a > [class*=" icon-"], | |
|
5963 | .nav-list > .active > a > [class^="icon-"], | |
|
5964 | .nav-list > .active > a > [class*=" icon-"], | |
|
5965 | .navbar-inverse .nav > .active > a > [class^="icon-"], | |
|
5966 | .navbar-inverse .nav > .active > a > [class*=" icon-"], | |
|
5967 | .dropdown-menu > li > a:hover > [class^="icon-"], | |
|
5968 | .dropdown-menu > li > a:hover > [class*=" icon-"], | |
|
5969 | .dropdown-menu > .active > a > [class^="icon-"], | |
|
5970 | .dropdown-menu > .active > a > [class*=" icon-"], | |
|
5971 | .dropdown-submenu:hover > a > [class^="icon-"], | |
|
5972 | .dropdown-submenu:hover > a > [class*=" icon-"] { | |
|
5973 | background-image: none; | |
|
5974 | } | |
|
5975 | /* keeps Bootstrap styles with and without icons the same */ | |
|
5976 | .btn [class^="icon-"].icon-large, | |
|
5977 | .nav [class^="icon-"].icon-large, | |
|
5978 | .btn [class*=" icon-"].icon-large, | |
|
5979 | .nav [class*=" icon-"].icon-large { | |
|
5980 | line-height: .9em; | |
|
5981 | } | |
|
5982 | .btn [class^="icon-"].icon-spin, | |
|
5983 | .nav [class^="icon-"].icon-spin, | |
|
5984 | .btn [class*=" icon-"].icon-spin, | |
|
5985 | .nav [class*=" icon-"].icon-spin { | |
|
5986 | display: inline-block; | |
|
5987 | } | |
|
5988 | .nav-tabs [class^="icon-"], | |
|
5989 | .nav-pills [class^="icon-"], | |
|
5990 | .nav-tabs [class*=" icon-"], | |
|
5991 | .nav-pills [class*=" icon-"], | |
|
5992 | .nav-tabs [class^="icon-"].icon-large, | |
|
5993 | .nav-pills [class^="icon-"].icon-large, | |
|
5994 | .nav-tabs [class*=" icon-"].icon-large, | |
|
5995 | .nav-pills [class*=" icon-"].icon-large { | |
|
5996 | line-height: .9em; | |
|
5997 | } | |
|
5998 | .btn [class^="icon-"].pull-left.icon-2x, | |
|
5999 | .btn [class*=" icon-"].pull-left.icon-2x, | |
|
6000 | .btn [class^="icon-"].pull-right.icon-2x, | |
|
6001 | .btn [class*=" icon-"].pull-right.icon-2x { | |
|
6002 | margin-top: .18em; | |
|
6003 | } | |
|
6004 | .btn [class^="icon-"].icon-spin.icon-large, | |
|
6005 | .btn [class*=" icon-"].icon-spin.icon-large { | |
|
6006 | line-height: .8em; | |
|
6007 | } | |
|
6008 | .btn.btn-small [class^="icon-"].pull-left.icon-2x, | |
|
6009 | .btn.btn-small [class*=" icon-"].pull-left.icon-2x, | |
|
6010 | .btn.btn-small [class^="icon-"].pull-right.icon-2x, | |
|
6011 | .btn.btn-small [class*=" icon-"].pull-right.icon-2x { | |
|
6012 | margin-top: .25em; | |
|
6013 | } | |
|
6014 | .btn.btn-large [class^="icon-"], | |
|
6015 | .btn.btn-large [class*=" icon-"] { | |
|
6016 | margin-top: 0; | |
|
6017 | } | |
|
6018 | .btn.btn-large [class^="icon-"].pull-left.icon-2x, | |
|
6019 | .btn.btn-large [class*=" icon-"].pull-left.icon-2x, | |
|
6020 | .btn.btn-large [class^="icon-"].pull-right.icon-2x, | |
|
6021 | .btn.btn-large [class*=" icon-"].pull-right.icon-2x { | |
|
6022 | margin-top: .05em; | |
|
6023 | } | |
|
6024 | .btn.btn-large [class^="icon-"].pull-left.icon-2x, | |
|
6025 | .btn.btn-large [class*=" icon-"].pull-left.icon-2x { | |
|
6026 | margin-right: .2em; | |
|
6027 | } | |
|
6028 | .btn.btn-large [class^="icon-"].pull-right.icon-2x, | |
|
6029 | .btn.btn-large [class*=" icon-"].pull-right.icon-2x { | |
|
6030 | margin-left: .2em; | |
|
6031 | } | |
|
6032 | /* Fixes alignment in nav lists */ | |
|
6033 | .nav-list [class^="icon-"], | |
|
6034 | .nav-list [class*=" icon-"] { | |
|
6035 | line-height: inherit; | |
|
6036 | } | |
|
6037 | /* EXTRAS | |
|
6038 | * -------------------------- */ | |
|
6039 | /* Stacked and layered icon */ | |
|
6040 | .icon-stack { | |
|
6041 | position: relative; | |
|
6042 | display: inline-block; | |
|
6043 | width: 2em; | |
|
6044 | height: 2em; | |
|
6045 | line-height: 2em; | |
|
6046 | vertical-align: -35%; | |
|
6047 | } | |
|
6048 | .icon-stack [class^="icon-"], | |
|
6049 | .icon-stack [class*=" icon-"] { | |
|
6050 | display: block; | |
|
6051 | text-align: center; | |
|
6052 | position: absolute; | |
|
6053 | width: 100%; | |
|
6054 | height: 100%; | |
|
6055 | font-size: 1em; | |
|
6056 | line-height: inherit; | |
|
6057 | *line-height: 2em; | |
|
6058 | } | |
|
6059 | .icon-stack .icon-stack-base { | |
|
6060 | font-size: 2em; | |
|
6061 | *line-height: 1em; | |
|
6062 | } | |
|
6063 | /* Animated rotating icon */ | |
|
6064 | .icon-spin { | |
|
6065 | display: inline-block; | |
|
5866 | .fa-spin { | |
|
5867 | -webkit-animation: spin 2s infinite linear; | |
|
6066 | 5868 | -moz-animation: spin 2s infinite linear; |
|
6067 | 5869 | -o-animation: spin 2s infinite linear; |
|
6068 | -webkit-animation: spin 2s infinite linear; | |
|
6069 | 5870 | animation: spin 2s infinite linear; |
|
6070 | 5871 | } |
|
6071 | /* Prevent stack and spinners from being taken inline when inside a link */ | |
|
6072 | a .icon-stack, | |
|
6073 | a .icon-spin { | |
|
6074 | display: inline-block; | |
|
6075 | text-decoration: none; | |
|
6076 | } | |
|
6077 | 5872 | @-moz-keyframes spin { |
|
6078 | 5873 | 0% { |
|
6079 | 5874 | -moz-transform: rotate(0deg); |
@@ -6098,1171 +5893,1463 a .icon-spin { | |||
|
6098 | 5893 | -o-transform: rotate(359deg); |
|
6099 | 5894 | } |
|
6100 | 5895 | } |
|
6101 | @-ms-keyframes spin { | |
|
6102 | 0% { | |
|
6103 | -ms-transform: rotate(0deg); | |
|
6104 | } | |
|
6105 | 100% { | |
|
6106 | -ms-transform: rotate(359deg); | |
|
6107 | } | |
|
6108 | } | |
|
6109 | 5896 | @keyframes spin { |
|
6110 | 5897 | 0% { |
|
5898 | -webkit-transform: rotate(0deg); | |
|
6111 | 5899 | transform: rotate(0deg); |
|
6112 | 5900 | } |
|
6113 | 5901 | 100% { |
|
5902 | -webkit-transform: rotate(359deg); | |
|
6114 | 5903 | transform: rotate(359deg); |
|
6115 | 5904 | } |
|
6116 | 5905 | } |
|
6117 | /* Icon rotations and mirroring */ | |
|
6118 | .icon-rotate-90:before { | |
|
5906 | .fa-rotate-90 { | |
|
5907 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); | |
|
6119 | 5908 | -webkit-transform: rotate(90deg); |
|
6120 | 5909 | -moz-transform: rotate(90deg); |
|
6121 | 5910 | -ms-transform: rotate(90deg); |
|
6122 | 5911 | -o-transform: rotate(90deg); |
|
6123 | 5912 | transform: rotate(90deg); |
|
6124 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); | |
|
6125 | 5913 | } |
|
6126 |
. |
|
|
5914 | .fa-rotate-180 { | |
|
5915 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); | |
|
6127 | 5916 | -webkit-transform: rotate(180deg); |
|
6128 | 5917 | -moz-transform: rotate(180deg); |
|
6129 | 5918 | -ms-transform: rotate(180deg); |
|
6130 | 5919 | -o-transform: rotate(180deg); |
|
6131 | 5920 | transform: rotate(180deg); |
|
6132 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); | |
|
6133 | 5921 | } |
|
6134 |
. |
|
|
5922 | .fa-rotate-270 { | |
|
5923 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); | |
|
6135 | 5924 | -webkit-transform: rotate(270deg); |
|
6136 | 5925 | -moz-transform: rotate(270deg); |
|
6137 | 5926 | -ms-transform: rotate(270deg); |
|
6138 | 5927 | -o-transform: rotate(270deg); |
|
6139 | 5928 | transform: rotate(270deg); |
|
6140 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); | |
|
6141 | 5929 | } |
|
6142 |
. |
|
|
5930 | .fa-flip-horizontal { | |
|
5931 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); | |
|
6143 | 5932 | -webkit-transform: scale(-1, 1); |
|
6144 | 5933 | -moz-transform: scale(-1, 1); |
|
6145 | 5934 | -ms-transform: scale(-1, 1); |
|
6146 | 5935 | -o-transform: scale(-1, 1); |
|
6147 | 5936 | transform: scale(-1, 1); |
|
6148 | 5937 | } |
|
6149 |
. |
|
|
5938 | .fa-flip-vertical { | |
|
5939 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); | |
|
6150 | 5940 | -webkit-transform: scale(1, -1); |
|
6151 | 5941 | -moz-transform: scale(1, -1); |
|
6152 | 5942 | -ms-transform: scale(1, -1); |
|
6153 | 5943 | -o-transform: scale(1, -1); |
|
6154 | 5944 | transform: scale(1, -1); |
|
6155 | 5945 | } |
|
6156 | /* ensure rotation occurs inside anchor tags */ | |
|
6157 | a .icon-rotate-90:before, | |
|
6158 | a .icon-rotate-180:before, | |
|
6159 | a .icon-rotate-270:before, | |
|
6160 | a .icon-flip-horizontal:before, | |
|
6161 | a .icon-flip-vertical:before { | |
|
5946 | .fa-stack { | |
|
5947 | position: relative; | |
|
6162 | 5948 | display: inline-block; |
|
5949 | width: 2em; | |
|
5950 | height: 2em; | |
|
5951 | line-height: 2em; | |
|
5952 | vertical-align: middle; | |
|
5953 | } | |
|
5954 | .fa-stack-1x, | |
|
5955 | .fa-stack-2x { | |
|
5956 | position: absolute; | |
|
5957 | left: 0; | |
|
5958 | width: 100%; | |
|
5959 | text-align: center; | |
|
5960 | } | |
|
5961 | .fa-stack-1x { | |
|
5962 | line-height: inherit; | |
|
5963 | } | |
|
5964 | .fa-stack-2x { | |
|
5965 | font-size: 2em; | |
|
5966 | } | |
|
5967 | .fa-inverse { | |
|
5968 | color: #ffffff; | |
|
6163 | 5969 | } |
|
6164 | 5970 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen |
|
6165 | 5971 | readers do not read off random characters that represent icons */ |
|
6166 |
. |
|
|
5972 | .fa-glass:before { | |
|
6167 | 5973 | content: "\f000"; |
|
6168 | 5974 | } |
|
6169 |
. |
|
|
5975 | .fa-music:before { | |
|
6170 | 5976 | content: "\f001"; |
|
6171 | 5977 | } |
|
6172 |
. |
|
|
5978 | .fa-search:before { | |
|
6173 | 5979 | content: "\f002"; |
|
6174 | 5980 | } |
|
6175 |
. |
|
|
5981 | .fa-envelope-o:before { | |
|
6176 | 5982 | content: "\f003"; |
|
6177 | 5983 | } |
|
6178 |
. |
|
|
5984 | .fa-heart:before { | |
|
6179 | 5985 | content: "\f004"; |
|
6180 | 5986 | } |
|
6181 |
. |
|
|
5987 | .fa-star:before { | |
|
6182 | 5988 | content: "\f005"; |
|
6183 | 5989 | } |
|
6184 |
. |
|
|
5990 | .fa-star-o:before { | |
|
6185 | 5991 | content: "\f006"; |
|
6186 | 5992 | } |
|
6187 |
. |
|
|
5993 | .fa-user:before { | |
|
6188 | 5994 | content: "\f007"; |
|
6189 | 5995 | } |
|
6190 |
. |
|
|
5996 | .fa-film:before { | |
|
6191 | 5997 | content: "\f008"; |
|
6192 | 5998 | } |
|
6193 |
. |
|
|
5999 | .fa-th-large:before { | |
|
6194 | 6000 | content: "\f009"; |
|
6195 | 6001 | } |
|
6196 |
. |
|
|
6002 | .fa-th:before { | |
|
6197 | 6003 | content: "\f00a"; |
|
6198 | 6004 | } |
|
6199 |
. |
|
|
6005 | .fa-th-list:before { | |
|
6200 | 6006 | content: "\f00b"; |
|
6201 | 6007 | } |
|
6202 |
. |
|
|
6008 | .fa-check:before { | |
|
6203 | 6009 | content: "\f00c"; |
|
6204 | 6010 | } |
|
6205 |
.i |
|
|
6011 | .fa-times:before { | |
|
6206 | 6012 | content: "\f00d"; |
|
6207 | 6013 | } |
|
6208 | .icon-zoom-in:before { | |
|
6014 | .fa-search-plus:before { | |
|
6209 | 6015 | content: "\f00e"; |
|
6210 | 6016 | } |
|
6211 | .icon-zoom-out:before { | |
|
6017 | .fa-search-minus:before { | |
|
6212 | 6018 | content: "\f010"; |
|
6213 | 6019 | } |
|
6214 |
. |
|
|
6215 | .icon-off:before { | |
|
6020 | .fa-power-off:before { | |
|
6216 | 6021 | content: "\f011"; |
|
6217 | 6022 | } |
|
6218 |
. |
|
|
6023 | .fa-signal:before { | |
|
6219 | 6024 | content: "\f012"; |
|
6220 | 6025 | } |
|
6221 |
. |
|
|
6222 |
. |
|
|
6026 | .fa-gear:before, | |
|
6027 | .fa-cog:before { | |
|
6223 | 6028 | content: "\f013"; |
|
6224 | 6029 | } |
|
6225 |
. |
|
|
6030 | .fa-trash-o:before { | |
|
6226 | 6031 | content: "\f014"; |
|
6227 | 6032 | } |
|
6228 |
. |
|
|
6033 | .fa-home:before { | |
|
6229 | 6034 | content: "\f015"; |
|
6230 | 6035 | } |
|
6231 |
. |
|
|
6036 | .fa-file-o:before { | |
|
6232 | 6037 | content: "\f016"; |
|
6233 | 6038 | } |
|
6234 |
. |
|
|
6039 | .fa-clock-o:before { | |
|
6235 | 6040 | content: "\f017"; |
|
6236 | 6041 | } |
|
6237 |
. |
|
|
6042 | .fa-road:before { | |
|
6238 | 6043 | content: "\f018"; |
|
6239 | 6044 | } |
|
6240 |
. |
|
|
6045 | .fa-download:before { | |
|
6241 | 6046 | content: "\f019"; |
|
6242 | 6047 | } |
|
6243 |
.ico |
|
|
6048 | .fa-arrow-circle-o-down:before { | |
|
6244 | 6049 | content: "\f01a"; |
|
6245 | 6050 | } |
|
6246 |
.ico |
|
|
6051 | .fa-arrow-circle-o-up:before { | |
|
6247 | 6052 | content: "\f01b"; |
|
6248 | 6053 | } |
|
6249 |
. |
|
|
6054 | .fa-inbox:before { | |
|
6250 | 6055 | content: "\f01c"; |
|
6251 | 6056 | } |
|
6252 |
. |
|
|
6057 | .fa-play-circle-o:before { | |
|
6253 | 6058 | content: "\f01d"; |
|
6254 | 6059 | } |
|
6255 |
. |
|
|
6256 |
. |
|
|
6060 | .fa-rotate-right:before, | |
|
6061 | .fa-repeat:before { | |
|
6257 | 6062 | content: "\f01e"; |
|
6258 | 6063 | } |
|
6259 |
. |
|
|
6064 | .fa-refresh:before { | |
|
6260 | 6065 | content: "\f021"; |
|
6261 | 6066 | } |
|
6262 |
. |
|
|
6067 | .fa-list-alt:before { | |
|
6263 | 6068 | content: "\f022"; |
|
6264 | 6069 | } |
|
6265 |
. |
|
|
6070 | .fa-lock:before { | |
|
6266 | 6071 | content: "\f023"; |
|
6267 | 6072 | } |
|
6268 |
. |
|
|
6073 | .fa-flag:before { | |
|
6269 | 6074 | content: "\f024"; |
|
6270 | 6075 | } |
|
6271 |
. |
|
|
6076 | .fa-headphones:before { | |
|
6272 | 6077 | content: "\f025"; |
|
6273 | 6078 | } |
|
6274 |
. |
|
|
6079 | .fa-volume-off:before { | |
|
6275 | 6080 | content: "\f026"; |
|
6276 | 6081 | } |
|
6277 |
. |
|
|
6082 | .fa-volume-down:before { | |
|
6278 | 6083 | content: "\f027"; |
|
6279 | 6084 | } |
|
6280 |
. |
|
|
6085 | .fa-volume-up:before { | |
|
6281 | 6086 | content: "\f028"; |
|
6282 | 6087 | } |
|
6283 |
. |
|
|
6088 | .fa-qrcode:before { | |
|
6284 | 6089 | content: "\f029"; |
|
6285 | 6090 | } |
|
6286 |
. |
|
|
6091 | .fa-barcode:before { | |
|
6287 | 6092 | content: "\f02a"; |
|
6288 | 6093 | } |
|
6289 |
. |
|
|
6094 | .fa-tag:before { | |
|
6290 | 6095 | content: "\f02b"; |
|
6291 | 6096 | } |
|
6292 |
. |
|
|
6097 | .fa-tags:before { | |
|
6293 | 6098 | content: "\f02c"; |
|
6294 | 6099 | } |
|
6295 |
. |
|
|
6100 | .fa-book:before { | |
|
6296 | 6101 | content: "\f02d"; |
|
6297 | 6102 | } |
|
6298 |
. |
|
|
6103 | .fa-bookmark:before { | |
|
6299 | 6104 | content: "\f02e"; |
|
6300 | 6105 | } |
|
6301 |
. |
|
|
6106 | .fa-print:before { | |
|
6302 | 6107 | content: "\f02f"; |
|
6303 | 6108 | } |
|
6304 |
. |
|
|
6109 | .fa-camera:before { | |
|
6305 | 6110 | content: "\f030"; |
|
6306 | 6111 | } |
|
6307 |
. |
|
|
6112 | .fa-font:before { | |
|
6308 | 6113 | content: "\f031"; |
|
6309 | 6114 | } |
|
6310 |
. |
|
|
6115 | .fa-bold:before { | |
|
6311 | 6116 | content: "\f032"; |
|
6312 | 6117 | } |
|
6313 |
. |
|
|
6118 | .fa-italic:before { | |
|
6314 | 6119 | content: "\f033"; |
|
6315 | 6120 | } |
|
6316 |
. |
|
|
6121 | .fa-text-height:before { | |
|
6317 | 6122 | content: "\f034"; |
|
6318 | 6123 | } |
|
6319 |
. |
|
|
6124 | .fa-text-width:before { | |
|
6320 | 6125 | content: "\f035"; |
|
6321 | 6126 | } |
|
6322 |
. |
|
|
6127 | .fa-align-left:before { | |
|
6323 | 6128 | content: "\f036"; |
|
6324 | 6129 | } |
|
6325 |
. |
|
|
6130 | .fa-align-center:before { | |
|
6326 | 6131 | content: "\f037"; |
|
6327 | 6132 | } |
|
6328 |
. |
|
|
6133 | .fa-align-right:before { | |
|
6329 | 6134 | content: "\f038"; |
|
6330 | 6135 | } |
|
6331 |
. |
|
|
6136 | .fa-align-justify:before { | |
|
6332 | 6137 | content: "\f039"; |
|
6333 | 6138 | } |
|
6334 |
. |
|
|
6139 | .fa-list:before { | |
|
6335 | 6140 | content: "\f03a"; |
|
6336 | 6141 | } |
|
6337 |
. |
|
|
6142 | .fa-dedent:before, | |
|
6143 | .fa-outdent:before { | |
|
6338 | 6144 | content: "\f03b"; |
|
6339 | 6145 | } |
|
6340 |
. |
|
|
6146 | .fa-indent:before { | |
|
6341 | 6147 | content: "\f03c"; |
|
6342 | 6148 | } |
|
6343 |
. |
|
|
6149 | .fa-video-camera:before { | |
|
6344 | 6150 | content: "\f03d"; |
|
6345 | 6151 | } |
|
6346 | .icon-picture:before { | |
|
6152 | .fa-photo:before, | |
|
6153 | .fa-image:before, | |
|
6154 | .fa-picture-o:before { | |
|
6347 | 6155 | content: "\f03e"; |
|
6348 | 6156 | } |
|
6349 |
. |
|
|
6157 | .fa-pencil:before { | |
|
6350 | 6158 | content: "\f040"; |
|
6351 | 6159 | } |
|
6352 |
. |
|
|
6160 | .fa-map-marker:before { | |
|
6353 | 6161 | content: "\f041"; |
|
6354 | 6162 | } |
|
6355 |
. |
|
|
6163 | .fa-adjust:before { | |
|
6356 | 6164 | content: "\f042"; |
|
6357 | 6165 | } |
|
6358 |
. |
|
|
6166 | .fa-tint:before { | |
|
6359 | 6167 | content: "\f043"; |
|
6360 | 6168 | } |
|
6361 |
. |
|
|
6169 | .fa-edit:before, | |
|
6170 | .fa-pencil-square-o:before { | |
|
6362 | 6171 | content: "\f044"; |
|
6363 | 6172 | } |
|
6364 |
. |
|
|
6173 | .fa-share-square-o:before { | |
|
6365 | 6174 | content: "\f045"; |
|
6366 | 6175 | } |
|
6367 |
. |
|
|
6176 | .fa-check-square-o:before { | |
|
6368 | 6177 | content: "\f046"; |
|
6369 | 6178 | } |
|
6370 |
. |
|
|
6179 | .fa-arrows:before { | |
|
6371 | 6180 | content: "\f047"; |
|
6372 | 6181 | } |
|
6373 |
. |
|
|
6182 | .fa-step-backward:before { | |
|
6374 | 6183 | content: "\f048"; |
|
6375 | 6184 | } |
|
6376 |
. |
|
|
6185 | .fa-fast-backward:before { | |
|
6377 | 6186 | content: "\f049"; |
|
6378 | 6187 | } |
|
6379 |
. |
|
|
6188 | .fa-backward:before { | |
|
6380 | 6189 | content: "\f04a"; |
|
6381 | 6190 | } |
|
6382 |
. |
|
|
6191 | .fa-play:before { | |
|
6383 | 6192 | content: "\f04b"; |
|
6384 | 6193 | } |
|
6385 |
. |
|
|
6194 | .fa-pause:before { | |
|
6386 | 6195 | content: "\f04c"; |
|
6387 | 6196 | } |
|
6388 |
. |
|
|
6197 | .fa-stop:before { | |
|
6389 | 6198 | content: "\f04d"; |
|
6390 | 6199 | } |
|
6391 |
. |
|
|
6200 | .fa-forward:before { | |
|
6392 | 6201 | content: "\f04e"; |
|
6393 | 6202 | } |
|
6394 |
. |
|
|
6203 | .fa-fast-forward:before { | |
|
6395 | 6204 | content: "\f050"; |
|
6396 | 6205 | } |
|
6397 |
. |
|
|
6206 | .fa-step-forward:before { | |
|
6398 | 6207 | content: "\f051"; |
|
6399 | 6208 | } |
|
6400 |
. |
|
|
6209 | .fa-eject:before { | |
|
6401 | 6210 | content: "\f052"; |
|
6402 | 6211 | } |
|
6403 |
. |
|
|
6212 | .fa-chevron-left:before { | |
|
6404 | 6213 | content: "\f053"; |
|
6405 | 6214 | } |
|
6406 |
. |
|
|
6215 | .fa-chevron-right:before { | |
|
6407 | 6216 | content: "\f054"; |
|
6408 | 6217 | } |
|
6409 |
. |
|
|
6218 | .fa-plus-circle:before { | |
|
6410 | 6219 | content: "\f055"; |
|
6411 | 6220 | } |
|
6412 |
. |
|
|
6221 | .fa-minus-circle:before { | |
|
6413 | 6222 | content: "\f056"; |
|
6414 | 6223 | } |
|
6415 | .icon-remove-sign:before { | |
|
6224 | .fa-times-circle:before { | |
|
6416 | 6225 | content: "\f057"; |
|
6417 | 6226 | } |
|
6418 |
. |
|
|
6227 | .fa-check-circle:before { | |
|
6419 | 6228 | content: "\f058"; |
|
6420 | 6229 | } |
|
6421 |
. |
|
|
6230 | .fa-question-circle:before { | |
|
6422 | 6231 | content: "\f059"; |
|
6423 | 6232 | } |
|
6424 |
. |
|
|
6233 | .fa-info-circle:before { | |
|
6425 | 6234 | content: "\f05a"; |
|
6426 | 6235 | } |
|
6427 |
. |
|
|
6236 | .fa-crosshairs:before { | |
|
6428 | 6237 | content: "\f05b"; |
|
6429 | 6238 | } |
|
6430 |
. |
|
|
6239 | .fa-times-circle-o:before { | |
|
6431 | 6240 | content: "\f05c"; |
|
6432 | 6241 | } |
|
6433 |
. |
|
|
6242 | .fa-check-circle-o:before { | |
|
6434 | 6243 | content: "\f05d"; |
|
6435 | 6244 | } |
|
6436 |
. |
|
|
6245 | .fa-ban:before { | |
|
6437 | 6246 | content: "\f05e"; |
|
6438 | 6247 | } |
|
6439 |
. |
|
|
6248 | .fa-arrow-left:before { | |
|
6440 | 6249 | content: "\f060"; |
|
6441 | 6250 | } |
|
6442 |
. |
|
|
6251 | .fa-arrow-right:before { | |
|
6443 | 6252 | content: "\f061"; |
|
6444 | 6253 | } |
|
6445 |
. |
|
|
6254 | .fa-arrow-up:before { | |
|
6446 | 6255 | content: "\f062"; |
|
6447 | 6256 | } |
|
6448 |
. |
|
|
6257 | .fa-arrow-down:before { | |
|
6449 | 6258 | content: "\f063"; |
|
6450 | 6259 | } |
|
6451 |
. |
|
|
6452 |
. |
|
|
6260 | .fa-mail-forward:before, | |
|
6261 | .fa-share:before { | |
|
6453 | 6262 | content: "\f064"; |
|
6454 | 6263 | } |
|
6455 | .icon-resize-full:before { | |
|
6264 | .fa-expand:before { | |
|
6456 | 6265 | content: "\f065"; |
|
6457 | 6266 | } |
|
6458 |
. |
|
|
6267 | .fa-compress:before { | |
|
6459 | 6268 | content: "\f066"; |
|
6460 | 6269 | } |
|
6461 |
. |
|
|
6270 | .fa-plus:before { | |
|
6462 | 6271 | content: "\f067"; |
|
6463 | 6272 | } |
|
6464 |
. |
|
|
6273 | .fa-minus:before { | |
|
6465 | 6274 | content: "\f068"; |
|
6466 | 6275 | } |
|
6467 |
. |
|
|
6276 | .fa-asterisk:before { | |
|
6468 | 6277 | content: "\f069"; |
|
6469 | 6278 | } |
|
6470 |
. |
|
|
6279 | .fa-exclamation-circle:before { | |
|
6471 | 6280 | content: "\f06a"; |
|
6472 | 6281 | } |
|
6473 |
. |
|
|
6282 | .fa-gift:before { | |
|
6474 | 6283 | content: "\f06b"; |
|
6475 | 6284 | } |
|
6476 |
. |
|
|
6285 | .fa-leaf:before { | |
|
6477 | 6286 | content: "\f06c"; |
|
6478 | 6287 | } |
|
6479 |
. |
|
|
6288 | .fa-fire:before { | |
|
6480 | 6289 | content: "\f06d"; |
|
6481 | 6290 | } |
|
6482 |
. |
|
|
6291 | .fa-eye:before { | |
|
6483 | 6292 | content: "\f06e"; |
|
6484 | 6293 | } |
|
6485 |
. |
|
|
6294 | .fa-eye-slash:before { | |
|
6486 | 6295 | content: "\f070"; |
|
6487 | 6296 | } |
|
6488 |
. |
|
|
6297 | .fa-warning:before, | |
|
6298 | .fa-exclamation-triangle:before { | |
|
6489 | 6299 | content: "\f071"; |
|
6490 | 6300 | } |
|
6491 |
. |
|
|
6301 | .fa-plane:before { | |
|
6492 | 6302 | content: "\f072"; |
|
6493 | 6303 | } |
|
6494 |
. |
|
|
6304 | .fa-calendar:before { | |
|
6495 | 6305 | content: "\f073"; |
|
6496 | 6306 | } |
|
6497 |
. |
|
|
6307 | .fa-random:before { | |
|
6498 | 6308 | content: "\f074"; |
|
6499 | 6309 | } |
|
6500 |
. |
|
|
6310 | .fa-comment:before { | |
|
6501 | 6311 | content: "\f075"; |
|
6502 | 6312 | } |
|
6503 |
. |
|
|
6313 | .fa-magnet:before { | |
|
6504 | 6314 | content: "\f076"; |
|
6505 | 6315 | } |
|
6506 |
. |
|
|
6316 | .fa-chevron-up:before { | |
|
6507 | 6317 | content: "\f077"; |
|
6508 | 6318 | } |
|
6509 |
. |
|
|
6319 | .fa-chevron-down:before { | |
|
6510 | 6320 | content: "\f078"; |
|
6511 | 6321 | } |
|
6512 |
. |
|
|
6322 | .fa-retweet:before { | |
|
6513 | 6323 | content: "\f079"; |
|
6514 | 6324 | } |
|
6515 |
. |
|
|
6325 | .fa-shopping-cart:before { | |
|
6516 | 6326 | content: "\f07a"; |
|
6517 | 6327 | } |
|
6518 |
. |
|
|
6328 | .fa-folder:before { | |
|
6519 | 6329 | content: "\f07b"; |
|
6520 | 6330 | } |
|
6521 |
. |
|
|
6331 | .fa-folder-open:before { | |
|
6522 | 6332 | content: "\f07c"; |
|
6523 | 6333 | } |
|
6524 | .icon-resize-vertical:before { | |
|
6334 | .fa-arrows-v:before { | |
|
6525 | 6335 | content: "\f07d"; |
|
6526 | 6336 | } |
|
6527 | .icon-resize-horizontal:before { | |
|
6337 | .fa-arrows-h:before { | |
|
6528 | 6338 | content: "\f07e"; |
|
6529 | 6339 | } |
|
6530 |
. |
|
|
6340 | .fa-bar-chart-o:before { | |
|
6531 | 6341 | content: "\f080"; |
|
6532 | 6342 | } |
|
6533 |
. |
|
|
6343 | .fa-twitter-square:before { | |
|
6534 | 6344 | content: "\f081"; |
|
6535 | 6345 | } |
|
6536 |
. |
|
|
6346 | .fa-facebook-square:before { | |
|
6537 | 6347 | content: "\f082"; |
|
6538 | 6348 | } |
|
6539 |
. |
|
|
6349 | .fa-camera-retro:before { | |
|
6540 | 6350 | content: "\f083"; |
|
6541 | 6351 | } |
|
6542 |
. |
|
|
6352 | .fa-key:before { | |
|
6543 | 6353 | content: "\f084"; |
|
6544 | 6354 | } |
|
6545 |
. |
|
|
6546 |
. |
|
|
6355 | .fa-gears:before, | |
|
6356 | .fa-cogs:before { | |
|
6547 | 6357 | content: "\f085"; |
|
6548 | 6358 | } |
|
6549 |
. |
|
|
6359 | .fa-comments:before { | |
|
6550 | 6360 | content: "\f086"; |
|
6551 | 6361 | } |
|
6552 |
. |
|
|
6362 | .fa-thumbs-o-up:before { | |
|
6553 | 6363 | content: "\f087"; |
|
6554 | 6364 | } |
|
6555 |
. |
|
|
6365 | .fa-thumbs-o-down:before { | |
|
6556 | 6366 | content: "\f088"; |
|
6557 | 6367 | } |
|
6558 |
. |
|
|
6368 | .fa-star-half:before { | |
|
6559 | 6369 | content: "\f089"; |
|
6560 | 6370 | } |
|
6561 |
. |
|
|
6371 | .fa-heart-o:before { | |
|
6562 | 6372 | content: "\f08a"; |
|
6563 | 6373 | } |
|
6564 |
. |
|
|
6374 | .fa-sign-out:before { | |
|
6565 | 6375 | content: "\f08b"; |
|
6566 | 6376 | } |
|
6567 |
. |
|
|
6377 | .fa-linkedin-square:before { | |
|
6568 | 6378 | content: "\f08c"; |
|
6569 | 6379 | } |
|
6570 | .icon-pushpin:before { | |
|
6380 | .fa-thumb-tack:before { | |
|
6571 | 6381 | content: "\f08d"; |
|
6572 | 6382 | } |
|
6573 |
. |
|
|
6383 | .fa-external-link:before { | |
|
6574 | 6384 | content: "\f08e"; |
|
6575 | 6385 | } |
|
6576 |
. |
|
|
6386 | .fa-sign-in:before { | |
|
6577 | 6387 | content: "\f090"; |
|
6578 | 6388 | } |
|
6579 |
. |
|
|
6389 | .fa-trophy:before { | |
|
6580 | 6390 | content: "\f091"; |
|
6581 | 6391 | } |
|
6582 |
. |
|
|
6392 | .fa-github-square:before { | |
|
6583 | 6393 | content: "\f092"; |
|
6584 | 6394 | } |
|
6585 |
. |
|
|
6395 | .fa-upload:before { | |
|
6586 | 6396 | content: "\f093"; |
|
6587 | 6397 | } |
|
6588 |
. |
|
|
6398 | .fa-lemon-o:before { | |
|
6589 | 6399 | content: "\f094"; |
|
6590 | 6400 | } |
|
6591 |
. |
|
|
6401 | .fa-phone:before { | |
|
6592 | 6402 | content: "\f095"; |
|
6593 | 6403 | } |
|
6594 | .icon-unchecked:before, | |
|
6595 | .icon-check-empty:before { | |
|
6404 | .fa-square-o:before { | |
|
6596 | 6405 | content: "\f096"; |
|
6597 | 6406 | } |
|
6598 |
. |
|
|
6407 | .fa-bookmark-o:before { | |
|
6599 | 6408 | content: "\f097"; |
|
6600 | 6409 | } |
|
6601 |
. |
|
|
6410 | .fa-phone-square:before { | |
|
6602 | 6411 | content: "\f098"; |
|
6603 | 6412 | } |
|
6604 |
. |
|
|
6413 | .fa-twitter:before { | |
|
6605 | 6414 | content: "\f099"; |
|
6606 | 6415 | } |
|
6607 |
. |
|
|
6416 | .fa-facebook:before { | |
|
6608 | 6417 | content: "\f09a"; |
|
6609 | 6418 | } |
|
6610 |
. |
|
|
6419 | .fa-github:before { | |
|
6611 | 6420 | content: "\f09b"; |
|
6612 | 6421 | } |
|
6613 |
. |
|
|
6422 | .fa-unlock:before { | |
|
6614 | 6423 | content: "\f09c"; |
|
6615 | 6424 | } |
|
6616 |
. |
|
|
6425 | .fa-credit-card:before { | |
|
6617 | 6426 | content: "\f09d"; |
|
6618 | 6427 | } |
|
6619 |
. |
|
|
6428 | .fa-rss:before { | |
|
6620 | 6429 | content: "\f09e"; |
|
6621 | 6430 | } |
|
6622 |
. |
|
|
6431 | .fa-hdd-o:before { | |
|
6623 | 6432 | content: "\f0a0"; |
|
6624 | 6433 | } |
|
6625 |
. |
|
|
6434 | .fa-bullhorn:before { | |
|
6626 | 6435 | content: "\f0a1"; |
|
6627 | 6436 | } |
|
6628 |
. |
|
|
6629 |
content: "\f0 |
|
|
6437 | .fa-bell:before { | |
|
6438 | content: "\f0f3"; | |
|
6630 | 6439 | } |
|
6631 |
. |
|
|
6440 | .fa-certificate:before { | |
|
6632 | 6441 | content: "\f0a3"; |
|
6633 | 6442 | } |
|
6634 |
. |
|
|
6443 | .fa-hand-o-right:before { | |
|
6635 | 6444 | content: "\f0a4"; |
|
6636 | 6445 | } |
|
6637 |
. |
|
|
6446 | .fa-hand-o-left:before { | |
|
6638 | 6447 | content: "\f0a5"; |
|
6639 | 6448 | } |
|
6640 |
. |
|
|
6449 | .fa-hand-o-up:before { | |
|
6641 | 6450 | content: "\f0a6"; |
|
6642 | 6451 | } |
|
6643 |
. |
|
|
6452 | .fa-hand-o-down:before { | |
|
6644 | 6453 | content: "\f0a7"; |
|
6645 | 6454 | } |
|
6646 |
. |
|
|
6455 | .fa-arrow-circle-left:before { | |
|
6647 | 6456 | content: "\f0a8"; |
|
6648 | 6457 | } |
|
6649 |
. |
|
|
6458 | .fa-arrow-circle-right:before { | |
|
6650 | 6459 | content: "\f0a9"; |
|
6651 | 6460 | } |
|
6652 |
. |
|
|
6461 | .fa-arrow-circle-up:before { | |
|
6653 | 6462 | content: "\f0aa"; |
|
6654 | 6463 | } |
|
6655 |
. |
|
|
6464 | .fa-arrow-circle-down:before { | |
|
6656 | 6465 | content: "\f0ab"; |
|
6657 | 6466 | } |
|
6658 |
. |
|
|
6467 | .fa-globe:before { | |
|
6659 | 6468 | content: "\f0ac"; |
|
6660 | 6469 | } |
|
6661 |
. |
|
|
6470 | .fa-wrench:before { | |
|
6662 | 6471 | content: "\f0ad"; |
|
6663 | 6472 | } |
|
6664 |
. |
|
|
6473 | .fa-tasks:before { | |
|
6665 | 6474 | content: "\f0ae"; |
|
6666 | 6475 | } |
|
6667 |
. |
|
|
6476 | .fa-filter:before { | |
|
6668 | 6477 | content: "\f0b0"; |
|
6669 | 6478 | } |
|
6670 |
. |
|
|
6479 | .fa-briefcase:before { | |
|
6671 | 6480 | content: "\f0b1"; |
|
6672 | 6481 | } |
|
6673 | .icon-fullscreen:before { | |
|
6482 | .fa-arrows-alt:before { | |
|
6674 | 6483 | content: "\f0b2"; |
|
6675 | 6484 | } |
|
6676 |
. |
|
|
6485 | .fa-group:before, | |
|
6486 | .fa-users:before { | |
|
6677 | 6487 | content: "\f0c0"; |
|
6678 | 6488 | } |
|
6679 |
. |
|
|
6489 | .fa-chain:before, | |
|
6490 | .fa-link:before { | |
|
6680 | 6491 | content: "\f0c1"; |
|
6681 | 6492 | } |
|
6682 |
. |
|
|
6493 | .fa-cloud:before { | |
|
6683 | 6494 | content: "\f0c2"; |
|
6684 | 6495 | } |
|
6685 |
. |
|
|
6496 | .fa-flask:before { | |
|
6686 | 6497 | content: "\f0c3"; |
|
6687 | 6498 | } |
|
6688 |
. |
|
|
6499 | .fa-cut:before, | |
|
6500 | .fa-scissors:before { | |
|
6689 | 6501 | content: "\f0c4"; |
|
6690 | 6502 | } |
|
6691 |
. |
|
|
6503 | .fa-copy:before, | |
|
6504 | .fa-files-o:before { | |
|
6692 | 6505 | content: "\f0c5"; |
|
6693 | 6506 | } |
|
6694 |
. |
|
|
6695 | .icon-paper-clip:before { | |
|
6507 | .fa-paperclip:before { | |
|
6696 | 6508 | content: "\f0c6"; |
|
6697 | 6509 | } |
|
6698 |
. |
|
|
6510 | .fa-save:before, | |
|
6511 | .fa-floppy-o:before { | |
|
6699 | 6512 | content: "\f0c7"; |
|
6700 | 6513 | } |
|
6701 |
. |
|
|
6514 | .fa-square:before { | |
|
6702 | 6515 | content: "\f0c8"; |
|
6703 | 6516 | } |
|
6704 |
.icon |
|
|
6517 | .fa-navicon:before, | |
|
6518 | .fa-reorder:before, | |
|
6519 | .fa-bars:before { | |
|
6705 | 6520 | content: "\f0c9"; |
|
6706 | 6521 | } |
|
6707 |
. |
|
|
6522 | .fa-list-ul:before { | |
|
6708 | 6523 | content: "\f0ca"; |
|
6709 | 6524 | } |
|
6710 |
. |
|
|
6525 | .fa-list-ol:before { | |
|
6711 | 6526 | content: "\f0cb"; |
|
6712 | 6527 | } |
|
6713 |
. |
|
|
6528 | .fa-strikethrough:before { | |
|
6714 | 6529 | content: "\f0cc"; |
|
6715 | 6530 | } |
|
6716 |
. |
|
|
6531 | .fa-underline:before { | |
|
6717 | 6532 | content: "\f0cd"; |
|
6718 | 6533 | } |
|
6719 |
. |
|
|
6534 | .fa-table:before { | |
|
6720 | 6535 | content: "\f0ce"; |
|
6721 | 6536 | } |
|
6722 |
. |
|
|
6537 | .fa-magic:before { | |
|
6723 | 6538 | content: "\f0d0"; |
|
6724 | 6539 | } |
|
6725 |
. |
|
|
6540 | .fa-truck:before { | |
|
6726 | 6541 | content: "\f0d1"; |
|
6727 | 6542 | } |
|
6728 |
. |
|
|
6543 | .fa-pinterest:before { | |
|
6729 | 6544 | content: "\f0d2"; |
|
6730 | 6545 | } |
|
6731 |
. |
|
|
6546 | .fa-pinterest-square:before { | |
|
6732 | 6547 | content: "\f0d3"; |
|
6733 | 6548 | } |
|
6734 |
. |
|
|
6549 | .fa-google-plus-square:before { | |
|
6735 | 6550 | content: "\f0d4"; |
|
6736 | 6551 | } |
|
6737 |
. |
|
|
6552 | .fa-google-plus:before { | |
|
6738 | 6553 | content: "\f0d5"; |
|
6739 | 6554 | } |
|
6740 |
. |
|
|
6555 | .fa-money:before { | |
|
6741 | 6556 | content: "\f0d6"; |
|
6742 | 6557 | } |
|
6743 |
. |
|
|
6558 | .fa-caret-down:before { | |
|
6744 | 6559 | content: "\f0d7"; |
|
6745 | 6560 | } |
|
6746 |
. |
|
|
6561 | .fa-caret-up:before { | |
|
6747 | 6562 | content: "\f0d8"; |
|
6748 | 6563 | } |
|
6749 |
. |
|
|
6564 | .fa-caret-left:before { | |
|
6750 | 6565 | content: "\f0d9"; |
|
6751 | 6566 | } |
|
6752 |
. |
|
|
6567 | .fa-caret-right:before { | |
|
6753 | 6568 | content: "\f0da"; |
|
6754 | 6569 | } |
|
6755 |
. |
|
|
6570 | .fa-columns:before { | |
|
6756 | 6571 | content: "\f0db"; |
|
6757 | 6572 | } |
|
6758 |
. |
|
|
6573 | .fa-unsorted:before, | |
|
6574 | .fa-sort:before { | |
|
6759 | 6575 | content: "\f0dc"; |
|
6760 | 6576 | } |
|
6761 |
. |
|
|
6577 | .fa-sort-down:before, | |
|
6578 | .fa-sort-desc:before { | |
|
6762 | 6579 | content: "\f0dd"; |
|
6763 | 6580 | } |
|
6764 |
. |
|
|
6581 | .fa-sort-up:before, | |
|
6582 | .fa-sort-asc:before { | |
|
6765 | 6583 | content: "\f0de"; |
|
6766 | 6584 | } |
|
6767 |
. |
|
|
6585 | .fa-envelope:before { | |
|
6768 | 6586 | content: "\f0e0"; |
|
6769 | 6587 | } |
|
6770 |
. |
|
|
6588 | .fa-linkedin:before { | |
|
6771 | 6589 | content: "\f0e1"; |
|
6772 | 6590 | } |
|
6773 |
. |
|
|
6774 |
. |
|
|
6591 | .fa-rotate-left:before, | |
|
6592 | .fa-undo:before { | |
|
6775 | 6593 | content: "\f0e2"; |
|
6776 | 6594 | } |
|
6777 |
. |
|
|
6595 | .fa-legal:before, | |
|
6596 | .fa-gavel:before { | |
|
6778 | 6597 | content: "\f0e3"; |
|
6779 | 6598 | } |
|
6780 |
. |
|
|
6599 | .fa-dashboard:before, | |
|
6600 | .fa-tachometer:before { | |
|
6781 | 6601 | content: "\f0e4"; |
|
6782 | 6602 | } |
|
6783 |
. |
|
|
6603 | .fa-comment-o:before { | |
|
6784 | 6604 | content: "\f0e5"; |
|
6785 | 6605 | } |
|
6786 |
. |
|
|
6606 | .fa-comments-o:before { | |
|
6787 | 6607 | content: "\f0e6"; |
|
6788 | 6608 | } |
|
6789 | .icon-bolt:before { | |
|
6609 | .fa-flash:before, | |
|
6610 | .fa-bolt:before { | |
|
6790 | 6611 | content: "\f0e7"; |
|
6791 | 6612 | } |
|
6792 |
. |
|
|
6613 | .fa-sitemap:before { | |
|
6793 | 6614 | content: "\f0e8"; |
|
6794 | 6615 | } |
|
6795 |
. |
|
|
6616 | .fa-umbrella:before { | |
|
6796 | 6617 | content: "\f0e9"; |
|
6797 | 6618 | } |
|
6798 |
. |
|
|
6619 | .fa-paste:before, | |
|
6620 | .fa-clipboard:before { | |
|
6799 | 6621 | content: "\f0ea"; |
|
6800 | 6622 | } |
|
6801 |
. |
|
|
6623 | .fa-lightbulb-o:before { | |
|
6802 | 6624 | content: "\f0eb"; |
|
6803 | 6625 | } |
|
6804 |
. |
|
|
6626 | .fa-exchange:before { | |
|
6805 | 6627 | content: "\f0ec"; |
|
6806 | 6628 | } |
|
6807 |
. |
|
|
6629 | .fa-cloud-download:before { | |
|
6808 | 6630 | content: "\f0ed"; |
|
6809 | 6631 | } |
|
6810 |
. |
|
|
6632 | .fa-cloud-upload:before { | |
|
6811 | 6633 | content: "\f0ee"; |
|
6812 | 6634 | } |
|
6813 |
. |
|
|
6635 | .fa-user-md:before { | |
|
6814 | 6636 | content: "\f0f0"; |
|
6815 | 6637 | } |
|
6816 |
. |
|
|
6638 | .fa-stethoscope:before { | |
|
6817 | 6639 | content: "\f0f1"; |
|
6818 | 6640 | } |
|
6819 |
. |
|
|
6641 | .fa-suitcase:before { | |
|
6820 | 6642 | content: "\f0f2"; |
|
6821 | 6643 | } |
|
6822 |
. |
|
|
6823 |
content: "\f0 |
|
|
6644 | .fa-bell-o:before { | |
|
6645 | content: "\f0a2"; | |
|
6824 | 6646 | } |
|
6825 |
. |
|
|
6647 | .fa-coffee:before { | |
|
6826 | 6648 | content: "\f0f4"; |
|
6827 | 6649 | } |
|
6828 | .icon-food:before { | |
|
6650 | .fa-cutlery:before { | |
|
6829 | 6651 | content: "\f0f5"; |
|
6830 | 6652 | } |
|
6831 |
. |
|
|
6653 | .fa-file-text-o:before { | |
|
6832 | 6654 | content: "\f0f6"; |
|
6833 | 6655 | } |
|
6834 |
. |
|
|
6656 | .fa-building-o:before { | |
|
6835 | 6657 | content: "\f0f7"; |
|
6836 | 6658 | } |
|
6837 |
. |
|
|
6659 | .fa-hospital-o:before { | |
|
6838 | 6660 | content: "\f0f8"; |
|
6839 | 6661 | } |
|
6840 |
. |
|
|
6662 | .fa-ambulance:before { | |
|
6841 | 6663 | content: "\f0f9"; |
|
6842 | 6664 | } |
|
6843 |
. |
|
|
6665 | .fa-medkit:before { | |
|
6844 | 6666 | content: "\f0fa"; |
|
6845 | 6667 | } |
|
6846 |
. |
|
|
6668 | .fa-fighter-jet:before { | |
|
6847 | 6669 | content: "\f0fb"; |
|
6848 | 6670 | } |
|
6849 |
. |
|
|
6671 | .fa-beer:before { | |
|
6850 | 6672 | content: "\f0fc"; |
|
6851 | 6673 | } |
|
6852 |
. |
|
|
6674 | .fa-h-square:before { | |
|
6853 | 6675 | content: "\f0fd"; |
|
6854 | 6676 | } |
|
6855 |
. |
|
|
6677 | .fa-plus-square:before { | |
|
6856 | 6678 | content: "\f0fe"; |
|
6857 | 6679 | } |
|
6858 |
. |
|
|
6680 | .fa-angle-double-left:before { | |
|
6859 | 6681 | content: "\f100"; |
|
6860 | 6682 | } |
|
6861 |
. |
|
|
6683 | .fa-angle-double-right:before { | |
|
6862 | 6684 | content: "\f101"; |
|
6863 | 6685 | } |
|
6864 |
. |
|
|
6686 | .fa-angle-double-up:before { | |
|
6865 | 6687 | content: "\f102"; |
|
6866 | 6688 | } |
|
6867 |
. |
|
|
6689 | .fa-angle-double-down:before { | |
|
6868 | 6690 | content: "\f103"; |
|
6869 | 6691 | } |
|
6870 |
. |
|
|
6692 | .fa-angle-left:before { | |
|
6871 | 6693 | content: "\f104"; |
|
6872 | 6694 | } |
|
6873 |
. |
|
|
6695 | .fa-angle-right:before { | |
|
6874 | 6696 | content: "\f105"; |
|
6875 | 6697 | } |
|
6876 |
. |
|
|
6698 | .fa-angle-up:before { | |
|
6877 | 6699 | content: "\f106"; |
|
6878 | 6700 | } |
|
6879 |
. |
|
|
6701 | .fa-angle-down:before { | |
|
6880 | 6702 | content: "\f107"; |
|
6881 | 6703 | } |
|
6882 |
. |
|
|
6704 | .fa-desktop:before { | |
|
6883 | 6705 | content: "\f108"; |
|
6884 | 6706 | } |
|
6885 |
. |
|
|
6707 | .fa-laptop:before { | |
|
6886 | 6708 | content: "\f109"; |
|
6887 | 6709 | } |
|
6888 |
. |
|
|
6710 | .fa-tablet:before { | |
|
6889 | 6711 | content: "\f10a"; |
|
6890 | 6712 | } |
|
6891 |
. |
|
|
6713 | .fa-mobile-phone:before, | |
|
6714 | .fa-mobile:before { | |
|
6892 | 6715 | content: "\f10b"; |
|
6893 | 6716 | } |
|
6894 |
. |
|
|
6717 | .fa-circle-o:before { | |
|
6895 | 6718 | content: "\f10c"; |
|
6896 | 6719 | } |
|
6897 |
. |
|
|
6720 | .fa-quote-left:before { | |
|
6898 | 6721 | content: "\f10d"; |
|
6899 | 6722 | } |
|
6900 |
. |
|
|
6723 | .fa-quote-right:before { | |
|
6901 | 6724 | content: "\f10e"; |
|
6902 | 6725 | } |
|
6903 |
. |
|
|
6726 | .fa-spinner:before { | |
|
6904 | 6727 | content: "\f110"; |
|
6905 | 6728 | } |
|
6906 |
. |
|
|
6729 | .fa-circle:before { | |
|
6907 | 6730 | content: "\f111"; |
|
6908 | 6731 | } |
|
6909 |
. |
|
|
6910 |
. |
|
|
6732 | .fa-mail-reply:before, | |
|
6733 | .fa-reply:before { | |
|
6911 | 6734 | content: "\f112"; |
|
6912 | 6735 | } |
|
6913 |
. |
|
|
6736 | .fa-github-alt:before { | |
|
6914 | 6737 | content: "\f113"; |
|
6915 | 6738 | } |
|
6916 |
. |
|
|
6739 | .fa-folder-o:before { | |
|
6917 | 6740 | content: "\f114"; |
|
6918 | 6741 | } |
|
6919 |
. |
|
|
6742 | .fa-folder-open-o:before { | |
|
6920 | 6743 | content: "\f115"; |
|
6921 | 6744 | } |
|
6922 | .icon-expand-alt:before { | |
|
6923 | content: "\f116"; | |
|
6924 | } | |
|
6925 | .icon-collapse-alt:before { | |
|
6926 | content: "\f117"; | |
|
6927 | } | |
|
6928 | .icon-smile:before { | |
|
6745 | .fa-smile-o:before { | |
|
6929 | 6746 | content: "\f118"; |
|
6930 | 6747 | } |
|
6931 |
. |
|
|
6748 | .fa-frown-o:before { | |
|
6932 | 6749 | content: "\f119"; |
|
6933 | 6750 | } |
|
6934 |
. |
|
|
6751 | .fa-meh-o:before { | |
|
6935 | 6752 | content: "\f11a"; |
|
6936 | 6753 | } |
|
6937 |
. |
|
|
6754 | .fa-gamepad:before { | |
|
6938 | 6755 | content: "\f11b"; |
|
6939 | 6756 | } |
|
6940 |
. |
|
|
6757 | .fa-keyboard-o:before { | |
|
6941 | 6758 | content: "\f11c"; |
|
6942 | 6759 | } |
|
6943 |
. |
|
|
6760 | .fa-flag-o:before { | |
|
6944 | 6761 | content: "\f11d"; |
|
6945 | 6762 | } |
|
6946 |
. |
|
|
6763 | .fa-flag-checkered:before { | |
|
6947 | 6764 | content: "\f11e"; |
|
6948 | 6765 | } |
|
6949 |
. |
|
|
6766 | .fa-terminal:before { | |
|
6950 | 6767 | content: "\f120"; |
|
6951 | 6768 | } |
|
6952 |
. |
|
|
6769 | .fa-code:before { | |
|
6953 | 6770 | content: "\f121"; |
|
6954 | 6771 | } |
|
6955 |
. |
|
|
6772 | .fa-mail-reply-all:before, | |
|
6773 | .fa-reply-all:before { | |
|
6956 | 6774 | content: "\f122"; |
|
6957 | 6775 | } |
|
6958 | .icon-mail-reply-all:before { | |
|
6959 | content: "\f122"; | |
|
6960 | } | |
|
6961 | .icon-star-half-full:before, | |
|
6962 | .icon-star-half-empty:before { | |
|
6776 | .fa-star-half-empty:before, | |
|
6777 | .fa-star-half-full:before, | |
|
6778 | .fa-star-half-o:before { | |
|
6963 | 6779 | content: "\f123"; |
|
6964 | 6780 | } |
|
6965 |
. |
|
|
6781 | .fa-location-arrow:before { | |
|
6966 | 6782 | content: "\f124"; |
|
6967 | 6783 | } |
|
6968 |
. |
|
|
6784 | .fa-crop:before { | |
|
6969 | 6785 | content: "\f125"; |
|
6970 | 6786 | } |
|
6971 |
. |
|
|
6787 | .fa-code-fork:before { | |
|
6972 | 6788 | content: "\f126"; |
|
6973 | 6789 | } |
|
6974 |
. |
|
|
6790 | .fa-unlink:before, | |
|
6791 | .fa-chain-broken:before { | |
|
6975 | 6792 | content: "\f127"; |
|
6976 | 6793 | } |
|
6977 |
. |
|
|
6794 | .fa-question:before { | |
|
6978 | 6795 | content: "\f128"; |
|
6979 | 6796 | } |
|
6980 |
. |
|
|
6797 | .fa-info:before { | |
|
6981 | 6798 | content: "\f129"; |
|
6982 | 6799 | } |
|
6983 |
. |
|
|
6800 | .fa-exclamation:before { | |
|
6984 | 6801 | content: "\f12a"; |
|
6985 | 6802 | } |
|
6986 |
. |
|
|
6803 | .fa-superscript:before { | |
|
6987 | 6804 | content: "\f12b"; |
|
6988 | 6805 | } |
|
6989 |
. |
|
|
6806 | .fa-subscript:before { | |
|
6990 | 6807 | content: "\f12c"; |
|
6991 | 6808 | } |
|
6992 |
. |
|
|
6809 | .fa-eraser:before { | |
|
6993 | 6810 | content: "\f12d"; |
|
6994 | 6811 | } |
|
6995 |
. |
|
|
6812 | .fa-puzzle-piece:before { | |
|
6996 | 6813 | content: "\f12e"; |
|
6997 | 6814 | } |
|
6998 |
. |
|
|
6815 | .fa-microphone:before { | |
|
6999 | 6816 | content: "\f130"; |
|
7000 | 6817 | } |
|
7001 |
. |
|
|
6818 | .fa-microphone-slash:before { | |
|
7002 | 6819 | content: "\f131"; |
|
7003 | 6820 | } |
|
7004 |
. |
|
|
6821 | .fa-shield:before { | |
|
7005 | 6822 | content: "\f132"; |
|
7006 | 6823 | } |
|
7007 |
. |
|
|
6824 | .fa-calendar-o:before { | |
|
7008 | 6825 | content: "\f133"; |
|
7009 | 6826 | } |
|
7010 |
. |
|
|
6827 | .fa-fire-extinguisher:before { | |
|
7011 | 6828 | content: "\f134"; |
|
7012 | 6829 | } |
|
7013 |
. |
|
|
6830 | .fa-rocket:before { | |
|
7014 | 6831 | content: "\f135"; |
|
7015 | 6832 | } |
|
7016 |
. |
|
|
6833 | .fa-maxcdn:before { | |
|
7017 | 6834 | content: "\f136"; |
|
7018 | 6835 | } |
|
7019 |
. |
|
|
6836 | .fa-chevron-circle-left:before { | |
|
7020 | 6837 | content: "\f137"; |
|
7021 | 6838 | } |
|
7022 |
. |
|
|
6839 | .fa-chevron-circle-right:before { | |
|
7023 | 6840 | content: "\f138"; |
|
7024 | 6841 | } |
|
7025 |
. |
|
|
6842 | .fa-chevron-circle-up:before { | |
|
7026 | 6843 | content: "\f139"; |
|
7027 | 6844 | } |
|
7028 |
. |
|
|
6845 | .fa-chevron-circle-down:before { | |
|
7029 | 6846 | content: "\f13a"; |
|
7030 | 6847 | } |
|
7031 |
. |
|
|
6848 | .fa-html5:before { | |
|
7032 | 6849 | content: "\f13b"; |
|
7033 | 6850 | } |
|
7034 |
. |
|
|
6851 | .fa-css3:before { | |
|
7035 | 6852 | content: "\f13c"; |
|
7036 | 6853 | } |
|
7037 |
. |
|
|
6854 | .fa-anchor:before { | |
|
7038 | 6855 | content: "\f13d"; |
|
7039 | 6856 | } |
|
7040 |
. |
|
|
6857 | .fa-unlock-alt:before { | |
|
7041 | 6858 | content: "\f13e"; |
|
7042 | 6859 | } |
|
7043 |
. |
|
|
6860 | .fa-bullseye:before { | |
|
7044 | 6861 | content: "\f140"; |
|
7045 | 6862 | } |
|
7046 |
. |
|
|
6863 | .fa-ellipsis-h:before { | |
|
7047 | 6864 | content: "\f141"; |
|
7048 | 6865 | } |
|
7049 |
. |
|
|
6866 | .fa-ellipsis-v:before { | |
|
7050 | 6867 | content: "\f142"; |
|
7051 | 6868 | } |
|
7052 |
. |
|
|
6869 | .fa-rss-square:before { | |
|
7053 | 6870 | content: "\f143"; |
|
7054 | 6871 | } |
|
7055 |
. |
|
|
6872 | .fa-play-circle:before { | |
|
7056 | 6873 | content: "\f144"; |
|
7057 | 6874 | } |
|
7058 |
. |
|
|
6875 | .fa-ticket:before { | |
|
7059 | 6876 | content: "\f145"; |
|
7060 | 6877 | } |
|
7061 |
. |
|
|
6878 | .fa-minus-square:before { | |
|
7062 | 6879 | content: "\f146"; |
|
7063 | 6880 | } |
|
7064 |
. |
|
|
6881 | .fa-minus-square-o:before { | |
|
7065 | 6882 | content: "\f147"; |
|
7066 | 6883 | } |
|
7067 |
. |
|
|
6884 | .fa-level-up:before { | |
|
7068 | 6885 | content: "\f148"; |
|
7069 | 6886 | } |
|
7070 |
. |
|
|
6887 | .fa-level-down:before { | |
|
7071 | 6888 | content: "\f149"; |
|
7072 | 6889 | } |
|
7073 |
. |
|
|
6890 | .fa-check-square:before { | |
|
7074 | 6891 | content: "\f14a"; |
|
7075 | 6892 | } |
|
7076 | .icon-edit-sign:before { | |
|
6893 | .fa-pencil-square:before { | |
|
7077 | 6894 | content: "\f14b"; |
|
7078 | 6895 | } |
|
7079 |
. |
|
|
6896 | .fa-external-link-square:before { | |
|
7080 | 6897 | content: "\f14c"; |
|
7081 | 6898 | } |
|
7082 |
. |
|
|
6899 | .fa-share-square:before { | |
|
7083 | 6900 | content: "\f14d"; |
|
7084 | 6901 | } |
|
7085 |
. |
|
|
6902 | .fa-compass:before { | |
|
7086 | 6903 | content: "\f14e"; |
|
7087 | 6904 | } |
|
7088 | .icon-collapse:before { | |
|
6905 | .fa-toggle-down:before, | |
|
6906 | .fa-caret-square-o-down:before { | |
|
7089 | 6907 | content: "\f150"; |
|
7090 | 6908 | } |
|
7091 | .icon-collapse-top:before { | |
|
6909 | .fa-toggle-up:before, | |
|
6910 | .fa-caret-square-o-up:before { | |
|
7092 | 6911 | content: "\f151"; |
|
7093 | 6912 | } |
|
7094 | .icon-expand:before { | |
|
6913 | .fa-toggle-right:before, | |
|
6914 | .fa-caret-square-o-right:before { | |
|
7095 | 6915 | content: "\f152"; |
|
7096 | 6916 | } |
|
7097 |
. |
|
|
7098 |
. |
|
|
6917 | .fa-euro:before, | |
|
6918 | .fa-eur:before { | |
|
7099 | 6919 | content: "\f153"; |
|
7100 | 6920 | } |
|
7101 |
. |
|
|
6921 | .fa-gbp:before { | |
|
7102 | 6922 | content: "\f154"; |
|
7103 | 6923 | } |
|
7104 |
. |
|
|
7105 |
. |
|
|
6924 | .fa-dollar:before, | |
|
6925 | .fa-usd:before { | |
|
7106 | 6926 | content: "\f155"; |
|
7107 | 6927 | } |
|
7108 |
. |
|
|
7109 |
. |
|
|
6928 | .fa-rupee:before, | |
|
6929 | .fa-inr:before { | |
|
7110 | 6930 | content: "\f156"; |
|
7111 | 6931 | } |
|
7112 |
. |
|
|
7113 | .icon-jpy:before { | |
|
6932 | .fa-cny:before, | |
|
6933 | .fa-rmb:before, | |
|
6934 | .fa-yen:before, | |
|
6935 | .fa-jpy:before { | |
|
7114 | 6936 | content: "\f157"; |
|
7115 | 6937 | } |
|
7116 |
. |
|
|
7117 | .icon-cny:before { | |
|
6938 | .fa-ruble:before, | |
|
6939 | .fa-rouble:before, | |
|
6940 | .fa-rub:before { | |
|
7118 | 6941 | content: "\f158"; |
|
7119 | 6942 | } |
|
7120 |
. |
|
|
7121 |
. |
|
|
6943 | .fa-won:before, | |
|
6944 | .fa-krw:before { | |
|
7122 | 6945 | content: "\f159"; |
|
7123 | 6946 | } |
|
7124 |
. |
|
|
7125 |
. |
|
|
6947 | .fa-bitcoin:before, | |
|
6948 | .fa-btc:before { | |
|
7126 | 6949 | content: "\f15a"; |
|
7127 | 6950 | } |
|
7128 |
. |
|
|
6951 | .fa-file:before { | |
|
7129 | 6952 | content: "\f15b"; |
|
7130 | 6953 | } |
|
7131 |
. |
|
|
6954 | .fa-file-text:before { | |
|
7132 | 6955 | content: "\f15c"; |
|
7133 | 6956 | } |
|
7134 |
. |
|
|
6957 | .fa-sort-alpha-asc:before { | |
|
7135 | 6958 | content: "\f15d"; |
|
7136 | 6959 | } |
|
7137 |
. |
|
|
6960 | .fa-sort-alpha-desc:before { | |
|
7138 | 6961 | content: "\f15e"; |
|
7139 | 6962 | } |
|
7140 |
. |
|
|
6963 | .fa-sort-amount-asc:before { | |
|
7141 | 6964 | content: "\f160"; |
|
7142 | 6965 | } |
|
7143 | .icon-sort-by-attributes-alt:before { | |
|
6966 | .fa-sort-amount-desc:before { | |
|
7144 | 6967 | content: "\f161"; |
|
7145 | 6968 | } |
|
7146 |
. |
|
|
6969 | .fa-sort-numeric-asc:before { | |
|
7147 | 6970 | content: "\f162"; |
|
7148 | 6971 | } |
|
7149 |
. |
|
|
6972 | .fa-sort-numeric-desc:before { | |
|
7150 | 6973 | content: "\f163"; |
|
7151 | 6974 | } |
|
7152 |
. |
|
|
6975 | .fa-thumbs-up:before { | |
|
7153 | 6976 | content: "\f164"; |
|
7154 | 6977 | } |
|
7155 |
. |
|
|
6978 | .fa-thumbs-down:before { | |
|
7156 | 6979 | content: "\f165"; |
|
7157 | 6980 | } |
|
7158 |
. |
|
|
6981 | .fa-youtube-square:before { | |
|
7159 | 6982 | content: "\f166"; |
|
7160 | 6983 | } |
|
7161 |
. |
|
|
6984 | .fa-youtube:before { | |
|
7162 | 6985 | content: "\f167"; |
|
7163 | 6986 | } |
|
7164 |
. |
|
|
6987 | .fa-xing:before { | |
|
7165 | 6988 | content: "\f168"; |
|
7166 | 6989 | } |
|
7167 |
. |
|
|
6990 | .fa-xing-square:before { | |
|
7168 | 6991 | content: "\f169"; |
|
7169 | 6992 | } |
|
7170 |
. |
|
|
6993 | .fa-youtube-play:before { | |
|
7171 | 6994 | content: "\f16a"; |
|
7172 | 6995 | } |
|
7173 |
. |
|
|
6996 | .fa-dropbox:before { | |
|
7174 | 6997 | content: "\f16b"; |
|
7175 | 6998 | } |
|
7176 |
. |
|
|
6999 | .fa-stack-overflow:before { | |
|
7177 | 7000 | content: "\f16c"; |
|
7178 | 7001 | } |
|
7179 |
. |
|
|
7002 | .fa-instagram:before { | |
|
7180 | 7003 | content: "\f16d"; |
|
7181 | 7004 | } |
|
7182 |
. |
|
|
7005 | .fa-flickr:before { | |
|
7183 | 7006 | content: "\f16e"; |
|
7184 | 7007 | } |
|
7185 |
. |
|
|
7008 | .fa-adn:before { | |
|
7186 | 7009 | content: "\f170"; |
|
7187 | 7010 | } |
|
7188 |
. |
|
|
7011 | .fa-bitbucket:before { | |
|
7189 | 7012 | content: "\f171"; |
|
7190 | 7013 | } |
|
7191 |
. |
|
|
7014 | .fa-bitbucket-square:before { | |
|
7192 | 7015 | content: "\f172"; |
|
7193 | 7016 | } |
|
7194 |
. |
|
|
7017 | .fa-tumblr:before { | |
|
7195 | 7018 | content: "\f173"; |
|
7196 | 7019 | } |
|
7197 |
. |
|
|
7020 | .fa-tumblr-square:before { | |
|
7198 | 7021 | content: "\f174"; |
|
7199 | 7022 | } |
|
7200 |
. |
|
|
7023 | .fa-long-arrow-down:before { | |
|
7201 | 7024 | content: "\f175"; |
|
7202 | 7025 | } |
|
7203 |
. |
|
|
7026 | .fa-long-arrow-up:before { | |
|
7204 | 7027 | content: "\f176"; |
|
7205 | 7028 | } |
|
7206 |
. |
|
|
7029 | .fa-long-arrow-left:before { | |
|
7207 | 7030 | content: "\f177"; |
|
7208 | 7031 | } |
|
7209 |
. |
|
|
7032 | .fa-long-arrow-right:before { | |
|
7210 | 7033 | content: "\f178"; |
|
7211 | 7034 | } |
|
7212 |
. |
|
|
7035 | .fa-apple:before { | |
|
7213 | 7036 | content: "\f179"; |
|
7214 | 7037 | } |
|
7215 |
. |
|
|
7038 | .fa-windows:before { | |
|
7216 | 7039 | content: "\f17a"; |
|
7217 | 7040 | } |
|
7218 |
. |
|
|
7041 | .fa-android:before { | |
|
7219 | 7042 | content: "\f17b"; |
|
7220 | 7043 | } |
|
7221 |
. |
|
|
7044 | .fa-linux:before { | |
|
7222 | 7045 | content: "\f17c"; |
|
7223 | 7046 | } |
|
7224 |
. |
|
|
7047 | .fa-dribbble:before { | |
|
7225 | 7048 | content: "\f17d"; |
|
7226 | 7049 | } |
|
7227 |
. |
|
|
7050 | .fa-skype:before { | |
|
7228 | 7051 | content: "\f17e"; |
|
7229 | 7052 | } |
|
7230 |
. |
|
|
7053 | .fa-foursquare:before { | |
|
7231 | 7054 | content: "\f180"; |
|
7232 | 7055 | } |
|
7233 |
. |
|
|
7056 | .fa-trello:before { | |
|
7234 | 7057 | content: "\f181"; |
|
7235 | 7058 | } |
|
7236 |
. |
|
|
7059 | .fa-female:before { | |
|
7237 | 7060 | content: "\f182"; |
|
7238 | 7061 | } |
|
7239 |
. |
|
|
7062 | .fa-male:before { | |
|
7240 | 7063 | content: "\f183"; |
|
7241 | 7064 | } |
|
7242 |
. |
|
|
7065 | .fa-gittip:before { | |
|
7243 | 7066 | content: "\f184"; |
|
7244 | 7067 | } |
|
7245 |
. |
|
|
7068 | .fa-sun-o:before { | |
|
7246 | 7069 | content: "\f185"; |
|
7247 | 7070 | } |
|
7248 |
. |
|
|
7071 | .fa-moon-o:before { | |
|
7249 | 7072 | content: "\f186"; |
|
7250 | 7073 | } |
|
7251 |
. |
|
|
7074 | .fa-archive:before { | |
|
7252 | 7075 | content: "\f187"; |
|
7253 | 7076 | } |
|
7254 |
. |
|
|
7077 | .fa-bug:before { | |
|
7255 | 7078 | content: "\f188"; |
|
7256 | 7079 | } |
|
7257 |
. |
|
|
7080 | .fa-vk:before { | |
|
7258 | 7081 | content: "\f189"; |
|
7259 | 7082 | } |
|
7260 |
. |
|
|
7083 | .fa-weibo:before { | |
|
7261 | 7084 | content: "\f18a"; |
|
7262 | 7085 | } |
|
7263 |
. |
|
|
7086 | .fa-renren:before { | |
|
7264 | 7087 | content: "\f18b"; |
|
7265 | 7088 | } |
|
7089 | .fa-pagelines:before { | |
|
7090 | content: "\f18c"; | |
|
7091 | } | |
|
7092 | .fa-stack-exchange:before { | |
|
7093 | content: "\f18d"; | |
|
7094 | } | |
|
7095 | .fa-arrow-circle-o-right:before { | |
|
7096 | content: "\f18e"; | |
|
7097 | } | |
|
7098 | .fa-arrow-circle-o-left:before { | |
|
7099 | content: "\f190"; | |
|
7100 | } | |
|
7101 | .fa-toggle-left:before, | |
|
7102 | .fa-caret-square-o-left:before { | |
|
7103 | content: "\f191"; | |
|
7104 | } | |
|
7105 | .fa-dot-circle-o:before { | |
|
7106 | content: "\f192"; | |
|
7107 | } | |
|
7108 | .fa-wheelchair:before { | |
|
7109 | content: "\f193"; | |
|
7110 | } | |
|
7111 | .fa-vimeo-square:before { | |
|
7112 | content: "\f194"; | |
|
7113 | } | |
|
7114 | .fa-turkish-lira:before, | |
|
7115 | .fa-try:before { | |
|
7116 | content: "\f195"; | |
|
7117 | } | |
|
7118 | .fa-plus-square-o:before { | |
|
7119 | content: "\f196"; | |
|
7120 | } | |
|
7121 | .fa-space-shuttle:before { | |
|
7122 | content: "\f197"; | |
|
7123 | } | |
|
7124 | .fa-slack:before { | |
|
7125 | content: "\f198"; | |
|
7126 | } | |
|
7127 | .fa-envelope-square:before { | |
|
7128 | content: "\f199"; | |
|
7129 | } | |
|
7130 | .fa-wordpress:before { | |
|
7131 | content: "\f19a"; | |
|
7132 | } | |
|
7133 | .fa-openid:before { | |
|
7134 | content: "\f19b"; | |
|
7135 | } | |
|
7136 | .fa-institution:before, | |
|
7137 | .fa-bank:before, | |
|
7138 | .fa-university:before { | |
|
7139 | content: "\f19c"; | |
|
7140 | } | |
|
7141 | .fa-mortar-board:before, | |
|
7142 | .fa-graduation-cap:before { | |
|
7143 | content: "\f19d"; | |
|
7144 | } | |
|
7145 | .fa-yahoo:before { | |
|
7146 | content: "\f19e"; | |
|
7147 | } | |
|
7148 | .fa-google:before { | |
|
7149 | content: "\f1a0"; | |
|
7150 | } | |
|
7151 | .fa-reddit:before { | |
|
7152 | content: "\f1a1"; | |
|
7153 | } | |
|
7154 | .fa-reddit-square:before { | |
|
7155 | content: "\f1a2"; | |
|
7156 | } | |
|
7157 | .fa-stumbleupon-circle:before { | |
|
7158 | content: "\f1a3"; | |
|
7159 | } | |
|
7160 | .fa-stumbleupon:before { | |
|
7161 | content: "\f1a4"; | |
|
7162 | } | |
|
7163 | .fa-delicious:before { | |
|
7164 | content: "\f1a5"; | |
|
7165 | } | |
|
7166 | .fa-digg:before { | |
|
7167 | content: "\f1a6"; | |
|
7168 | } | |
|
7169 | .fa-pied-piper-square:before, | |
|
7170 | .fa-pied-piper:before { | |
|
7171 | content: "\f1a7"; | |
|
7172 | } | |
|
7173 | .fa-pied-piper-alt:before { | |
|
7174 | content: "\f1a8"; | |
|
7175 | } | |
|
7176 | .fa-drupal:before { | |
|
7177 | content: "\f1a9"; | |
|
7178 | } | |
|
7179 | .fa-joomla:before { | |
|
7180 | content: "\f1aa"; | |
|
7181 | } | |
|
7182 | .fa-language:before { | |
|
7183 | content: "\f1ab"; | |
|
7184 | } | |
|
7185 | .fa-fax:before { | |
|
7186 | content: "\f1ac"; | |
|
7187 | } | |
|
7188 | .fa-building:before { | |
|
7189 | content: "\f1ad"; | |
|
7190 | } | |
|
7191 | .fa-child:before { | |
|
7192 | content: "\f1ae"; | |
|
7193 | } | |
|
7194 | .fa-paw:before { | |
|
7195 | content: "\f1b0"; | |
|
7196 | } | |
|
7197 | .fa-spoon:before { | |
|
7198 | content: "\f1b1"; | |
|
7199 | } | |
|
7200 | .fa-cube:before { | |
|
7201 | content: "\f1b2"; | |
|
7202 | } | |
|
7203 | .fa-cubes:before { | |
|
7204 | content: "\f1b3"; | |
|
7205 | } | |
|
7206 | .fa-behance:before { | |
|
7207 | content: "\f1b4"; | |
|
7208 | } | |
|
7209 | .fa-behance-square:before { | |
|
7210 | content: "\f1b5"; | |
|
7211 | } | |
|
7212 | .fa-steam:before { | |
|
7213 | content: "\f1b6"; | |
|
7214 | } | |
|
7215 | .fa-steam-square:before { | |
|
7216 | content: "\f1b7"; | |
|
7217 | } | |
|
7218 | .fa-recycle:before { | |
|
7219 | content: "\f1b8"; | |
|
7220 | } | |
|
7221 | .fa-automobile:before, | |
|
7222 | .fa-car:before { | |
|
7223 | content: "\f1b9"; | |
|
7224 | } | |
|
7225 | .fa-cab:before, | |
|
7226 | .fa-taxi:before { | |
|
7227 | content: "\f1ba"; | |
|
7228 | } | |
|
7229 | .fa-tree:before { | |
|
7230 | content: "\f1bb"; | |
|
7231 | } | |
|
7232 | .fa-spotify:before { | |
|
7233 | content: "\f1bc"; | |
|
7234 | } | |
|
7235 | .fa-deviantart:before { | |
|
7236 | content: "\f1bd"; | |
|
7237 | } | |
|
7238 | .fa-soundcloud:before { | |
|
7239 | content: "\f1be"; | |
|
7240 | } | |
|
7241 | .fa-database:before { | |
|
7242 | content: "\f1c0"; | |
|
7243 | } | |
|
7244 | .fa-file-pdf-o:before { | |
|
7245 | content: "\f1c1"; | |
|
7246 | } | |
|
7247 | .fa-file-word-o:before { | |
|
7248 | content: "\f1c2"; | |
|
7249 | } | |
|
7250 | .fa-file-excel-o:before { | |
|
7251 | content: "\f1c3"; | |
|
7252 | } | |
|
7253 | .fa-file-powerpoint-o:before { | |
|
7254 | content: "\f1c4"; | |
|
7255 | } | |
|
7256 | .fa-file-photo-o:before, | |
|
7257 | .fa-file-picture-o:before, | |
|
7258 | .fa-file-image-o:before { | |
|
7259 | content: "\f1c5"; | |
|
7260 | } | |
|
7261 | .fa-file-zip-o:before, | |
|
7262 | .fa-file-archive-o:before { | |
|
7263 | content: "\f1c6"; | |
|
7264 | } | |
|
7265 | .fa-file-sound-o:before, | |
|
7266 | .fa-file-audio-o:before { | |
|
7267 | content: "\f1c7"; | |
|
7268 | } | |
|
7269 | .fa-file-movie-o:before, | |
|
7270 | .fa-file-video-o:before { | |
|
7271 | content: "\f1c8"; | |
|
7272 | } | |
|
7273 | .fa-file-code-o:before { | |
|
7274 | content: "\f1c9"; | |
|
7275 | } | |
|
7276 | .fa-vine:before { | |
|
7277 | content: "\f1ca"; | |
|
7278 | } | |
|
7279 | .fa-codepen:before { | |
|
7280 | content: "\f1cb"; | |
|
7281 | } | |
|
7282 | .fa-jsfiddle:before { | |
|
7283 | content: "\f1cc"; | |
|
7284 | } | |
|
7285 | .fa-life-bouy:before, | |
|
7286 | .fa-life-saver:before, | |
|
7287 | .fa-support:before, | |
|
7288 | .fa-life-ring:before { | |
|
7289 | content: "\f1cd"; | |
|
7290 | } | |
|
7291 | .fa-circle-o-notch:before { | |
|
7292 | content: "\f1ce"; | |
|
7293 | } | |
|
7294 | .fa-ra:before, | |
|
7295 | .fa-rebel:before { | |
|
7296 | content: "\f1d0"; | |
|
7297 | } | |
|
7298 | .fa-ge:before, | |
|
7299 | .fa-empire:before { | |
|
7300 | content: "\f1d1"; | |
|
7301 | } | |
|
7302 | .fa-git-square:before { | |
|
7303 | content: "\f1d2"; | |
|
7304 | } | |
|
7305 | .fa-git:before { | |
|
7306 | content: "\f1d3"; | |
|
7307 | } | |
|
7308 | .fa-hacker-news:before { | |
|
7309 | content: "\f1d4"; | |
|
7310 | } | |
|
7311 | .fa-tencent-weibo:before { | |
|
7312 | content: "\f1d5"; | |
|
7313 | } | |
|
7314 | .fa-qq:before { | |
|
7315 | content: "\f1d6"; | |
|
7316 | } | |
|
7317 | .fa-wechat:before, | |
|
7318 | .fa-weixin:before { | |
|
7319 | content: "\f1d7"; | |
|
7320 | } | |
|
7321 | .fa-send:before, | |
|
7322 | .fa-paper-plane:before { | |
|
7323 | content: "\f1d8"; | |
|
7324 | } | |
|
7325 | .fa-send-o:before, | |
|
7326 | .fa-paper-plane-o:before { | |
|
7327 | content: "\f1d9"; | |
|
7328 | } | |
|
7329 | .fa-history:before { | |
|
7330 | content: "\f1da"; | |
|
7331 | } | |
|
7332 | .fa-circle-thin:before { | |
|
7333 | content: "\f1db"; | |
|
7334 | } | |
|
7335 | .fa-header:before { | |
|
7336 | content: "\f1dc"; | |
|
7337 | } | |
|
7338 | .fa-paragraph:before { | |
|
7339 | content: "\f1dd"; | |
|
7340 | } | |
|
7341 | .fa-sliders:before { | |
|
7342 | content: "\f1de"; | |
|
7343 | } | |
|
7344 | .fa-share-alt:before { | |
|
7345 | content: "\f1e0"; | |
|
7346 | } | |
|
7347 | .fa-share-alt-square:before { | |
|
7348 | content: "\f1e1"; | |
|
7349 | } | |
|
7350 | .fa-bomb:before { | |
|
7351 | content: "\f1e2"; | |
|
7352 | } | |
|
7266 | 7353 | /*! |
|
7267 | 7354 | * |
|
7268 | 7355 | * IPython base |
@@ -7740,23 +7827,37 input.engine_num_input { | |||
|
7740 | 7827 | margin-right: 0px; |
|
7741 | 7828 | } |
|
7742 | 7829 | .folder_icon:before { |
|
7830 | display: inline-block; | |
|
7743 | 7831 | font-family: FontAwesome; |
|
7744 | font-weight: normal; | |
|
7745 | 7832 | font-style: normal; |
|
7746 | text-decoration: inherit; | |
|
7833 | font-weight: normal; | |
|
7834 | line-height: 1; | |
|
7747 | 7835 | -webkit-font-smoothing: antialiased; |
|
7748 | *margin-right: .3em; | |
|
7836 | -moz-osx-font-smoothing: grayscale; | |
|
7749 | 7837 | content: "\f114"; |
|
7750 | 7838 | } |
|
7839 | .folder_icon:before.pull-left { | |
|
7840 | margin-right: .3em; | |
|
7841 | } | |
|
7842 | .folder_icon:before.pull-right { | |
|
7843 | margin-left: .3em; | |
|
7844 | } | |
|
7751 | 7845 | .notebook_icon:before { |
|
7846 | display: inline-block; | |
|
7752 | 7847 | font-family: FontAwesome; |
|
7753 | font-weight: normal; | |
|
7754 | 7848 | font-style: normal; |
|
7755 | text-decoration: inherit; | |
|
7849 | font-weight: normal; | |
|
7850 | line-height: 1; | |
|
7756 | 7851 | -webkit-font-smoothing: antialiased; |
|
7757 | *margin-right: .3em; | |
|
7852 | -moz-osx-font-smoothing: grayscale; | |
|
7758 | 7853 | content: "\f02d"; |
|
7759 | 7854 | } |
|
7855 | .notebook_icon:before.pull-left { | |
|
7856 | margin-right: .3em; | |
|
7857 | } | |
|
7858 | .notebook_icon:before.pull-right { | |
|
7859 | margin-left: .3em; | |
|
7860 | } | |
|
7760 | 7861 | /*! |
|
7761 | 7862 | * |
|
7762 | 7863 | * IPython notebook |
@@ -8019,8 +8120,6 div.input_area > div.highlight > pre { | |||
|
8019 | 8120 | /* .CodeMirror-lines */ |
|
8020 | 8121 | padding: 0; |
|
8021 | 8122 | border: 0; |
|
8022 | -webkit-border-radius: 0; | |
|
8023 | -moz-border-radius: 0; | |
|
8024 | 8123 | border-radius: 0; |
|
8025 | 8124 | } |
|
8026 | 8125 | .CodeMirror-vscrollbar, |
@@ -8364,8 +8463,6 div.output_area pre { | |||
|
8364 | 8463 | vertical-align: baseline; |
|
8365 | 8464 | color: #000000; |
|
8366 | 8465 | background-color: transparent; |
|
8367 | -webkit-border-radius: 0; | |
|
8368 | -moz-border-radius: 0; | |
|
8369 | 8466 | border-radius: 0; |
|
8370 | 8467 | } |
|
8371 | 8468 | /* This class is for the output subarea inside the output_area and after |
@@ -9664,41 +9761,69 ul#help_menu li a i { | |||
|
9664 | 9761 | margin-right: 5px; |
|
9665 | 9762 | } |
|
9666 | 9763 | .edit_mode_icon:before { |
|
9764 | display: inline-block; | |
|
9667 | 9765 | font-family: FontAwesome; |
|
9668 | font-weight: normal; | |
|
9669 | 9766 | font-style: normal; |
|
9670 | text-decoration: inherit; | |
|
9767 | font-weight: normal; | |
|
9768 | line-height: 1; | |
|
9671 | 9769 | -webkit-font-smoothing: antialiased; |
|
9672 | *margin-right: .3em; | |
|
9770 | -moz-osx-font-smoothing: grayscale; | |
|
9673 | 9771 | content: "\f040"; |
|
9674 | 9772 | } |
|
9773 | .edit_mode_icon:before.pull-left { | |
|
9774 | margin-right: .3em; | |
|
9775 | } | |
|
9776 | .edit_mode_icon:before.pull-right { | |
|
9777 | margin-left: .3em; | |
|
9778 | } | |
|
9675 | 9779 | .command_mode_icon:before { |
|
9780 | display: inline-block; | |
|
9676 | 9781 | font-family: FontAwesome; |
|
9677 | font-weight: normal; | |
|
9678 | 9782 | font-style: normal; |
|
9679 | text-decoration: inherit; | |
|
9783 | font-weight: normal; | |
|
9784 | line-height: 1; | |
|
9680 | 9785 | -webkit-font-smoothing: antialiased; |
|
9681 | *margin-right: .3em; | |
|
9786 | -moz-osx-font-smoothing: grayscale; | |
|
9682 | 9787 | content: ' '; |
|
9683 | 9788 | } |
|
9789 | .command_mode_icon:before.pull-left { | |
|
9790 | margin-right: .3em; | |
|
9791 | } | |
|
9792 | .command_mode_icon:before.pull-right { | |
|
9793 | margin-left: .3em; | |
|
9794 | } | |
|
9684 | 9795 | .kernel_idle_icon:before { |
|
9796 | display: inline-block; | |
|
9685 | 9797 | font-family: FontAwesome; |
|
9686 | font-weight: normal; | |
|
9687 | 9798 | font-style: normal; |
|
9688 | text-decoration: inherit; | |
|
9799 | font-weight: normal; | |
|
9800 | line-height: 1; | |
|
9689 | 9801 | -webkit-font-smoothing: antialiased; |
|
9690 | *margin-right: .3em; | |
|
9802 | -moz-osx-font-smoothing: grayscale; | |
|
9691 | 9803 | content: "\f10c"; |
|
9692 | 9804 | } |
|
9805 | .kernel_idle_icon:before.pull-left { | |
|
9806 | margin-right: .3em; | |
|
9807 | } | |
|
9808 | .kernel_idle_icon:before.pull-right { | |
|
9809 | margin-left: .3em; | |
|
9810 | } | |
|
9693 | 9811 | .kernel_busy_icon:before { |
|
9812 | display: inline-block; | |
|
9694 | 9813 | font-family: FontAwesome; |
|
9695 | font-weight: normal; | |
|
9696 | 9814 | font-style: normal; |
|
9697 | text-decoration: inherit; | |
|
9815 | font-weight: normal; | |
|
9816 | line-height: 1; | |
|
9698 | 9817 | -webkit-font-smoothing: antialiased; |
|
9699 | *margin-right: .3em; | |
|
9818 | -moz-osx-font-smoothing: grayscale; | |
|
9700 | 9819 | content: "\f111"; |
|
9701 | 9820 | } |
|
9821 | .kernel_busy_icon:before.pull-left { | |
|
9822 | margin-right: .3em; | |
|
9823 | } | |
|
9824 | .kernel_busy_icon:before.pull-right { | |
|
9825 | margin-left: .3em; | |
|
9826 | } | |
|
9702 | 9827 | .notification_widget { |
|
9703 | 9828 | color: #777777; |
|
9704 | 9829 | padding: 1px 12px; |
@@ -9764,24 +9889,6 fieldset[disabled] .notification_widget { | |||
|
9764 | 9889 | -webkit-box-shadow: none; |
|
9765 | 9890 | box-shadow: none; |
|
9766 | 9891 | } |
|
9767 | .notification_widget [class^="icon-"].icon-large, | |
|
9768 | .notification_widget [class*=" icon-"].icon-large { | |
|
9769 | line-height: .9em; | |
|
9770 | } | |
|
9771 | .notification_widget [class^="icon-"].icon-spin, | |
|
9772 | .notification_widget [class*=" icon-"].icon-spin { | |
|
9773 | display: inline-block; | |
|
9774 | } | |
|
9775 | .notification_widget [class^="icon-"].pull-left.icon-2x, | |
|
9776 | .notification_widget [class*=" icon-"].pull-left.icon-2x, | |
|
9777 | .notification_widget [class^="icon-"].pull-right.icon-2x, | |
|
9778 | .notification_widget [class*=" icon-"].pull-right.icon-2x { | |
|
9779 | margin-top: .18em; | |
|
9780 | } | |
|
9781 | .notification_widget [class^="icon-"].icon-spin.icon-large, | |
|
9782 | .notification_widget [class*=" icon-"].icon-spin.icon-large { | |
|
9783 | line-height: .8em; | |
|
9784 | } | |
|
9785 | 9892 | .notification_widget:hover, |
|
9786 | 9893 | .notification_widget:focus, |
|
9787 | 9894 | .notification_widget:active, |
@@ -10230,8 +10337,6 span#autosave_status { | |||
|
10230 | 10337 | } |
|
10231 | 10338 | .ipython_tooltip .tooltiptext pre { |
|
10232 | 10339 | border: 0; |
|
10233 | -webkit-border-radius: 0; | |
|
10234 | -moz-border-radius: 0; | |
|
10235 | 10340 | border-radius: 0; |
|
10236 | 10341 | font-size: 100%; |
|
10237 | 10342 | background-color: #f7f7f7; |
@@ -141,9 +141,9 input.engine_num_input { | |||
|
141 | 141 | } |
|
142 | 142 | |
|
143 | 143 | .folder_icon:before { |
|
144 |
.icon(@folder- |
|
|
144 | .icon(@fa-var-folder-o) | |
|
145 | 145 | } |
|
146 | 146 | |
|
147 | 147 | .notebook_icon:before { |
|
148 | .icon(@book) | |
|
148 | .icon(@fa-var-book) | |
|
149 | 149 | } |
@@ -88,7 +88,7 define([ | |||
|
88 | 88 | that.bring_to_front(); |
|
89 | 89 | }); |
|
90 | 90 | this.$close = $('<button />') |
|
91 |
.addClass('close |
|
|
91 | .addClass('close fa fa-remove') | |
|
92 | 92 | .css('margin-left', '5px') |
|
93 | 93 | .appendTo(this.$title_bar) |
|
94 | 94 | .click(function(){ |
@@ -96,14 +96,14 define([ | |||
|
96 | 96 | event.stopPropagation(); |
|
97 | 97 | }); |
|
98 | 98 | this.$minimize = $('<button />') |
|
99 |
.addClass('close |
|
|
99 | .addClass('close fa fa-arrow-down') | |
|
100 | 100 | .appendTo(this.$title_bar) |
|
101 | 101 | .click(function(){ |
|
102 | 102 | that.popped_out = !that.popped_out; |
|
103 | 103 | if (!that.popped_out) { |
|
104 | 104 | that.$minimize |
|
105 |
.removeClass(' |
|
|
106 |
.addClass(' |
|
|
105 | .removeClass('fa fa-arrow-down') | |
|
106 | .addClass('fa fa-arrow-up'); | |
|
107 | 107 | |
|
108 | 108 | that.$window |
|
109 | 109 | .draggable('destroy') |
@@ -116,8 +116,8 define([ | |||
|
116 | 116 | that.$close.hide(); |
|
117 | 117 | } else { |
|
118 | 118 | that.$minimize |
|
119 |
.addClass(' |
|
|
120 |
.removeClass(' |
|
|
119 | .addClass('fa fa-arrow-down') | |
|
120 | .removeClass('fa fa-arrow-up'); | |
|
121 | 121 | |
|
122 | 122 | that.$window |
|
123 | 123 | .removeClass('docked-widget-modal') |
@@ -258,7 +258,7 class="notebook_app" | |||
|
258 | 258 | {% for helplinks in sections %} |
|
259 | 259 | {% for link in helplinks %} |
|
260 | 260 | <li><a href="{{link[0]}}" {{'target="_blank" title="Opens in a new window"' if link[2]}}> |
|
261 |
{{'<i class=" |
|
|
261 | {{'<i class="fa fa-external-link menu-icon pull-right"></i>' if link[2]}} | |
|
262 | 262 | {{link[1]}} |
|
263 | 263 | </a></li> |
|
264 | 264 | {% endfor %} |
@@ -42,7 +42,7 data-notebook-path="{{notebook_path}}" | |||
|
42 | 42 | <div class="col-sm-4 no-padding tree-buttons"> |
|
43 | 43 | <span id="notebook_buttons" class="pull-right"> |
|
44 | 44 | <button id="new_notebook" title="Create new notebook" class="btn btn-default btn-xs">New Notebook</button> |
|
45 |
<button id="refresh_notebook_list" title="Refresh notebook list" class="btn btn-default btn-xs"><i class=" |
|
|
45 | <button id="refresh_notebook_list" title="Refresh notebook list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button> | |
|
46 | 46 | </span> |
|
47 | 47 | </div> |
|
48 | 48 | </div> |
@@ -51,7 +51,7 data-notebook-path="{{notebook_path}}" | |||
|
51 | 51 | <div id="notebook_list_header" class="row list_header"> |
|
52 | 52 | <div id="project_name"> |
|
53 | 53 | <ul class="breadcrumb"> |
|
54 |
<li><a href="{{breadcrumbs[0][0]}}"><i class=" |
|
|
54 | <li><a href="{{breadcrumbs[0][0]}}"><i class="fa fa-home"></i></a></li> | |
|
55 | 55 | {% for crumb in breadcrumbs[1:] %} |
|
56 | 56 | <li><a href="{{crumb[0]}}">{{crumb[1]}}</a></li> |
|
57 | 57 | {% endfor %} |
@@ -69,7 +69,7 data-notebook-path="{{notebook_path}}" | |||
|
69 | 69 | </div> |
|
70 | 70 | <div class="col-sm-4 no-padding tree-buttons"> |
|
71 | 71 | <span id="running_buttons" class="pull-right"> |
|
72 |
<button id="refresh_running_list" title="Refresh running list" class="btn btn-default btn-xs"><i class=" |
|
|
72 | <button id="refresh_running_list" title="Refresh running list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button> | |
|
73 | 73 | </span> |
|
74 | 74 | </div> |
|
75 | 75 | </div> |
@@ -89,7 +89,7 data-notebook-path="{{notebook_path}}" | |||
|
89 | 89 | </div> |
|
90 | 90 | <div class="col-xs-4 no-padding tree-buttons"> |
|
91 | 91 | <span id="cluster_buttons" class="pull-right"> |
|
92 |
<button id="refresh_cluster_list" title="Refresh cluster list" class="btn btn-default btn-xs"><i class=" |
|
|
92 | <button id="refresh_cluster_list" title="Refresh cluster list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button> | |
|
93 | 93 | </span> |
|
94 | 94 | </div> |
|
95 | 95 | </div> |
@@ -78,7 +78,7 if( window.location.search.match( /print-pdf/gi ) ) { | |||
|
78 | 78 | <![endif]--> |
|
79 | 79 | |
|
80 | 80 | <!-- Get Font-awesome from cdn --> |
|
81 |
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/ |
|
|
81 | <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css"> | |
|
82 | 82 | |
|
83 | 83 | {% for css in resources.inlining.css -%} |
|
84 | 84 | <style type="text/css"> |
@@ -1,7 +1,7 | |||
|
1 | 1 | { |
|
2 | 2 | "metadata": { |
|
3 | 3 | "name": "", |
|
4 | "signature": "sha256:344aa301a0ce679ebf87e2d1dd206cf3784854cde5fedc34109f38710aef680c" | |
|
4 | "signature": "sha256:a52ac3735e5881fe8fe68f88d0113c3b1dca40cb809955db692fedb89b66a7fa" | |
|
5 | 5 | }, |
|
6 | 6 | "nbformat": 3, |
|
7 | 7 | "nbformat_minor": 0, |
@@ -46,7 +46,7 | |||
|
46 | 46 | "};\n", |
|
47 | 47 | "</script>\n", |
|
48 | 48 | "\n", |
|
49 | "Run a code cell using `shift-enter` or pressing the <button><i class=\"icon-play\"></i></button> button in the <a href=\"#\" onMouseover=\"hl('#maintoolbar-container', 1)\" onMouseout=\"hl('#maintoolbar-container', 0)\">toolbar</a> above:" | |
|
49 | "Run a code cell using `shift-enter` or pressing the <button class='btn btn-default btn-xs'><i class=\"icon-play fa fa-play\"></i></button> button in the <a href=\"#\" onMouseover=\"hl('#maintoolbar-container', 1)\" onMouseout=\"hl('#maintoolbar-container', 0)\">toolbar</a> above:" | |
|
50 | 50 | ] |
|
51 | 51 | }, |
|
52 | 52 | { |
@@ -91,7 +91,7 | |||
|
91 | 91 | "cell_type": "markdown", |
|
92 | 92 | "metadata": {}, |
|
93 | 93 | "source": [ |
|
94 | "Code is run in a separate process called the IPython Kernel. The Kernel can be interrupted or restarted. Try running the following cell and then hit the <button><i class='icon-stop'></i></button> button in the <a href=\"#\" onMouseover=\"hl('#maintoolbar-container', 1)\" onMouseout=\"hl('#maintoolbar-container', 0)\">toolbar</a> above." | |
|
94 | "Code is run in a separate process called the IPython Kernel. The Kernel can be interrupted or restarted. Try running the following cell and then hit the <button class='btn btn-default btn-xs'><i class='icon-stop fa fa-stop'></i></button> button in the <a href=\"#\" onMouseover=\"hl('#maintoolbar-container', 1)\" onMouseout=\"hl('#maintoolbar-container', 0)\">toolbar</a> above." | |
|
95 | 95 | ] |
|
96 | 96 | }, |
|
97 | 97 | { |
@@ -150,7 +150,7 def find_package_data(): | |||
|
150 | 150 | pjoin(components, "bootstrap", "js", "bootstrap.min.js"), |
|
151 | 151 | pjoin(components, "bootstrap-tour", "build", "css", "bootstrap-tour.min.css"), |
|
152 | 152 | pjoin(components, "bootstrap-tour", "build", "js", "bootstrap-tour.min.js"), |
|
153 | pjoin(components, "font-awesome", "font", "*.*"), | |
|
153 | pjoin(components, "font-awesome", "fonts", "*.*"), | |
|
154 | 154 | pjoin(components, "google-caja", "html-css-sanitizer-minified.js"), |
|
155 | 155 | pjoin(components, "highlight.js", "build", "highlight.pack.js"), |
|
156 | 156 | pjoin(components, "jquery", "jquery.min.js"), |
General Comments 0
You need to be logged in to leave comments.
Login now