Fixes d'affichage
changement css à l'affichage des liens de base et des liens particuliers Retrait du bg sur le message de confirmation de admin-upload.gohtml
This commit is contained in:
parent
0ca4fd9750
commit
9a23995692
5 changed files with 14 additions and 11 deletions
|
@ -96,7 +96,6 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
background-color: #C4C4C4;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 768px) {
|
@media screen and (min-width: 768px) {
|
||||||
|
|
|
@ -42,4 +42,5 @@
|
||||||
.documentationLien {
|
.documentationLien {
|
||||||
height: inherit;
|
height: inherit;
|
||||||
width: inherit;
|
width: inherit;
|
||||||
|
color: #000;
|
||||||
}
|
}
|
|
@ -21,6 +21,11 @@ ul {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #FF563C;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
.wrapper {
|
.wrapper {
|
||||||
max-width: 375px;
|
max-width: 375px;
|
||||||
width: calc(100% - var(5px));
|
width: calc(100% - var(5px));
|
||||||
|
|
|
@ -15,14 +15,12 @@
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
.headerMenuElementLink {
|
||||||
color: #000;
|
color: #000;
|
||||||
text-decoration: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a:visited {
|
.headerMenuElementLink:visited {
|
||||||
color: #000;
|
color: #000;
|
||||||
text-decoration: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.headerMenu {
|
.headerMenu {
|
||||||
|
|
|
@ -3,16 +3,16 @@
|
||||||
<div class="wrapper headerWrapper">
|
<div class="wrapper headerWrapper">
|
||||||
<a class="headerLink" href="/"><img class="headerMenuLogo" src="/public/icones/agecem-logo.svg"></img></a>
|
<a class="headerLink" href="/"><img class="headerMenuLogo" src="/public/icones/agecem-logo.svg"></img></a>
|
||||||
<ul class="headerMenu">
|
<ul class="headerMenu">
|
||||||
<li class="headerMenuElement"><a href="/vie-etudiante">Vie étudiante</a></li>
|
<li class="headerMenuElement"><a class="headerMenuElementLink" href="/vie-etudiante">Vie étudiante</a></li>
|
||||||
<li class="headerMenuElement"><a href="/documentation">Documentation</a></li>
|
<li class="headerMenuElement"><a class="headerMenuElementLink" href="/documentation">Documentation</a></li>
|
||||||
<li class="headerMenuElement"><a href="/admin">admin</a></li>
|
<li class="headerMenuElement"><a class="headerMenuElementLink" href="/admin">admin</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<img class="headerMenuHamburger" src="/public/icones/hamburger-menu.svg" onclick="onToggleNav()"></img>
|
<img class="headerMenuHamburger" src="/public/icones/hamburger-menu.svg" onclick="onToggleNav()"></img>
|
||||||
</div>
|
</div>
|
||||||
<ul class="headerMenuMobile">
|
<ul class="headerMenuMobile">
|
||||||
<li class="headerMenuElement"><a href="/vie-etudiante">Vie étudiante</a></li>
|
<li class="headerMenuElement"><a class="headerMenuElementLink" href="/vie-etudiante">Vie étudiante</a></li>
|
||||||
<li class="headerMenuElement"><a href="/documentation">Documentation</a></li>
|
<li class="headerMenuElement"><a class="headerMenuElementLink" href="/documentation">Documentation</a></li>
|
||||||
<li class="headerMenuElement"><a href="/admin">admin</a></li>
|
<li class="headerMenuElement"><a class="headerMenuElementLink" href="/admin">admin</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in a new issue