added logo to login-page
This commit is contained in:
parent
6d24007b56
commit
81e906c01d
2 changed files with 27 additions and 1 deletions
|
|
@ -296,3 +296,27 @@ tr:nth-child(even) td {
|
||||||
display: block;
|
display: block;
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.logo-container {
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo-container img {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
width: 150px; /* Standardbreite für das Logo */
|
||||||
|
transition: width 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.logo-container img {
|
||||||
|
width: 120px; /* Kleinere Breite auf kleineren Bildschirmen */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
.logo-container img {
|
||||||
|
width: 100px; /* Noch kleinere Breite auf sehr kleinen Bildschirmen */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue