This commit is contained in:
simoon 2020-04-05 10:47:36 +02:00
commit f39d5ad2d0
8 changed files with 20 additions and 23 deletions

View File

@ -5,29 +5,16 @@
font-style: normal; font-style: normal;
} }
@keyframes gradient { #hbbs-logo {
0% { opacity: 0.75;
background-color: pink;
}
25% {
background-color: lightgreen;
}
50% {
background-color: lightblue;
}
100% {
background-color: cornsilk;
}
} }
body { body {
font-family: "Compagnon Roman", serif; font-family: "Compagnon Roman", serif;
animation-name: gradient;
animation-duration: 120s;
} }
@media (max-width: 768px) { @media (max-width: 768px) {
#hbbs-logo-invisible { #hbbs-bubbles-top {
display: none !important; display: none !important;
} }
} }
@ -41,7 +28,8 @@ ul li {
} }
#hbbs-logo, #hbbs-logo,
#hbbs-logo-invisible { #hbbs-bubbles-top,
#hbbs-bubbles-bottom {
width: 90%; width: 90%;
} }

View File

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

View File

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 767 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.2 KiB

View File

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

View File

@ -31,7 +31,7 @@
<img <img
id="hbbs-logo" id="hbbs-logo"
class="img-fluid mx-auto d-block" class="img-fluid mx-auto d-block"
src="/static/images/logo.png" src="/static/images/logo.svg"
alt="hbbs logo" alt="hbbs logo"
/> />
<ul> <ul>
@ -42,14 +42,23 @@
</ul> </ul>
</div> </div>
<div id="content" class="col-md-4"> <div id="content" class="col-md-4">
<!-- We're sorry... -->
<img <img
id="hbbs-logo-invisible" id="hbbs-bubbles-top"
class="img-fluid mx-auto d-block" class="img-fluid mx-auto d-block"
src="/static/images/logo-invishack.png" src="/static/images/bubbles-top.jpg"
alt="hbbs logo invisible" alt="hbbs bubbles 1"
/>
<div id="content-block">
{% block content %}{% endblock %}
</div>
<img
id="hbbs-bubbles-bottom"
class="img-fluid mx-auto d-block"
src="/static/images/bubbles-bottom.jpg"
alt="hbbs bubbles 2"
/> />
{% block content %}{% endblock %}
</div> </div>
</div> </div>
</div> </div>