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

65 lines
1.1 KiB
SCSS
Raw Normal View History

2018-03-27 10:01:24 +02:00
@import 'variables';
.networks {
2018-05-06 00:59:46 +02:00
margin-top: $spacer * $line-height;
2018-05-09 22:10:37 +02:00
margin-left: auto;
margin-right: auto;
2018-05-05 17:52:23 +02:00
width: 100%;
2018-04-02 23:22:48 +02:00
display: flex;
justify-content: center;
2018-05-09 22:10:37 +02:00
max-width: 20rem;
2018-03-27 10:01:24 +02:00
}
2018-06-11 19:48:38 +02:00
.title {
2018-05-06 00:59:46 +02:00
display: block;
font-size: $font-size-mini;
color: $brand-grey-light;
opacity: 0;
transform: translate3d(0, .5rem, 0);
2018-05-13 21:50:55 +02:00
transition: .2s $easing;
2018-05-06 00:59:46 +02:00
}
2018-06-11 19:48:38 +02:00
.link {
2018-05-09 22:10:37 +02:00
margin-left: $spacer / 2;
margin-right: $spacer / 2;
2018-03-27 10:01:24 +02:00
text-align: center;
2018-05-06 00:59:46 +02:00
display: block;
2018-05-09 22:10:37 +02:00
flex: 1 1 (100% / 5);
2018-04-24 21:10:47 +02:00
2018-04-16 22:32:30 +02:00
&,
2018-06-11 19:48:38 +02:00
svg {
2018-05-13 21:50:55 +02:00
transition: .2s $easing;
2018-04-16 22:32:30 +02:00
}
2018-06-11 19:48:38 +02:00
svg {
2018-04-16 22:32:30 +02:00
fill: $brand-grey-light;
2018-04-12 00:10:13 +02:00
}
2018-03-27 10:01:24 +02:00
&:hover,
&:focus {
2018-06-11 19:48:38 +02:00
svg {
2018-04-16 22:32:30 +02:00
fill: $brand-cyan;
}
2018-05-06 00:59:46 +02:00
2018-06-11 19:48:38 +02:00
.title {
2018-05-06 00:59:46 +02:00
opacity: 1;
transform: translate3d(0, 0, 0);
}
2018-03-27 10:01:24 +02:00
}
2018-06-11 19:48:38 +02:00
}
2018-04-11 13:53:35 +02:00
2018-06-11 19:48:38 +02:00
.minimal {
.link {
2018-05-06 00:59:46 +02:00
padding: $spacer / 4;
margin-left: $spacer / 4;
margin-right: $spacer / 4;
2018-06-11 19:48:38 +02:00
}
2018-04-11 13:53:35 +02:00
2018-06-11 19:48:38 +02:00
/* stylelint-disable no-descending-specificity */
svg {
2018-09-19 19:50:41 +02:00
width: .75rem;
height: .75rem;
2018-06-11 19:48:38 +02:00
opacity: .8;
2018-04-11 13:53:35 +02:00
}
2018-03-27 10:01:24 +02:00
}