Add test page

This commit is contained in:
The Magician 2023-12-01 13:59:53 +00:00
parent a2af305597
commit 0317b43599
1 changed files with 33 additions and 0 deletions

33
test/index.html Normal file
View File

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<title>tarotcard.css Test Page</title>
<style>
body {
height: 100vh;
background: #000056;
}
.center-grid {
height: 100vh;
display: grid;
place-items: center;
}
#simple-card {
max-height: 88vh;
}
</style>
<link rel="stylesheet" href="../tarotcard.css"/>
</head>
<body>
<div class="center-grid">
<div id="simple-card" class="tarot-card">
<p>The Simple Card</p>
</div>
</div>
</body>
</html>