Skip to content

Instantly share code, notes, and snippets.

Created May 5, 2015 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/6201352b8b358530f4a6 to your computer and use it in GitHub Desktop.
Save anonymous/6201352b8b358530f4a6 to your computer and use it in GitHub Desktop.
Stylish Social Buttons
.social-buttons
each name in ['facebook','twitter','google','dribbble','skype']
a.social-button(href="#",class=name): i.fa(class="fa-"+name)
# Not a damn thing
//animations
$transition: all 0.35s cubic-bezier(0.310, -0.105, 0.430, 1.590);
//social media colors
$colors: (
"facebook": "#3B5998",
"twitter": "#3CF",
"google": "#DC4A38",
"dribbble": "#F26798",
"skype": "#00AFF0"
);
//button size
$size: 90px;
* {
margin: 0;
padding: 0;
color: inherit;
box-sizing: inherit;
&:focus {
outline: none;
}
}
html {
box-sizing: border-box;
}
body {
background-color: #ecf0f1;
}
.social-buttons {
height: $size;
margin: auto;
font-size: 0;
text-align: center;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.social-button {
display: inline-block;
background-color: #fff;
width: $size;
height: $size;
line-height: $size;
margin: 0 10px;
text-align: center;
position: relative;
overflow: hidden;
//overflow bug fix
opacity: .99;
border-radius: 28%;
box-shadow: 0 0 30px 0 rgba(0,0,0,.05);
transition: $transition;
&:before {
content: '';
background-color: #000;
width: 120%;
height: 120%;
position: absolute;
top: 90%;
left: -110%;
transform: rotate(45deg);
transition: $transition;
}
.fa {
font-size: 38px;
vertical-align: middle;
transform: scale(.8);
transition: $transition;
}
@each $class,$color in $colors {
&.#{$class} {
&:before {
background-color: #{$color};
}
.fa {
color: #{$color};
}
}
}
&:hover {
&:before {
top: -10%;
left: -10%;
}
.fa {
color: #fff;
transform: scale(1);
}
}
&:focus {
opacity: .85;
}
}
@rudrathegreat
Copy link

where did you get the images from (the social icons)?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment