Browse Source

Fix fotek na pozadí na mobilu, #header je kekel!

export_seznamu_prednasek
Jonas Havelka 4 years ago
parent
commit
a3ca33841e
  1. 4
      mamweb/static/css/mamweb.css
  2. 4
      mamweb/templates/base.html

4
mamweb/static/css/mamweb.css

@ -581,6 +581,10 @@ div.org-text {
/* malý tablet, mobil */
@media (max-width: 650px) {
.no-mobile{
display: none;
}
#hide-if-small.login-bar-flatpage {
display: none;
}

4
mamweb/templates/base.html

@ -56,9 +56,11 @@
<div class='col-md-12'>
<a href='/'>
<div id="title" >M&M - korespondenční seminář a časopis MFF&nbspUK</div>
<div id="header" style="background-image: url('{{ fotka }}')">
<div id="header">
<div class="no-mobile" style="background-image: url('{{ fotka }}')">
{# TODO style=… není fancy řešení, ale u <img> se bojím, že mi to rozbije vzhled #}
{% sitetree_menu from "main_menu" include "trunk" template "logo.html" %}
</div>
<img class="logo-mobile" src="{% static 'images/logo-mobile.svg' %}" />
</div>
</a>

Loading…
Cancel
Save