diff --git a/ilpycon/templates/homepage_sponsors.html b/ilpycon/templates/homepage_sponsors.html index df31051..9b46b81 100644 --- a/ilpycon/templates/homepage_sponsors.html +++ b/ilpycon/templates/homepage_sponsors.html @@ -10,22 +10,21 @@

{% trans "Sponsors" %}

{% sponsors sponsor_level.name as level_sponsors %} {% if level_sponsors %}
- + {% endif %} {% endfor %}
- diff --git a/static/src/scss/apps/_eldan.scss b/static/src/scss/apps/_eldan.scss index 389d88b..a2b55d6 100644 --- a/static/src/scss/apps/_eldan.scss +++ b/static/src/scss/apps/_eldan.scss @@ -177,7 +177,7 @@ footer { background-repeat: no-repeat; width: 142px; height: 200px; - background-position-x: right 20px; + background-position-x: right; } } diff --git a/static/src/scss/apps/_sponsors.scss b/static/src/scss/apps/_sponsors.scss index 00f6460..fa72730 100644 --- a/static/src/scss/apps/_sponsors.scss +++ b/static/src/scss/apps/_sponsors.scss @@ -9,15 +9,28 @@ margin: 0.5em auto; padding: 0.3em 0; } - .row { margin-top: 2em; } + .row { + margin-top: 1em; + border-bottom: 1px solid gray; + padding: 10px; + } + .sponsor-name { - text-align: right; + text-align: left; + padding: 20px 70px; + h3 { + color: gray; + } } .sp-logos { - display: flex; - flex-direction: row; align-items: center; - justify-content: space-evenly; } - img { max-height: 100px; } + .sp-logo { + text-align: center; + img { + max-height: 100px; + max-width: 240px; + padding: 10px; + } + } }