modified: app.py

modified:   templates/playlists.html
This commit is contained in:
SimolZimol
2025-06-04 17:22:23 +02:00
parent 7f357cd4da
commit 7f6f52c783
2 changed files with 40 additions and 0 deletions

View File

@@ -51,6 +51,22 @@
background-color: #1ed760;
transform: scale(1.04);
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border-radius: 5px;
text-decoration: none;
font-size: 1em;
font-weight: bold;
transition: background 0.2s, transform 0.2s;
margin-top: 20px;
}
.btn:hover {
background-color: #0056b3;
transform: scale(1.05);
}
</style>
</head>
<body>
@@ -64,6 +80,7 @@
<li><a class="playlist-link" href="/gamemodes/{{ pl.id }}">{{ pl.name }}</a></li>
{% endfor %}
</ul>
<a href="{{ url_for('invite') }}?duration=60" class="btn">Gast einladen (1h-Link)</a>
</div>
</body>
</html>