tarotcard.css/test/index.html

34 lines
492 B
HTML
Raw Normal View History

2023-12-01 13:59:53 +00:00
<!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>