first commit

This commit is contained in:
Mateusz Gruszczyński
2025-03-07 22:35:43 +01:00
commit 6bd6284f49
17 changed files with 652 additions and 0 deletions

31
static/css/custom.css Normal file
View File

@ -0,0 +1,31 @@
/* custom.css */
/* Dodatkowy odstęp od góry strony */
body {
padding-top: 60px;
}
/* Zwiększona wysokość progress baru */
.progress {
height: 35px;
font-size: 1.2rem;
}
/* Ujednolicenie wyglądu kart */
.card {
margin-bottom: 20px;
}
/* Drobne poprawki przycisków */
.btn {
text-transform: uppercase;
font-weight: bold;
}
/* Ewentualne zmiany przy linkach */
a {
color: #ffc107;
}
a:hover {
color: #ffeb3b;
}