portfolio/src/components/molecules/ProjectLinks.module.scss

35 lines
591 B
SCSS
Raw Normal View History

2018-04-09 21:35:34 +02:00
@import 'variables';
2018-06-11 19:48:38 +02:00
.projectLinks {
2018-04-11 12:46:55 +02:00
ul {
padding: 0;
2018-10-17 01:24:49 +02:00
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: $spacer / 2;
2018-04-11 12:46:55 +02:00
}
2018-04-09 21:35:34 +02:00
li {
2018-04-20 22:56:18 +02:00
display: flex;
align-items: center;
justify-content: center;
2018-04-09 21:35:34 +02:00
}
2018-07-14 19:22:38 +02:00
a {
display: block;
width: 100%;
}
2018-04-09 21:35:34 +02:00
}
2018-06-11 19:48:38 +02:00
.title {
font-size: $font-size-h3;
margin-bottom: $spacer * 1.5;
span {
display: block;
margin-top: $spacer / 3;
font-size: $font-size-base;
font-family: $font-family-base;
color: $brand-grey-light;
}
}