Skip to content
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
26 changes: 10 additions & 16 deletions static/css/style.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
/*! tailwindcss v4.3.1 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
Expand Down Expand Up @@ -239,12 +239,6 @@
.sticky {
position: sticky;
}
.start {
inset-inline-start: var(--spacing);
}
.end {
inset-inline-end: var(--spacing);
}
.z-0 {
z-index: 0;
}
Expand All @@ -267,7 +261,7 @@
}
}
.m-0 {
margin: calc(var(--spacing) * 0);
margin: 0;
}
.mx-3 {
margin-inline: calc(var(--spacing) * 3);
Expand All @@ -282,7 +276,7 @@
margin-top: calc(var(--spacing) * 0.5);
}
.mt-1 {
margin-top: calc(var(--spacing) * 1);
margin-top: var(--spacing);
}
.mt-2 {
margin-top: calc(var(--spacing) * 2);
Expand All @@ -306,7 +300,7 @@
margin-right: calc(var(--spacing) * 2);
}
.mb-1 {
margin-bottom: calc(var(--spacing) * 1);
margin-bottom: var(--spacing);
}
.mb-2 {
margin-bottom: calc(var(--spacing) * 2);
Expand Down Expand Up @@ -482,7 +476,7 @@
justify-content: center;
}
.gap-1 {
gap: calc(var(--spacing) * 1);
gap: var(--spacing);
}
.gap-2 {
gap: calc(var(--spacing) * 2);
Expand Down Expand Up @@ -629,7 +623,7 @@
padding: calc(var(--spacing) * 6);
}
.px-1 {
padding-inline: calc(var(--spacing) * 1);
padding-inline: var(--spacing);
}
.px-2 {
padding-inline: calc(var(--spacing) * 2);
Expand All @@ -641,7 +635,7 @@
padding-inline: calc(var(--spacing) * 8);
}
.py-1 {
padding-block: calc(var(--spacing) * 1);
padding-block: var(--spacing);
}
.py-3 {
padding-block: calc(var(--spacing) * 3);
Expand Down Expand Up @@ -710,8 +704,8 @@
line-height: var(--tw-leading, var(--text-xs--line-height));
}
.leading-0 {
--tw-leading: calc(var(--spacing) * 0);
line-height: calc(var(--spacing) * 0);
--tw-leading: 0;
line-height: 0;
}
.leading-relaxed {
--tw-leading: var(--leading-relaxed);
Expand Down Expand Up @@ -965,7 +959,7 @@
}
.md\:mt-0 {
@media (width >= 48rem) {
margin-top: calc(var(--spacing) * 0);
margin-top: 0;
}
}
.md\:max-w-2xl {
Expand Down
12 changes: 12 additions & 0 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,18 @@ <h4 class="text-lg font-semibold text-center group-hover:text-blue-600 transitio
</h4>
</div>
</a>
<a target="_blank" href="https://aisler.net/" class="block group">
<div class="highlighted-grid-element h-80 flex flex-col items-center justify-center">
<div class="w-64 h-64 mb-4 flex items-center justify-center">
<img alt="Aisler logo" src="/sponsor_logos/aisler.png">
</div>
<h4 class="text-lg font-semibold text-center group-hover:text-blue-600 transition-colors duration-300">
Aisler
<br>
(Bronze Sponsor)
</h4>
</div>
</a>
<a target="_blank" href="https://www.vde-bayern.de/de" class="block group">
<div class="highlighted-grid-element h-80 flex flex-col items-center justify-center">
<div class="w-64 h-64 mb-4 flex items-center justify-center">
Expand Down
14 changes: 14 additions & 0 deletions templates/index_en.html
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,20 @@ <h4 class="text-lg font-semibold text-center group-hover:text-blue-600 transitio
</h4>
</div>
</a>
<a target="_blank" href="https://aisler.net/" class="block group">

<div class="highlighted-grid-element h-80 flex flex-col items-center justify-center">

<div class="w-64 h-64 mb-4 flex items-center justify-center">
<img alt="Aisler logo" src="/sponsor_logos/aisler.png">
</div>
<h4 class="text-lg font-semibold text-center group-hover:text-blue-600 transition-colors duration-300">
Aisler
<br>
(Bronze Sponsor)
</h4>
</div>
</a>
<a target="_blank" href="https://www.vde-bayern.de/de" class="block group">

<div class="highlighted-grid-element h-80 flex flex-col items-center justify-center">
Expand Down
Loading