1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-17 18:03:22 +02:00
portfolio/src/components/molecules/Social.scss

32 lines
777 B
SCSS
Raw Normal View History

2018-03-27 10:01:24 +02:00
@import 'variables';
.social {
margin-top: $spacer;
2018-04-02 23:22:48 +02:00
display: flex;
justify-content: center;
width: 100%;
2018-03-27 10:01:24 +02:00
}
.social__link {
margin-left: $spacer / 2;
margin-right: $spacer / 2;
2018-04-03 23:52:23 +02:00
background: $brand-light;
2018-03-27 10:01:24 +02:00
padding: $spacer / 4;
text-align: center;
2018-04-02 23:22:48 +02:00
display: flex;
align-items: center;
justify-content: center;
2018-03-27 10:01:24 +02:00
width: 1.35rem;
height: 1.35rem;
box-shadow: 0 3px 5px rgba($brand-main, .1), 0 5px 16px rgba($brand-main, .1);
border-radius: .25rem;
2018-04-11 12:46:55 +02:00
transition-property: transform, background, box-shadow;
2018-03-27 10:01:24 +02:00
&:hover,
&:focus {
2018-04-03 23:52:23 +02:00
background: $brand-grey-dimmed;
2018-03-27 10:01:24 +02:00
transform: translate3d(0, -.2rem, 0);
box-shadow: 0 6px 10px rgba($brand-main, .1), 0 10px 25px rgba($brand-main, .1);
}
}