Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hosting logos SVG #497

Merged
merged 4 commits into from
Aug 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions inyoka_theme_ubuntuusers/jinja2/overall.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
</a>

<a href="https://www.centron.de/" class="sponsor_link" target="_blank">
hosted by <img src="{{ href('static', 'img/centron-logo.png') }}" alt="centron">
hosted by <img src="{{ href('static', 'img/Centron_Logo_white.svg') }}" alt="centron">
</a>

<ul>
Expand Down Expand Up @@ -255,7 +255,8 @@ <h1><a href="/"><span>{{ SETTINGS.BASE_DOMAIN_NAME }}</span></a></h1>
</li>
<li class="housing">
<span title="Unterbringung und Netzanbindung eines Servers">Serverhousing</span> gespendet von<br>
<a href="https://www.anexia.at/managed-hosting/"><img src="{{ href('static', 'img/anexia_logo.png') }}" alt="anexia"></a>
<a class="housing-anexia" href="https://www.anexia.at/managed-hosting/"><img src="{{ href('static', 'img/anexia_logo.png') }}" alt="anexia"></a>
<a href="https://www.netcologne.de"><img src="{{ href('static', 'img/NetCologne_Logo_WHITE_quer.svg') }}" alt="NetCologne"></a>
</li>
</ul>
</footer>{# .footer #}
Expand Down
2 changes: 2 additions & 0 deletions inyoka_theme_ubuntuusers/static/img/Centron_Logo_white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed inyoka_theme_ubuntuusers/static/img/centron-logo.png
Binary file not shown.
9 changes: 8 additions & 1 deletion inyoka_theme_ubuntuusers/static/style/main.less
Original file line number Diff line number Diff line change
Expand Up @@ -934,16 +934,23 @@ form.search {
justify-content: space-between;
flex-wrap: wrap;
}

> ul > li {
/* top and bottom padding on each li → if they wrap, there's spacing between each other */
/* top and bottom padding on each li → if they wrap, there's spacing between each other */
padding: 1em 0;
}

a {
color: #fff;
text-decoration: underline;
}

.housing img {
margin-right: 1em;
height: 2em;
}

.housing-anexia img {
background-color: #fff;
}

Expand Down