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>
|
|
|
|
|
2023-12-01 14:20:15 +00:00
|
|
|
<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:45:04 +00:00
|
|
|
<div class="tarot-card__section tarot-card__section--art">
|
|
|
|
<img class="tarot-card__art" src="images/card_art_std.jpg" alt="The Simple Card artwork image.">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="tarot-card__section tarot-card__section--title">
|
|
|
|
<p class="tarot-card__title">The Simple Card</p>
|
|
|
|
</div>
|
2023-12-01 13:59:53 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|