diff --git a/assets/css/shared.css b/assets/css/shared.css index a3531298dcfcc0d605d4067313bf408d0a27f14b..2ed0738751567757f4a50ebce07280fa34458836 100644 --- a/assets/css/shared.css +++ b/assets/css/shared.css @@ -3,6 +3,21 @@ body { margin: 0; } +header { + display: flex; + justify-content: space-between; + align-items: center; + padding: 15px 60px; +} + +/* Pour les liens dans la barre de navigation */ +ul { + list-style: none; + margin: 0; + padding: 0; +} + +/* Pour le logo */ header > a { padding: 10px; font-family: "Oleo Script", sans-serif; @@ -12,3 +27,11 @@ header > a { text-shadow: 1px 1px 2px rgb(0, 0, 0); text-decoration: none; } + +header ul { + display: flex; +} + +header li { + margin-left: 20px; +} diff --git a/assets/css/styles.css b/assets/css/styles.css index b1c7d8a95ea1c04fbdafd21d22baa5d0a1b193f9..4d34de5c40f25a095295a731513084fdbff066ca 100644 --- a/assets/css/styles.css +++ b/assets/css/styles.css @@ -1,10 +1,51 @@ -header { - display: flex; - align-items: center; - justify-content: space-between; +section:first-child { + height: 800px; + background-image: url("/assets/images/projects/webDev.jpg"); + background-position: center; + background-size: cover; } -ul { - display: flex; - list-style: none; +section:first-child div { + width: 900px; + background-color: rgba(51, 47, 47, 0.8); + box-shadow: 2px 4px 8px rgb(68, 67, 67); + border-radius: 8px; + text-align: center; + padding: 50px 0; + margin: 0 auto; + + position: relative; + top: 200px; +} + +section:first-child h1 { + color: white; + text-transform: uppercase; + font-size: 50px; + font-family: "Raleway", sans-serif; + margin: 0; +} + +section:first-child p { + color: white; + text-transform: uppercase; + font-size: 24px; + font-weight: 300; + margin-bottom: 32px; +} + +/* Pour le button de Discover projects*/ +section:first-child a { + text-decoration: none; + background-color: rgb(255, 251, 0); + padding: 12px 24px; + color: black; + font-size: 24px; + font-weight: bold; + border-radius: 8px; + box-shadow: 2px 4px 8px rgb(68, 67, 67); +} + +section:first-child a:hover { + background-color: rgb(255, 238, 0); } diff --git a/assets/images/projects/webDev.jpg b/assets/images/projects/webDev.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc9301f275fbab330b3ea36778f5bb0cffeba457 Binary files /dev/null and b/assets/images/projects/webDev.jpg differ diff --git a/index.html b/index.html index 32463862863b17578bee01152ab4063e783672dd..f332b3268a5c1388893cb34bdc843284b79e674b 100644 --- a/index.html +++ b/index.html @@ -19,13 +19,19 @@ <nav> <ul> <li><a href="/presentation.html">Presentation</a></li> - <li><a href="/formation.html">Formation</a></li> + <li><a href="/formation.html">Education</a></li> <li><a href="/contact.html">Contact</a></li> </ul> </nav> </header> <main> - <section></section> + <section> + <div> + <h1>Fellah's Portfolio</h1> + <p>Let's explore my projects together!</p> + <a href="/portfolio.html">Discover projects</a> + </div> + </section> <section></section> </main> <footer></footer> diff --git a/portfolio.html b/portfolio.html new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391