merge new front-end #3

Merged
sherl merged 8 commits from frontend into master 2025-06-05 10:30:28 +02:00
3 changed files with 31 additions and 2 deletions
Showing only changes of commit 2cfa5f1fa4 - Show all commits

View File

@@ -688,7 +688,35 @@ body.poland-mode .stat-box {
body.poland-mode .stat-box h3 { body.poland-mode .stat-box h3 {
color: white; color: white;
} }
body.poland-mode .club-stats h2{
background: linear-gradient(to bottom, #ff0000,#231212);
border: 4px solid white;
color: white;
}
body.poland-mode .about-section {
background-color: var(--polska-section-color);
color: white;
}
body.poland-mode .about-section article h3 {
background-color: var(--polska-red-dark);
color: white;
}
body.poland-mode .about-section article h4 {
background-color: #ffcaca;
color: black;
border-radius: 5px;
}
body.poland-mode .general-stats-section h2 {
background: var(--polska-section-color);
}
body.poland-mode .general-stats-section .grid article:nth-child(1){background-color: var(--polska-red-dark);}
body.poland-mode .general-stats-section .grid article:nth-child(2){background-color: var(--yellow-highlight);}
body.poland-mode .general-stats-section .grid article:nth-child(3){background-color: var(--barca-blue);}
body.poland-mode .about-section-image::after{
background:var(--polska-red-dark);
}
/* Przyciski i elementy */ /* Przyciski i elementy */

View File

@@ -13,6 +13,7 @@
<a href="{{ url_for('clubs', club='Borussia Dortmund') }}"> <a href="{{ url_for('clubs', club='Borussia Dortmund') }}">
<button><img src="{{ url_for('static', filename='Borussia_Dortmund.png') }}"></button> <button><img src="{{ url_for('static', filename='Borussia_Dortmund.png') }}"></button>
</a> </a>
<!--Jak nie będzie statysytk dla lecha to usunać-->
<a href="{{ url_for('clubs', club='Lech Poznan') }}"> <a href="{{ url_for('clubs', club='Lech Poznan') }}">
<button><img src="{{ url_for('static', filename='Lech_Poznan.png') }}"></button> <button><img src="{{ url_for('static', filename='Lech_Poznan.png') }}"></button>
</a> </a>

View File

@@ -33,7 +33,7 @@
<a href="/club">Zobacz osiągnięcia</a> <a href="/club">Zobacz osiągnięcia</a>
</article> </article>
</section> </section>
<!--
<section class="general-stats-section"> <section class="general-stats-section">
<h2>Ogólne statystyki:</h3> <h2>Ogólne statystyki:</h3>
<div class="grid"> <div class="grid">
@@ -52,7 +52,7 @@
</article> </article>
</div> </div>
</section> </section>
-->
</div> </div>
{% endblock %} {% endblock %}