feature/affichage-documentation #105
2 changed files with 50 additions and 4 deletions
45
public/css/documentation.css
Normal file
45
public/css/documentation.css
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
.documentationCategorie {
|
||||||
|
font-family: "Poppins";
|
||||||
|
font-weight: 600;
|
||||||
|
/*semi-bold*/
|
||||||
|
font-size: 1.5rem;
|
||||||
|
/*24px*/
|
||||||
|
color: #fff;
|
||||||
|
/*Blanc pur*/
|
||||||
|
background-color: #394596;
|
||||||
|
/*Blanc pur*/
|
||||||
|
text-align: left;
|
||||||
|
width: 100%;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.documentationDescription {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.documentationListe {
|
||||||
|
font-weight: 400;
|
||||||
|
/*semi-bold*/
|
||||||
|
font-size: 1rem;
|
||||||
|
/*16px*/
|
||||||
|
background-color: #fff;
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.documentationDocument {
|
||||||
|
font-weight: 400;
|
||||||
|
/*semi-bold*/
|
||||||
|
font-size: 1rem;
|
||||||
|
/*16px*/
|
||||||
|
padding: 15px 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.documentationDocument:hover {
|
||||||
|
background-color: rgba(255, 86, 60, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.documentationLien {
|
||||||
|
height: inherit;
|
||||||
|
width: inherit;
|
||||||
|
}
|
|
@ -4,6 +4,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>AGECEM | Documentation</title>
|
<title>AGECEM | Documentation</title>
|
||||||
|
<link rel="stylesheet" href="/public/css/documentation.css">
|
||||||
{{ template "general-html" }}
|
{{ template "general-html" }}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
@ -14,12 +15,12 @@
|
||||||
{{ range . }}
|
{{ range . }}
|
||||||
{{ $bucket_name := .Name }}
|
{{ $bucket_name := .Name }}
|
||||||
{{ $bucket_display_name := .DisplayName }}
|
{{ $bucket_display_name := .DisplayName }}
|
||||||
<details>
|
<details class="documentationCategorie">
|
||||||
<summary>{{ $bucket_display_name }}</summary>
|
<summary class="documentationDescription">{{ $bucket_display_name }}</summary>
|
||||||
|
|
||||||
<ul>
|
<ul class="documentationListe">
|
||||||
{{ range .Documents }}
|
{{ range .Documents }}
|
||||||
<li> <a href="/public/documentation/{{ $bucket_name }}/{{ . }}">{{ . }}</a></li>
|
<a class ="documentationLien" href="/public/documentation/{{ $bucket_name }}/{{ . }}"><li class="documentationDocument">{{ . }}</li></a>
|
||||||
{{ end}}
|
{{ end}}
|
||||||
</ul>
|
</ul>
|
||||||
</details>
|
</details>
|
||||||
|
|
Loading…
Reference in a new issue