Created
March 4, 2015 22:15
-
-
Save procload/91e45f0c694a47792eaa 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.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
$smoke: #CCC; | |
$color-facebook: #000; | |
$color-twitter: #000; | |
$color-pinterest: #000; | |
.fullscreen-share-link { | |
font-size: 60px; | |
color: $smoke; | |
//@include transition(color .3s); | |
&:hover { | |
color: shade($smoke, 20%); | |
} | |
@each $social, $color in (facebook, $color-facebook), (twitter, $color-twitter),(pinterest, $color-pinterest) { | |
&-#{$social} { | |
color: $color; | |
} | |
} | |
}// .fullscreen-share-link |
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
.fullscreen-share-link { | |
font-size: 60px; | |
color: #CCC; | |
} | |
.fullscreen-share-link:hover { | |
color: #a3a3a3; | |
} | |
.fullscreen-share-link-facebook { | |
color: #000; | |
} | |
.fullscreen-share-link-twitter { | |
color: #000; | |
} | |
.fullscreen-share-link-pinterest { | |
color: #000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment