Skip to content

Commit

Permalink
Add margin for social buttons list items
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidePastore committed Dec 4, 2017
1 parent 401c4be commit 14038a6
Showing 1 changed file with 23 additions and 18 deletions.
41 changes: 23 additions & 18 deletions css/grayscale.scss
Original file line number Diff line number Diff line change
Expand Up @@ -317,26 +317,31 @@ a {
}

/* Added in { Personal } */
ul.social-buttons li a {
display: block;
width: 40px;
height: 40px;
border-radius: 100%;
font-size: 20px;
line-height: 40px;
outline: 0;
color: $social-buttons-color;
background-color: $social-buttons-bg-color;
ul.social-buttons li {

-webkit-transition: all .3s;
-moz-transition: all .3s;
transition: all .3s;
margin-bottom: 10px;

&:hover,
&:focus,
&:active {
color: $social-buttons-bg-color;
background-color: darken($social-buttons-color, 10%);
a {
display: block;
width: 40px;
height: 40px;
border-radius: 100%;
font-size: 20px;
line-height: 40px;
outline: 0;
color: $social-buttons-color;
background-color: $social-buttons-bg-color;

-webkit-transition: all .3s;
-moz-transition: all .3s;
transition: all .3s;

&:hover,
&:focus,
&:active {
color: $social-buttons-bg-color;
background-color: darken($social-buttons-color, 10%);
}
}
}

Expand Down

0 comments on commit 14038a6

Please sign in to comment.