|
@@ -1,51 +1,70 @@
|
|
|
-/* Font Awesome 3.0
|
|
|
- the iconic font designed for use with Twitter Bootstrap
|
|
|
- -------------------------------------------------------
|
|
|
- The full suite of pictographic icons, examples, and documentation
|
|
|
- can be found at: http://fortawesome.github.com/Font-Awesome/
|
|
|
+/*!
|
|
|
+ * Font Awesome 3.0.1
|
|
|
+ * the iconic font designed for use with Twitter Bootstrap
|
|
|
+ * -------------------------------------------------------
|
|
|
+ * The full suite of pictographic icons, examples, and documentation
|
|
|
+ * can be found at: http://fortawesome.github.com/Font-Awesome/
|
|
|
+ *
|
|
|
+ * License
|
|
|
+ * -------------------------------------------------------
|
|
|
+ * - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL
|
|
|
+ * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
|
|
|
+ * http://opensource.org/licenses/mit-license.html
|
|
|
+ * - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/
|
|
|
+ * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
|
|
|
+ * "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome"
|
|
|
|
|
|
- License
|
|
|
- -------------------------------------------------------
|
|
|
- • The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL
|
|
|
- • Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
|
|
|
- http://opensource.org/licenses/mit-license.html
|
|
|
- • The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/
|
|
|
- • Attribution is no longer required in Font Awesome 3.0, but much appreciated:
|
|
|
- "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome"
|
|
|
-
|
|
|
- Contact
|
|
|
- -------------------------------------------------------
|
|
|
- Email: dave@davegandy.com
|
|
|
- Twitter: http://twitter.com/fortaweso_me
|
|
|
- Work: Lead Product Designer @ http://kyruus.com
|
|
|
-
|
|
|
- */
|
|
|
+ * Contact
|
|
|
+ * -------------------------------------------------------
|
|
|
+ * Email: dave@davegandy.com
|
|
|
+ * Twitter: http://twitter.com/fortaweso_me
|
|
|
+ * Work: Lead Product Designer @ http://kyruus.com
|
|
|
+ */
|
|
|
@font-face {
|
|
|
font-family: 'FontAwesome';
|
|
|
- src: url('../font/fontawesome-webfont.eot');
|
|
|
- src: url('../font/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
|
|
|
- url('../font/fontawesome-webfont.woff') format('woff'),
|
|
|
- url('../font/fontawesome-webfont.ttf') format('truetype');
|
|
|
+ src: url('../font/fontawesome-webfont.eot?v=3.0.1');
|
|
|
+ src: url('../font/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'),
|
|
|
+ url('../font/fontawesome-webfont.woff?v=3.0.1') format('woff'),
|
|
|
+ url('../font/fontawesome-webfont.ttf?v=3.0.1') format('truetype');
|
|
|
font-weight: normal;
|
|
|
font-style: normal;
|
|
|
}
|
|
|
/* Font Awesome styles
|
|
|
------------------------------------------------------- */
|
|
|
-/* includes sprites.less reset */
|
|
|
[class^="icon-"],
|
|
|
[class*=" icon-"] {
|
|
|
font-family: FontAwesome;
|
|
|
font-weight: normal;
|
|
|
font-style: normal;
|
|
|
text-decoration: inherit;
|
|
|
+ -webkit-font-smoothing: antialiased;
|
|
|
+
|
|
|
+ /* sprites.less reset */
|
|
|
display: inline;
|
|
|
width: auto;
|
|
|
height: auto;
|
|
|
line-height: normal;
|
|
|
vertical-align: baseline;
|
|
|
- background-image: none !important;
|
|
|
+ background-image: none;
|
|
|
background-position: 0% 0%;
|
|
|
background-repeat: repeat;
|
|
|
+ margin-top: 0;
|
|
|
+}
|
|
|
+/* more sprites.less reset */
|
|
|
+.icon-white,
|
|
|
+.nav-pills > .active > a > [class^="icon-"],
|
|
|
+.nav-pills > .active > a > [class*=" icon-"],
|
|
|
+.nav-list > .active > a > [class^="icon-"],
|
|
|
+.nav-list > .active > a > [class*=" icon-"],
|
|
|
+.navbar-inverse .nav > .active > a > [class^="icon-"],
|
|
|
+.navbar-inverse .nav > .active > a > [class*=" icon-"],
|
|
|
+.dropdown-menu > li > a:hover > [class^="icon-"],
|
|
|
+.dropdown-menu > li > a:hover > [class*=" icon-"],
|
|
|
+.dropdown-menu > .active > a > [class^="icon-"],
|
|
|
+.dropdown-menu > .active > a > [class*=" icon-"],
|
|
|
+.dropdown-submenu:hover > a > [class^="icon-"],
|
|
|
+.dropdown-submenu:hover > a > [class*=" icon-"] {
|
|
|
+ background-image: none;
|
|
|
}
|
|
|
[class^="icon-"]:before,
|
|
|
[class*=" icon-"]:before {
|
|
@@ -70,7 +89,12 @@ a [class*=" icon-"] {
|
|
|
display: inline;
|
|
|
/* keeps button heights with and without icons the same */
|
|
|
|
|
|
- line-height: .6em;
|
|
|
+}
|
|
|
+.btn [class^="icon-"].icon-large,
|
|
|
+.nav [class^="icon-"].icon-large,
|
|
|
+.btn [class*=" icon-"].icon-large,
|
|
|
+.nav [class*=" icon-"].icon-large {
|
|
|
+ line-height: .9em;
|
|
|
}
|
|
|
.btn [class^="icon-"].icon-spin,
|
|
|
.nav [class^="icon-"].icon-spin,
|
|
@@ -78,14 +102,35 @@ a [class*=" icon-"] {
|
|
|
.nav [class*=" icon-"].icon-spin {
|
|
|
display: inline-block;
|
|
|
}
|
|
|
+.nav-tabs [class^="icon-"],
|
|
|
+.nav-pills [class^="icon-"],
|
|
|
+.nav-tabs [class*=" icon-"],
|
|
|
+.nav-pills [class*=" icon-"] {
|
|
|
+ /* keeps button heights with and without icons the same */
|
|
|
+
|
|
|
+}
|
|
|
+.nav-tabs [class^="icon-"],
|
|
|
+.nav-pills [class^="icon-"],
|
|
|
+.nav-tabs [class*=" icon-"],
|
|
|
+.nav-pills [class*=" icon-"],
|
|
|
+.nav-tabs [class^="icon-"].icon-large,
|
|
|
+.nav-pills [class^="icon-"].icon-large,
|
|
|
+.nav-tabs [class*=" icon-"].icon-large,
|
|
|
+.nav-pills [class*=" icon-"].icon-large {
|
|
|
+ line-height: .9em;
|
|
|
+}
|
|
|
li [class^="icon-"],
|
|
|
-li [class*=" icon-"] {
|
|
|
+.nav li [class^="icon-"],
|
|
|
+li [class*=" icon-"],
|
|
|
+.nav li [class*=" icon-"] {
|
|
|
display: inline-block;
|
|
|
width: 1.25em;
|
|
|
text-align: center;
|
|
|
}
|
|
|
li [class^="icon-"].icon-large,
|
|
|
-li [class*=" icon-"].icon-large {
|
|
|
+.nav li [class^="icon-"].icon-large,
|
|
|
+li [class*=" icon-"].icon-large,
|
|
|
+.nav li [class*=" icon-"].icon-large {
|
|
|
/* increased font size for icon-large */
|
|
|
|
|
|
width: 1.5625em;
|
|
@@ -143,33 +188,45 @@ ul.icons li [class*=" icon-"] {
|
|
|
}
|
|
|
[class^="icon-"].pull-left,
|
|
|
[class*=" icon-"].pull-left {
|
|
|
- margin-right: .35em;
|
|
|
+ margin-right: .3em;
|
|
|
}
|
|
|
[class^="icon-"].pull-right,
|
|
|
[class*=" icon-"].pull-right {
|
|
|
- margin-left: .35em;
|
|
|
+ margin-left: .3em;
|
|
|
}
|
|
|
.btn [class^="icon-"].pull-left.icon-2x,
|
|
|
.btn [class*=" icon-"].pull-left.icon-2x,
|
|
|
.btn [class^="icon-"].pull-right.icon-2x,
|
|
|
.btn [class*=" icon-"].pull-right.icon-2x {
|
|
|
- margin-top: .35em;
|
|
|
+ margin-top: .18em;
|
|
|
}
|
|
|
.btn [class^="icon-"].icon-spin.icon-large,
|
|
|
.btn [class*=" icon-"].icon-spin.icon-large {
|
|
|
- height: .75em;
|
|
|
+ line-height: .8em;
|
|
|
}
|
|
|
.btn.btn-small [class^="icon-"].pull-left.icon-2x,
|
|
|
.btn.btn-small [class*=" icon-"].pull-left.icon-2x,
|
|
|
.btn.btn-small [class^="icon-"].pull-right.icon-2x,
|
|
|
.btn.btn-small [class*=" icon-"].pull-right.icon-2x {
|
|
|
- margin-top: .45em;
|
|
|
+ margin-top: .25em;
|
|
|
+}
|
|
|
+.btn.btn-large [class^="icon-"],
|
|
|
+.btn.btn-large [class*=" icon-"] {
|
|
|
+ margin-top: 0;
|
|
|
}
|
|
|
.btn.btn-large [class^="icon-"].pull-left.icon-2x,
|
|
|
.btn.btn-large [class*=" icon-"].pull-left.icon-2x,
|
|
|
.btn.btn-large [class^="icon-"].pull-right.icon-2x,
|
|
|
.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
|
|
|
- margin-top: .2em;
|
|
|
+ margin-top: .05em;
|
|
|
+}
|
|
|
+.btn.btn-large [class^="icon-"].pull-left.icon-2x,
|
|
|
+.btn.btn-large [class*=" icon-"].pull-left.icon-2x {
|
|
|
+ margin-right: .2em;
|
|
|
+}
|
|
|
+.btn.btn-large [class^="icon-"].pull-right.icon-2x,
|
|
|
+.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
|
|
|
+ margin-left: .2em;
|
|
|
}
|
|
|
.icon-spin {
|
|
|
display: inline-block;
|
|
@@ -198,6 +255,20 @@ ul.icons li [class*=" icon-"] {
|
|
|
0% { transform: rotate(0deg); }
|
|
|
100% { transform: rotate(359deg); }
|
|
|
}
|
|
|
+@-moz-document url-prefix() {
|
|
|
+ .icon-spin {
|
|
|
+ height: .9em;
|
|
|
+ }
|
|
|
+ .btn .icon-spin {
|
|
|
+ height: auto;
|
|
|
+ }
|
|
|
+ .icon-spin.icon-large {
|
|
|
+ height: 1.25em;
|
|
|
+ }
|
|
|
+ .btn .icon-spin.icon-large {
|
|
|
+ height: .75em;
|
|
|
+ }
|
|
|
+}
|
|
|
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
|
|
readers do not read off random characters that represent icons */
|
|
|
.icon-glass:before { content: "\f000"; }
|