tarotcard.css/test/index.html

39 lines
709 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 {
2023-12-01 14:37:20 +00:00
height: 88vh;
2023-12-01 13:59:53 +00:00
}
</style>
<link rel="stylesheet" href="styles/tarotcard.css"/>
2023-12-01 13:59:53 +00:00
</head>
<body>
<div class="center-grid">
<div id="simple-card" class="tarot-card">
2023-12-01 14:37:20 +00:00
<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>
2023-12-01 13:59:53 +00:00
<p>The Simple Card</p>
</div>
</div>
</body>
</html>