Ajouter CSS pour header et pages principales #75
10 changed files with 44 additions and 16 deletions
|
@ -1,3 +1,31 @@
|
||||||
h1 {
|
h1 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ul.enteteMenu{
|
||||||
|
font-family: Poppins;
|
||||||
|
font-weight: 400; /*regular*/
|
||||||
|
font-size: 1.25rem; /*20px*/
|
||||||
|
color: #000; /*Noir pur*/
|
||||||
|
display: flex;
|
||||||
|
flex-flow: row;
|
||||||
|
justify-content: start;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
li.enteteMenuElement:hover{
|
||||||
|
border-bottom: 5px #FF563C solid; /*Orange Highlight*/
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1.titre1Page{
|
||||||
|
font-family: Poppins;
|
||||||
|
font-weight: 600; /*semi-bold*/
|
||||||
|
font-size: 6rem; /*96px*/
|
||||||
|
color: #394596; /*Bleu AGECEM*/
|
||||||
|
}
|
||||||
|
h2.titre2Page{
|
||||||
|
font-family: Poppins;
|
||||||
|
font-weight: 600; /*semi-bold*/
|
||||||
|
font-size: 1.5rem; /*24px*/
|
||||||
|
color: #394596; /*Bleu AGECEM*/
|
||||||
|
}
|
|
@ -8,7 +8,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{ template "header-html" }}
|
{{ template "header-html" }}
|
||||||
<h1>À propos</h1>
|
<h1 class="titre1Page">À propos</h1>
|
||||||
vlbeaudoin marked this conversation as resolved
Outdated
|
|||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{ template "header-html" }}
|
{{ template "header-html" }}
|
||||||
<h1>Actualité</h1>
|
<h1 class="titre1Page">Actualité</h1>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{ template "header-html" }}
|
{{ template "header-html" }}
|
||||||
<h1>Upload</h1>
|
<h1 class="titre1Page">Upload</h1>
|
||||||
<form action="/admin/documents/upload" method="post" enctype="multipart/form-data">
|
<form action="/admin/documents/upload" method="post" enctype="multipart/form-data">
|
||||||
<label for="bucket">Type de document:</label>
|
<label for="bucket">Type de document:</label>
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{ template "header-html" }}
|
{{ template "header-html" }}
|
||||||
<h1>Admin</h1>
|
<h1 class="titre1Page">Admin</h1>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/admin/documents/upload">Ajout de document</a></li>
|
<li><a href="/admin/documents/upload">Ajout de document</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -8,11 +8,11 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{ template "header-html" }}
|
{{ template "header-html" }}
|
||||||
<h1>Documentation</h1>
|
<h1 class="titre1Page">Documentation</h1>
|
||||||
<p>
|
<p>
|
||||||
{{ range . }}
|
{{ range . }}
|
||||||
{{ $bucket_name := .Name }}
|
{{ $bucket_name := .Name }}
|
||||||
<h2>{{ $bucket_name }}</h2>
|
<h2 class="titre2Page">{{ $bucket_name }}</h2>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
{{ range .Documents }}
|
{{ range .Documents }}
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{ template "header-html" }}
|
{{ template "header-html" }}
|
||||||
<h1>Formulaires</h1>
|
<h1 class="titre1Page">Formulaires</h1>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{{ define "header-html" }}
|
{{ define "header-html" }}
|
||||||
|
|
||||||
<ul>
|
<ul class="enteteMenu">
|
||||||
<li><a href="/">index</a></li>
|
<li class="enteteMenuElement"><a href="/">index</a></li>
|
||||||
<li><a href="/a-propos">À propos</a></li>
|
<li class="enteteMenuElement"><a href="/a-propos">À propos</a></li>
|
||||||
<li><a href="/actualite">Actualité</a></li>
|
<li class="enteteMenuElement"><a href="/actualite">Actualité</a></li>
|
||||||
<li><a href="/vie-etudiante">Vie étudiante</a></li>
|
<li class="enteteMenuElement"><a href="/vie-etudiante">Vie étudiante</a></li>
|
||||||
<li><a href="/documentation">Documentation</a></li>
|
<li class="enteteMenuElement"><a href="/documentation">Documentation</a></li>
|
||||||
<li><a href="/formulaires">Formulaires</a></li>
|
<li class="enteteMenuElement"><a href="/formulaires">Formulaires</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{ template "header-html" }}
|
{{ template "header-html" }}
|
||||||
<h1>Association Générale Étudiante du Cégep Édouard-Montpetit</h1>
|
<h1 class="titre1Page">Association Générale Étudiante du Cégep Édouard-Montpetit</h1>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{ template "header-html" }}
|
{{ template "header-html" }}
|
||||||
<h1>Vie étudiante</h1>
|
<h1 class="titre1Page">Vie étudiante</h1>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in a new issue
titre1page
n'est pas très représentatif