Created
January 9, 2014 16:54
-
-
Save cdharrison/8337649 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.0.rc.2) | |
// Compass (v1.0.0.alpha.17) | |
// ---- | |
$grey: #777; | |
$logosize: 31; | |
$blockpercent: 7%; | |
// Calculate the proper size of the blocks | |
@function block-calc($n){ | |
@return $blockpercent * $n; | |
} | |
$blockheight: #{block-calc($logosize)}; | |
@mixin block-global{ | |
height: #{$blockheight}; | |
border-radius: 20%; | |
position: absolute; | |
background: $grey; | |
} | |
.block-global{ | |
@include block-global; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.block-global { | |
height: 217%; | |
border-radius: 20%; | |
position: absolute; | |
background: #777777; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment