WIP mucking our way through the image layouts
@ -5,29 +5,16 @@
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@keyframes gradient {
|
||||
0% {
|
||||
background-color: pink;
|
||||
}
|
||||
25% {
|
||||
background-color: lightgreen;
|
||||
}
|
||||
50% {
|
||||
background-color: lightblue;
|
||||
}
|
||||
100% {
|
||||
background-color: cornsilk;
|
||||
}
|
||||
#hbbs-logo {
|
||||
opacity: 0.75;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Compagnon Roman", serif;
|
||||
animation-name: gradient;
|
||||
animation-duration: 120s;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
#hbbs-logo-invisible {
|
||||
#hbbs-bubbles-top {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
@ -41,7 +28,8 @@ ul li {
|
||||
}
|
||||
|
||||
#hbbs-logo,
|
||||
#hbbs-logo-invisible {
|
||||
#hbbs-bubbles-top,
|
||||
#hbbs-bubbles-bottom {
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 159 KiB |
Before Width: | Height: | Size: 767 B |
Before Width: | Height: | Size: 8.2 KiB |
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 5.8 KiB |
@ -31,7 +31,7 @@
|
||||
<img
|
||||
id="hbbs-logo"
|
||||
class="img-fluid mx-auto d-block"
|
||||
src="/static/images/logo.png"
|
||||
src="/static/images/logo.svg"
|
||||
alt="hbbs logo"
|
||||
/>
|
||||
<ul>
|
||||
@ -42,14 +42,23 @@
|
||||
</ul>
|
||||
</div>
|
||||
<div id="content" class="col-md-4">
|
||||
<!-- We're sorry... -->
|
||||
<img
|
||||
id="hbbs-logo-invisible"
|
||||
id="hbbs-bubbles-top"
|
||||
class="img-fluid mx-auto d-block"
|
||||
src="/static/images/logo-invishack.png"
|
||||
alt="hbbs logo invisible"
|
||||
src="/static/images/bubbles-top.jpg"
|
||||
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>
|
||||
|