simoon 4 years ago
parent
commit
f39d5ad2d0
  1. 22
      hbbs/static/css/styles.css
  2. 0
      hbbs/static/images/bubbles-bottom.jpg
  3. 0
      hbbs/static/images/bubbles-top.jpg
  4. BIN
      hbbs/static/images/bubbles.jpg
  5. BIN
      hbbs/static/images/logo-invishack.png
  6. BIN
      hbbs/static/images/logo.png
  7. 0
      hbbs/static/images/logo.svg
  8. 21
      hbbs/templates/layout.html

22
hbbs/static/css/styles.css

@ -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%;
}

0
hbbs/static/images/bubbles_bottom.jpg → hbbs/static/images/bubbles-bottom.jpg

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

0
hbbs/static/images/bubbles_top.jpg → hbbs/static/images/bubbles-top.jpg

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

BIN
hbbs/static/images/bubbles.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 159 KiB

BIN
hbbs/static/images/logo-invishack.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 767 B

BIN
hbbs/static/images/logo.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.2 KiB

0
hbbs/static/images/hbbs_logo.svg → hbbs/static/images/logo.svg

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

21
hbbs/templates/layout.html

@ -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>

Loading…
Cancel
Save