From bacbce2d6d119d197a2c54bd0c9eea67e3719b50 Mon Sep 17 00:00:00 2001 From: abdoul aziz diallo <abdoul-aziz.diallo@etu.unistra.fr> Date: Tue, 7 Feb 2023 18:37:37 +0100 Subject: [PATCH] Restarted from scratch --- assets/css/styles.css | 57 ------------------------------------------- index.html | 5 ++-- 2 files changed, 2 insertions(+), 60 deletions(-) delete mode 100644 assets/css/styles.css diff --git a/assets/css/styles.css b/assets/css/styles.css deleted file mode 100644 index 1749504..0000000 --- a/assets/css/styles.css +++ /dev/null @@ -1,57 +0,0 @@ -body { - font-family: "Quicksand", sans-serif; - margin: 0; - background-color: rgb(20, 14, 14); - color: white; -} - -body > header { - padding: 15px 60px; - display: flex; - justify-content: space-between; - background-color: rgb(46, 40, 40); - align-items: center; - /* position: absolute; */ - width: 100%; /* will occupy the whole screen */ - box-sizing: border-box; /*help us to do not exceed the body width*/ -} - -ul { - font-size: 25px; - display: flex; - margin: 0; - padding: 0; -} - -ul { - font-size: 25px; - display: flex; - margin: 0; - padding: 0; -} - -ul li { - list-style: none; - padding: 0 10px; - /* border-right: 1px solid black; */ -} - -ul li:not(:last-child) { - border-right: 1px solid white; -} - -ul li a { - text-decoration: none; - color: white; - text-decoration-line: underline; -} - -#page-logo a { - font-family: "IBM Plex Mono", monospace; - padding: 12px; - font-size: 50px; - text-transform: uppercase; - text-decoration: none; - color: rgb(248, 248, 238); - text-shadow: 1px 1px 2px rgb(0, 0, 0); -} diff --git a/index.html b/index.html index 8c85d4d..060bf21 100644 --- a/index.html +++ b/index.html @@ -10,9 +10,7 @@ <body> <header> <!--I added this.--> - <div id="page-logo"> - <a href="/index.html">fellah</a> - </div> + <a href="/index.html">fellah</a> <nav> <ul> <li><a href="/presentation.html">Presentation</a></li> @@ -21,5 +19,6 @@ </ul> </nav> </header> + <main></main> </body> </html> -- GitLab