Added skill-box

This commit is contained in:
2018-03-18 14:15:00 +11:00
parent 6472f1c360
commit 38536ef19f
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,29 @@
/*
* Skill Box
* Little skill box.
*
* Dependencies:
*
* Version:
* 1.0.0 - 2018/03/18
*/
.o-skill-box {
width: 100%;
padding: 2em 1em;
}
.o-skill-box__heading,
.o-skill-box__description {
text-align: center;
}
.o-skill-box__container {
@extend %t-flexbox;
@include t-flex-wrap(wrap);
}
@include t-media-query($s-small-up) {
.o-skill-box {
width: 50%;
}
}