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