43 lines
977 B
HTML
43 lines
977 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>SpaceTaxi Quittung</title>
|
|
<style>
|
|
body{
|
|
|
|
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
|
|
background-color: black;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
height: 100vh;
|
|
color: white;
|
|
}
|
|
|
|
.zelle
|
|
{
|
|
border: 3px solid white;
|
|
width: 50vw;
|
|
height: 10vw;
|
|
border-radius: 15px;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 3vh;
|
|
padding: 1vw;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
|
|
<body>
|
|
<div class="zelle" id="feedback">
|
|
Hallo was auch immerdas gibt ein großes Feuerwerk im ALl und vieles vieles mehr
|
|
</div>
|
|
</body>
|
|
|
|
</html> |