Extract CSS out of HTML
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
nemunaire 2023-02-09 11:49:05 +01:00
parent 0f01ea15d4
commit 93fe6fe8e1
2 changed files with 17 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<div id="voxppl" style="display: none"> <div id="voxppl">
<a href="https://framaforms.org/une-minute-pour-nous-dire-ou-aller-1610359677" class="d-flex p-3 text-light row umami--click--survey" style="position: fixed; bottom: 5vh; right: 5vw; border-radius: 5px; background-color: #9332bbee"> <a href="https://framaforms.org/une-minute-pour-nous-dire-ou-aller-1610359677" class="d-flex p-3 text-light row umami--click--survey">
<h1 class="col-auto align-self-center"> <h1 class="col-auto align-self-center">
<i class="bi bi-megaphone-fill"></i> <i class="bi bi-megaphone-fill"></i>
</h1> </h1>

View File

@ -56,6 +56,21 @@ nav.navbar.scrolled {
background-color: yellow; background-color: yellow;
} }
#voxppl {
display: none;
}
#voxppl a {
position: fixed;
bottom: 5vh;
right: 5vw;
border-radius: 5px;
background-color: #9332bbee;
}
#voxppl a:hover {
text-decoration: none;
background-color: #9332bb;
}
footer { footer {
border-top: 3px solid #9332bb; border-top: 3px solid #9332bb;
} }