added thanks page

This commit is contained in:
MrFry 2020-01-22 17:18:07 +01:00
parent 32881a5080
commit 595d4e02e0

View file

@ -1,28 +1,114 @@
<html> <!DOCTYPE html>
<body bgcolor="#212127"> <html lang="en">
<head> <head>
<title>Question mining</title> <meta charset="UTF-8">
<meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=0.8" /> <link href="https://fonts.googleapis.com/css?family=Quicksand&display=swap" rel="stylesheet">
<style> <title>Thank you!</title>
body { <style>
font: normal 14px Verdana; :root{
color: #999999; --size: 100px;
} --bgcolor: #212127;
--color: #fcff4f;
a { --shadow: rgba(30,2,5,.2);
color: #9999ff; }
} .surface {
</style> position:absolute;
top: 50%;
left: 50%;
transform-style: preserve-3d;
transform: translate(-50%,-50%) rotateX(70deg) rotateZ(300deg);
width: 300px;
height: 300px;
animation: rotatingCoin 1s linear infinite;
}
.coin,
.shadow {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%) rotateX(30deg);
width: 100px;
height: 100px;
background-image: url('https://i.ya-webdesign.com/images/mario-coin-png-19.png');
background-position: center;
background-size: cover;
background-color: var(--color);
border-radius: 50%;
}
.shadow {
width: 90px;
height: 90px;
transform: translate(-50%,-50%) translateZ(-25px);
background: linear-gradient(to bottom, rgba(255,255,255,.2) 0%,var(--bgcolor) 35%);
}
</head> @keyframes rotatingCoin {
from {transform: translate(-50%,-50%) rotateX(70deg) rotateZ(0);}
to {transform: translate(-50%,-50%) rotateX(70deg) rotateZ(360deg);}
}
html,body{
height:100vh;
overflow: hidden;
}
body {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background-color: var(--bgcolor);
}
#text{
font-family: 'Quicksand', sans-serif;
color: white;
font-size: 24px;
text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding-top: 30px;
}
#backbutton{
text-decoration: none;
color: white;
cursor: pointer;
margin: 10px;
background-color: #4bb9bd;
box-shadow: 0px 1px 3px rgba(0,0,0,0.6);
border-radius: 3px;
padding: 3px 10px;
}
#backbutton:hover{
box-shadow: 0px 1px 2px rgba(0,0,0,0.6);
}
.coincontainer {
position: relative;
width: 200px;
height: 200px;
}
@media only screen and (max-width: 600px) {
body {
flex-direction: column;
}
}
</style>
</head>
<body>
<div class="coincontainer"><div class="surface">
<div class="coin"></div>
<div class="shadow"></div>
</div></div>
<center> <center>
<h1> <div id="text"><span>Thanks for the gold, kind question miner!</span><a id="backbutton" href="<%= siteurl %>">Return</a></div>
Thanks for the gold kind question miner! =^.^=
</br>
<a href="<%= siteurl %>">Vissza a főoldalra</a>
</h1>
</center> </center>
<div class="coincontainer"><div class="surface">
<div class="coin"></div>
<div class="shadow"></div>
</div></div>
</body> </body>
</html> </html>