Compare commits

..

No commits in common. "339feb2e52b0a4b6b2d209d2756b6a9688899c93" and "966dc49a9e27c367125985148999c19a9046553b" have entirely different histories.

3 changed files with 6 additions and 26 deletions

View file

@ -1,17 +0,0 @@
.adminOptions {
display: flex;
flex-flow: row wrap;
justify-content: space-around;
}
.adminOption {
font-family: 'Poppins';
font-size: 1rem;
font-weight: 500;
background-color: #FF563C;
padding: 10px;
color: #fff;
border: none;
cursor: pointer;
}

View file

@ -19,7 +19,7 @@
.documentationListe {
font-weight: 400;
/*regular*/
/*semi-bold*/
font-size: 1rem;
/*16px*/
background-color: #fff;
@ -29,7 +29,7 @@
.documentationDocument {
font-weight: 400;
/*regular*/
/*semi-bold*/
font-size: 1rem;
/*16px*/
padding: 15px 30px;

View file

@ -5,16 +5,13 @@
<meta charset="utf-8">
<title>AGECEM</title>
{{ template "general-html" }}
<link rel="stylesheet" href="/public/css/admin.css">
</head>
<body>
{{ template "header-html" }}
<div class="wrapper adminWrapper">
<h1 class="heading1">Admin</h1>
<div class="adminOptions">
<button class="adminOption" onclick="location.href = '/admin/documents/upload'">Ajout de document</a>
</div>
</div>
<h1 class="heading1">Admin</h1>
<ul>
<li><a href="/admin/documents/upload">Ajout de document</a></li>
</ul>
</body>
</html>
{{ end }}