Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ForkAwesome/Fork-Awesome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLightGuard <lightguard.jp@gmail.com>2013-06-12 20:42:37 +0400
committerLightGuard <lightguard.jp@gmail.com>2013-06-12 20:42:37 +0400
commit3e6cc9500114b03b77b0c9b28c8ed4cd68813abd (patch)
treee2487496fb81791d7ef20c4bad70eba0e391178c /scss/_core.scss
parent4c3b45789f457d1633c94ef791afc99171111e99 (diff)
Fixing division
Diffstat (limited to 'scss/_core.scss')
-rw-r--r--scss/_core.scss8
1 files changed, 4 insertions, 4 deletions
diff --git a/scss/_core.scss b/scss/_core.scss
index 8199965a3..2ae7d5577 100644
--- a/scss/_core.scss
+++ b/scss/_core.scss
@@ -17,7 +17,7 @@
/* makes the font 33% larger relative to the icon container */
.icon-large:before {
vertical-align: -10%;
- font-size: 4/3em;
+ font-size: (4em/3);
}
/* makes sure icons active on rollover in links */
@@ -33,11 +33,11 @@ a {
[class*=" icon-"] {
&.icon-fixed-width {
display: inline-block;
- width: 16/14em;
+ width: (16em/14);
text-align: right;
- padding-right: 4/14em;
+ padding-right: (4em/14);
&.icon-large {
- width: 20/14em;
+ width: (20em/14);
}
}
}