Ajouter CSS pour header et pages principales #75
7 changed files with 23 additions and 23 deletions
|
@ -6,7 +6,7 @@ h1 {
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.enteteMenu{
|
||||
.headerMenu{
|
||||
font-family: Poppins;
|
||||
font-weight: 400; /*regular*/
|
||||
font-size: 1.25rem; /*20px*/
|
||||
|
@ -16,18 +16,18 @@ h1 {
|
|||
justify-content: space-around;
|
||||
align-items: center;
|
||||
}
|
||||
.enteteMenuElement:hover{
|
||||
.headerMenuElement:hover{
|
||||
border-bottom: 5px #FF563C solid; /*Orange Highlight*/
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.titre1Page{
|
||||
.heading1{
|
||||
font-family: Poppins;
|
||||
font-weight: 600; /*semi-bold*/
|
||||
font-size: 6rem; /*96px*/
|
||||
color: #394596; /*Bleu AGECEM*/
|
||||
}
|
||||
.titre2Page{
|
||||
.heading2{
|
||||
font-family: Poppins;
|
||||
font-weight: 600; /*semi-bold*/
|
||||
font-size: 1.5rem; /*24px*/
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
</head>
|
||||
<body>
|
||||
{{ template "header-html" }}
|
||||
<h1 class="titre1Page">À propos</h1>
|
||||
<h1 class="heading1">À propos</h1>
|
||||
vlbeaudoin marked this conversation as resolved
Outdated
|
||||
</body>
|
||||
</html>
|
||||
{{ end }}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
</head>
|
||||
<body>
|
||||
{{ template "header-html" }}
|
||||
<h1 class="titre1Page">Actualité</h1>
|
||||
<h1 class="heading1">Actualité</h1>
|
||||
</body>
|
||||
</html>
|
||||
{{ end }}
|
||||
|
|
|
@ -8,19 +8,19 @@
|
|||
</head>
|
||||
<body>
|
||||
{{ template "header-html" }}
|
||||
<h1 class="titre1Page">Upload</h1>
|
||||
<form action="/admin/documents/upload" method="post" enctype="multipart/form-data">
|
||||
<label for="bucket">Type de document:</label>
|
||||
<h1 class="heading1">Upload</h1>
|
||||
<form class="form uploadForm" action="/admin/documents/upload" method="post" enctype="multipart/form-data">
|
||||
<label class="" for="bucket">Type de document:</label>
|
||||
|
||||
<select name="bucket" id="bucket">
|
||||
<option value="proces-verbaux">Procès verbaux</option>
|
||||
<option value="politiques-et-reglements">Politiques et Règlements</option>
|
||||
<select class="formSelect" name="bucket" id="bucket">
|
||||
<option class="formOption" value="proces-verbaux">Procès verbaux</option>
|
||||
<option class="formOption" value="politiques-et-reglements">Politiques et Règlements</option>
|
||||
</select>
|
||||
<br>
|
||||
Document: <input type="file" name="document">
|
||||
Document: <input class="formDocUpload" type="file" name="document">
|
||||
<br>
|
||||
<br>
|
||||
<input type="submit" value="Submit">
|
||||
<input class="formSubmit" type="submit" value="Submit">
|
||||
</form>
|
||||
<p>{{ .Message }}</p>
|
||||
</body>
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
{{ define "header-html" }}
|
||||
|
||||
<div class="header">
|
||||
<ul class="enteteMenu">
|
||||
<li class="enteteMenuElement"><a href="/">index</a></li>
|
||||
<li class="enteteMenuElement"><a href="/a-propos">À propos</a></li>
|
||||
<li class="enteteMenuElement"><a href="/actualite">Actualité</a></li>
|
||||
<li class="enteteMenuElement"><a href="/vie-etudiante">Vie étudiante</a></li>
|
||||
<li class="enteteMenuElement"><a href="/documentation">Documentation</a></li>
|
||||
<li class="enteteMenuElement"><a href="/formulaires">Formulaires</a></li>
|
||||
<ul class="headerMenu">
|
||||
<li class="headerMenuElement"><a href="/">index</a></li>
|
||||
<li class="headerMenuElement"><a href="/a-propos">À propos</a></li>
|
||||
<li class="headerMenuElement"><a href="/actualite">Actualité</a></li>
|
||||
<li class="headerMenuElement"><a href="/vie-etudiante">Vie étudiante</a></li>
|
||||
<li class="headerMenuElement"><a href="/documentation">Documentation</a></li>
|
||||
<li class="headerMenuElement"><a href="/formulaires">Formulaires</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<ul>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
</head>
|
||||
<body>
|
||||
{{ template "header-html" }}
|
||||
<h1 class="titre1Page">Association Générale Étudiante du Cégep Édouard-Montpetit</h1>
|
||||
<h1 class="heading1">Association Générale Étudiante du Cégep Édouard-Montpetit</h1>
|
||||
</body>
|
||||
</html>
|
||||
{{ end }}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
</head>
|
||||
<body>
|
||||
{{ template "header-html" }}
|
||||
<h1 class="titre1Page">Vie étudiante</h1>
|
||||
<h1 class="heading1">Vie étudiante</h1>
|
||||
</body>
|
||||
</html>
|
||||
{{ end }}
|
||||
|
|
Loading…
Reference in a new issue
titre1page
n'est pas très représentatif