aboutsummaryrefslogtreecommitdiff
path: root/font-awesome-4.3.0/scss/_core.scss
diff options
context:
space:
mode:
authorCamil Staps2015-02-05 00:40:47 +0100
committerCamil Staps2015-02-05 00:40:47 +0100
commitc50a323c25a0787ba2051b19721983776a229615 (patch)
tree87e13060ca6633bed3f5de2e25c5eedf866a0073 /font-awesome-4.3.0/scss/_core.scss
parentInitial commit (diff)
Initial commit
Diffstat (limited to 'font-awesome-4.3.0/scss/_core.scss')
-rw-r--r--font-awesome-4.3.0/scss/_core.scss13
1 files changed, 13 insertions, 0 deletions
diff --git a/font-awesome-4.3.0/scss/_core.scss b/font-awesome-4.3.0/scss/_core.scss
new file mode 100644
index 0000000..5a2db9d
--- /dev/null
+++ b/font-awesome-4.3.0/scss/_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
+
+}