1
0
This commit is contained in:
matt 2025-02-01 10:57:01 +01:00
parent 5b4c7ac097
commit b58ba489f8

View File

@ -1,5 +1,8 @@
<html>
<head>
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Creative Crafter</title>
<link href="" rel="stylesheet">
<style>
@ -16,9 +19,32 @@
h2 {
text-align: center;
}
.button {
padding: 16px 32px; /* Doppelte Größe */
border-radius: 8px;
background: linear-gradient(to bottom, #007bff, #0056b3); /* Blau */
box-shadow: 0 2px 4px rgba(0,0,0,0.7);
transition: all 0.2s;
display: flex;
align-items: center;
gap: 8px;
margin-top: 20px; /* Abstand zum oberen Inhalt */
}
.button:hover {
box-shadow: 0 4px 8px rgba(0,0,0,0.6);
}
.button:active {
box-shadow: 0 0px 1px rgba(0,0,0,0.8);
transform: scale(0.995);
}
.button-text {
font-weight: 600;
color: white;
font-size: 1.5em; /* Textgröße anpassen */
}
</style>
</head>
<body>
</head>
<body>
<h1><img src="/icons/Controller.png" height="150svh">
<br/>
Creative Crafter</h1>
@ -38,6 +64,12 @@
<br/>
Creative Crafter</h1></div>
<div style="float:right;"></div>
</body>
<!-- Button hinzufügen -->
<button class="button" onclick="window.location.href='/programmieren/spiele/'">
<div class="button-inner">
<span class="button-text">Games</span>
</div>
</button>
</body>
</html>