Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-01-04 17:35:30 +01:00
parent e5fb01eea8
commit a0f1799114
51 changed files with 879 additions and 261 deletions

View File

@ -10,20 +10,27 @@ export default class Header extends React.Component<Props, {}> {
render() {
return (
<div>
<img src="/clouds.svg" alt=""/>
{/* <p>Bienvenue sur le Portfolio de Florian BOUILLON !</p> */}
<style jsx>{`
div {
position: relative;
background: linear-gradient(90deg, #45CAFC 0%, #4285F4 92.19%);
height: 207px;
background: url('/clouds.svg'), linear-gradient(90deg, #45CAFC 0%, #4285F4 92.19%);
background-repeat: repeat-x;
background-position: bottom;
min-height: 207px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: white;
font-size: 35px;
text-transform: uppercase;
}
img {
position: absolute;
bottom: 0;
min-width: 100%;
height: 50px
height: 50px;
}
`}</style>
</div>