You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

104 lines
2.6 KiB
HTML

<!DOCTYPE html>
<html lang="en" class="w-100 h-100">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<style>
@font-face {
font-family: BLKCHCRY;
src: url("fonts/BLKCHCRY.TTF");
}
p {
font-size: 22px;
font-family: BLKCHCRY;
color: #26263dff;
}
.text-left {
max-width: 53em;
margin: 0 auto;
text-align: left;
}
a {
font-size: 22px;
font-family: BLKCHCRY;
}
a:link {
color: #42b1e8ff;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: #42b1e8ff;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: magenta;
background-color: transparent;
text-decoration: underline;
}
#cardtest {
box-shadow: 10px 10px 10px lightslategray;
transition: transform 250ms ease-in-out;
}
#cardtest.rotated {
transform: rotate(90deg);
}
#cardtest.rotated.scaledup {
transform: rotate(90deg) scale(1.5);
}
</style>
</head>
<body class="w-100 h-100 d-flex flex-column mt-5">
<div class="flex-grow-1 d-flex justify-content-center align-items-center">
<img id="cardtest" src="images/quest.png" width="440" height="710">
</div>
<div class="text-left mt-5">
<div class="d-flex justify-content-left mt-3">
<img src="images/wand.png" width="60" height="29"><a href="mapa1.html" class="ml-2">Create a cyber group of your own</a>
</div>
<div class="d-flex justify-content-left mt-2">
<img src="images/wand.png" width="60" height="29"><a target="_blank" rel="noopener noreferrer" href="https://hub.xpub.nl/systers/mediawiki/index.php?title=Confront_the_men_in_Usenet_group&action=edit" class="ml-2">Confront the men</a>
</div>
<div class="d-flex justify-content-left mt-2">
<img src="images/wand.png" width="60" height="29"><a href="game-over1.html" class="ml-2">Remain silent</a>
</div>
</div><br>
<div class="d-flex justify-content-center mt-5 mb-5">
<img src="images/footer.png" width="410" height="83">
</div>
<script>
const card = document.getElementById("cardtest");
card.addEventListener('click', e => {
card.classList.remove('scaledup');
card.classList.toggle('rotated');
});
card.addEventListener('wheel', e => {
const zoom = e.deltaY > 0 ? 'out' : 'in';
if(zoom === 'in') {
card.classList.add('scaledup');
}
else {
card.classList.remove('scaledup');
}
});
</script>
</body>
</html>