Ajouter CSS pour header et pages principales #75
10 changed files with 44 additions and 16 deletions
|
@ -1,3 +1,31 @@
|
|||
h1 {
|
||||
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>
|
||||
<body>
|
||||
{{ template "header-html" }}
|
||||
<h1>À propos</h1>
|
||||
<h1 class="titre1Page">À propos</h1>
|
||||
vlbeaudoin marked this conversation as resolved
Outdated
|
||||
</body>
|
||||
</html>
|
||||
{{ end }}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
</head>
|
||||
<body>
|
||||
{{ template "header-html" }}
|
||||
<h1>Actualité</h1>
|
||||
<h1 class="titre1Page">Actualité</h1>
|
||||
</body>
|
||||
</html>
|
||||
{{ end }}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
</head>
|
||||
<body>
|
||||
{{ template "header-html" }}
|
||||
<h1>Upload</h1>
|
||||
<h1 class="titre1Page">Upload</h1>
|
||||
<form action="/admin/documents/upload" method="post" enctype="multipart/form-data">
|
||||
<label for="bucket">Type de document:</label>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
</head>
|
||||
<body>
|
||||
{{ template "header-html" }}
|
||||
<h1>Admin</h1>
|
||||
<h1 class="titre1Page">Admin</h1>
|
||||
<ul>
|
||||
<li><a href="/admin/documents/upload">Ajout de document</a></li>
|
||||
</ul>
|
||||
|
|
|
@ -8,11 +8,11 @@
|
|||
</head>
|
||||
<body>
|
||||
{{ template "header-html" }}
|
||||
<h1>Documentation</h1>
|
||||
<h1 class="titre1Page">Documentation</h1>
|
||||
<p>
|
||||
{{ range . }}
|
||||
{{ $bucket_name := .Name }}
|
||||
<h2>{{ $bucket_name }}</h2>
|
||||
<h2 class="titre2Page">{{ $bucket_name }}</h2>
|
||||
|
||||
<ul>
|
||||
{{ range .Documents }}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
</head>
|
||||
<body>
|
||||
{{ template "header-html" }}
|
||||
<h1>Formulaires</h1>
|
||||
<h1 class="titre1Page">Formulaires</h1>
|
||||
</body>
|
||||
</html>
|
||||
{{ end }}
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{{ define "header-html" }}
|
||||
|
||||
<ul>
|
||||
<li><a href="/">index</a></li>
|
||||
<li><a href="/a-propos">À propos</a></li>
|
||||
<li><a href="/actualite">Actualité</a></li>
|
||||
<li><a href="/vie-etudiante">Vie étudiante</a></li>
|
||||
<li><a href="/documentation">Documentation</a></li>
|
||||
<li><a href="/formulaires">Formulaires</a></li>
|
||||
<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>
|
||||
|
||||
<ul>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
</head>
|
||||
<body>
|
||||
{{ 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>
|
||||
</html>
|
||||
{{ end }}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
</head>
|
||||
<body>
|
||||
{{ template "header-html" }}
|
||||
<h1>Vie étudiante</h1>
|
||||
<h1 class="titre1Page">Vie étudiante</h1>
|
||||
</body>
|
||||
</html>
|
||||
{{ end }}
|
||||
|
|
Loading…
Reference in a new issue
titre1page
n'est pas très représentatif