WIP mucking our way through the image layouts
@ -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%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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
|
<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,15 +42,24 @@
|
|||||||
</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 %}
|
{% block content %}{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<img
|
||||||
|
id="hbbs-bubbles-bottom"
|
||||||
|
class="img-fluid mx-auto d-block"
|
||||||
|
src="/static/images/bubbles-bottom.jpg"
|
||||||
|
alt="hbbs bubbles 2"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|