Browse Source

Invisihack on the go

master
Luke Murphy 4 years ago
parent
commit
f060e292db
No known key found for this signature in database GPG Key ID: 5E2EF5A63E3718CC
  1. 9
      hbbs/static/css/styles.css
  2. BIN
      hbbs/static/images/logo-invishack.png
  3. 7
      hbbs/templates/layout.html

9
hbbs/static/css/styles.css

@ -26,6 +26,12 @@ body {
animation-duration: 120s;
}
@media (max-width: 768px) {
#hbbs-logo-invisible {
display: none !important;
}
}
ul {
padding-left: 0;
}
@ -34,7 +40,8 @@ ul li {
list-style: none;
}
#hbbs-logo {
#hbbs-logo,
#hbbs-logo-invisible {
width: 90%;
}

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 767 B

7
hbbs/templates/layout.html

@ -42,6 +42,13 @@
</ul>
</div>
<div id="content" class="col-md-4">
<!-- We're sorry... -->
<img
id="hbbs-logo-invisible"
class="img-fluid mx-auto d-block"
src="/static/images/logo-invishack.png"
alt="hbbs logo invisible"
/>
{% block content %}{% endblock %}
</div>
</div>

Loading…
Cancel
Save