Added skill-box
This commit is contained in:
18
public/components/pages/about/SkillBox.jsx
Normal file
18
public/components/pages/about/SkillBox.jsx
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
import Language from './../../../language/Language';
|
||||||
|
|
||||||
|
const SkillBox = function(props) {
|
||||||
|
return (
|
||||||
|
<div className={"o-skill-box o-skill-box--" + props.language}>
|
||||||
|
<h2 className="o-skill-box__heading">
|
||||||
|
{Language.get("about."+props.language+".name")}
|
||||||
|
</h2>
|
||||||
|
<p className="o-skill-box__description">
|
||||||
|
{Language.get("about."+props.language+".description")}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = SkillBox;
|
29
public/styles/objects/_skill-box.scss
Normal file
29
public/styles/objects/_skill-box.scss
Normal 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%;
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user