Skip to content
Snippets Groups Projects
Commit 7e98b14d authored by VILLAUME Lucas's avatar VILLAUME Lucas
Browse files

page mydocuments

parent d64eb745
Branches
Tags
1 merge request!2Doc
...@@ -20,4 +20,52 @@ ...@@ -20,4 +20,52 @@
tr:nth-child(odd) td { tr:nth-child(odd) td {
background-color: #f9f9f9; background-color: #f9f9f9;
} }
\ No newline at end of file .navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #081229;
color: white;
}
.navbar_ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #081229;
}
.navbar li {
float: left;
text-align: center;
padding: 20px 16px;
}
.navbar li a {
display: block;
color: white;
text-decoration: none;
}
.navbar li a:hover {
background-color: #111;
}
.navbar button{
float : right;
background: #0b3595;
border: 0;
outline : none;
border-radius: 30px;
color: white;
}
footer {
text-align: center;
padding: 5px;
background-color: #081229;
color: #FFF;
}
public/res/construction.png

71.6 KiB

<!DOCTYPE html>
<html>
<head>
<title>Construction en cours</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: Arial, sans-serif;
background-color: #f1f1f1;
}
.container {
text-align: center;
}
.message {
font-size: 24px;
font-weight: bold;
color: #333;
margin-bottom: 20px;
}
.image {
width: 200px;
height: 200px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<h1 class="message">Construction en cours</h1>
<img class="image" src="res/construction.png" alt="Construction en cours">
<p>Veuillez revenir ultérieurement.</p>
</div>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment