tarotcard.css/test/index.html

39 lines
709 B
HTML

<!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 {
height: 88vh;
}
</style>
<link rel="stylesheet" href="styles/tarotcard.css"/>
</head>
<body>
<div class="center-grid">
<div id="simple-card" class="tarot-card">
<div class="tarot-card__section">Section 1</div>
<div class="tarot-card__section">Section 2</div>
<div class="tarot-card__section">Section 3</div>
<div class="tarot-card__section">Section 4</div>
<p>The Simple Card</p>
</div>
</div>
</body>
</html>