mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
30 lines
528 B
SCSS
30 lines
528 B
SCSS
|
|
.icon {
|
|
fill: none;
|
|
stroke: $gray-light;
|
|
stroke-width: 2;
|
|
stroke-linecap: round;
|
|
stroke-linejoin: round;
|
|
stroke-miterlimit: 10;
|
|
width: 60px;
|
|
height: 60px;
|
|
}
|
|
|
|
.icon--social {
|
|
@extend .transition;
|
|
width: 1rem;
|
|
height: 1rem;
|
|
stroke: none;
|
|
fill: rgba($link-color, .4);
|
|
}
|
|
|
|
a {
|
|
&:hover,
|
|
&:focus {
|
|
.icon--twitter { fill: #55acee }
|
|
.icon--facebook { fill: #3b5998 }
|
|
.icon--linkedin { fill: #0077b5 }
|
|
.icon--github { fill: #4183c4 }
|
|
}
|
|
}
|