neu
This commit is contained in:
parent
5b4c7ac097
commit
b58ba489f8
@ -1,5 +1,8 @@
|
|||||||
<html>
|
<!DOCTYPE html>
|
||||||
<head>
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Creative Crafter</title>
|
<title>Creative Crafter</title>
|
||||||
<link href="" rel="stylesheet">
|
<link href="" rel="stylesheet">
|
||||||
<style>
|
<style>
|
||||||
@ -16,9 +19,32 @@
|
|||||||
h2 {
|
h2 {
|
||||||
text-align: center;
|
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>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1><img src="/icons/Controller.png" height="150svh">
|
<h1><img src="/icons/Controller.png" height="150svh">
|
||||||
<br/>
|
<br/>
|
||||||
Creative Crafter</h1>
|
Creative Crafter</h1>
|
||||||
@ -38,6 +64,12 @@
|
|||||||
<br/>
|
<br/>
|
||||||
Creative Crafter</h1></div>
|
Creative Crafter</h1></div>
|
||||||
<div style="float:right;"></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>
|
</html>
|
Loading…
x
Reference in New Issue
Block a user