summaryrefslogtreecommitdiff
path: root/_sass/font-awesome/_core.scss
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-03-30 02:46:14 -0400
committerBen Burwell <ben@benburwell.com>2015-03-30 02:46:14 -0400
commit2b59a0f8355ae8b4bf71cf5c2a365de91f5ebe1b (patch)
treebaaeeeccef58a402b328b1abbdd667dca7e6b5f7 /_sass/font-awesome/_core.scss
parent475275e0bb1d7e494ff3579595bf0e8dcda8474a (diff)
redesign
Diffstat (limited to '_sass/font-awesome/_core.scss')
-rw-r--r--_sass/font-awesome/_core.scss13
1 files changed, 13 insertions, 0 deletions
diff --git a/_sass/font-awesome/_core.scss b/_sass/font-awesome/_core.scss
new file mode 100644
index 0000000..5a2db9d
--- /dev/null
+++ b/_sass/font-awesome/_core.scss
@@ -0,0 +1,13 @@
+// Base Class Definition
+// -------------------------
+
+.#{$fa-css-prefix} {
+ display: inline-block;
+ font: normal normal normal #{$fa-font-size-base}/1 FontAwesome; // shortening font declaration
+ font-size: inherit; // can't have font-size inherit on line above, so need to override
+ text-rendering: auto; // optimizelegibility throws things off #1094
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ transform: translate(0, 0); // ensures no half-pixel rendering in firefox
+
+}