Téléverser les fichiers vers "/"

This commit is contained in:
Valentin Moguérou 2023-12-03 19:57:13 +01:00
parent e432ea3ca1
commit 609c13f826
3 changed files with 54 additions and 0 deletions

16
header.html Normal file
View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Header</title>
<link href="navigator.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="unified_navigator">
<a class="logo" href="https://mp2i-vms.fr"><img src="icon.png"><strong>mp2i-vms.fr</strong></a>
<div class="link"><a href="#">Pages personnelles</a></div>
<div class="link"><a href="#">Git</a></div>
<div class="link"><a href="#">Minecraft</a></div>
</div>
</body>
</html>

BIN
icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 KiB

38
navigator.css Normal file
View File

@ -0,0 +1,38 @@
body {
font-family: sans-serif;
margin: 0;
}
.unified_navigator {
padding: 10px 50px;
display: flex;
justify-content: flex-start;
gap: 40px;
background: rgb(42,25,93);
background: linear-gradient(90deg, rgba(42,25,93,1) 8%, rgba(60,11,89,1) 49%, rgba(34,0,71,1) 82%);
color: white;
box-shadow: 0 10px 10px rgb(128, 128, 128);
line-height: 3em;
}
.unified_navigator .link {
//padding: 15px 25px;
//border: 2px solid red;
//border-radius: .5em;
//background: black;
}
.unified_navigator a:link, .unified_navigator a:visited {
color: #dddddd;
text-decoration: none;
font-weight: 500;
}
.unified_navigator a:hover {
color: #ffffff;
}
.unified_navigator img {
height: 2em;
vertical-align: middle;
margin-right: 1em;
}