diff --git a/src/page-about.pug b/src/page-about.pug index ca8b2b3..ae58d0d 100644 --- a/src/page-about.pug +++ b/src/page-about.pug @@ -7,7 +7,7 @@ p Ici un paragraphe qui explique ce qu'est SIB - a https://startinblox.com/fr + a(href="https://startinblox.com/fr" target="_blank") https://startinblox.com/fr div h3 Contacte-nous diff --git a/src/styles/base/about.scss b/src/styles/base/about.scss index 902332e..40691c1 100644 --- a/src/styles/base/about.scss +++ b/src/styles/base/about.scss @@ -1,7 +1,27 @@ #about{ - .flex-content-white{ - div{ + h2,h3{ + text-transform: uppercase; + } + .flex-content-white{ + display: flex; + >div{ + padding: 4.2em 4.7em; + text-align: center; + margin: 0 3em 3em 0; + background: white; + box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.11); + >div{ + display: flex; + flex-direction: column; + justify-content: space-between; + } + } + >div:first-child{ + width: 100%; + } + >div:last-child{ + width: 35%; } } } \ No newline at end of file