2023-12-01 13:59:53 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2023-12-01 17:14:14 +00:00
|
|
|
<meta name="HandheldFriendly" content="true" />
|
|
|
|
<meta name="MobileOptimized" content="320" />
|
|
|
|
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, width=device-width, user-scalable=no" />
|
|
|
|
|
2023-12-01 13:59:53 +00:00
|
|
|
<title>tarotcard.css Test Page</title>
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
height: 100vh;
|
|
|
|
background: #000056;
|
2023-12-01 16:43:12 +00:00
|
|
|
|
|
|
|
margin: 0 auto;
|
2023-12-01 16:45:28 +00:00
|
|
|
|
|
|
|
overflow-y: hidden;
|
2023-12-01 13:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.center-grid {
|
|
|
|
height: 100vh;
|
2023-12-01 15:09:30 +00:00
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
align-items: center;
|
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 15:09:05 +00:00
|
|
|
<link rel="stylesheet" href="styles/tarotcard-deal.css"/>
|
2023-12-01 17:36:00 +00:00
|
|
|
<link rel="stylesheet" href="styles/tarotcard-flip.css"/>
|
2023-12-01 13:59:53 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="center-grid">
|
|
|
|
|
2023-12-01 15:09:05 +00:00
|
|
|
<!-- Simplest possible card. Just displays a title and a piece of artwork. -->
|
2023-12-01 13:59:53 +00:00
|
|
|
<div id="simple-card" class="tarot-card">
|
2023-12-01 14:45:04 +00:00
|
|
|
<div class="tarot-card__section tarot-card__section--art">
|
2023-12-01 15:00:11 +00:00
|
|
|
<img class="tarot-card__art" src="images/card_art_std.jpg" alt="The Simple Card artwork image." title="The Simple Card artwork image.">
|
2023-12-01 14:45:04 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="tarot-card__section tarot-card__section--title">
|
2023-12-01 17:14:14 +00:00
|
|
|
<p class="tarot-card__title">The Simple Card.</p>
|
2023-12-01 14:45:04 +00:00
|
|
|
</div>
|
2023-12-01 13:59:53 +00:00
|
|
|
</div>
|
|
|
|
|
2023-12-01 15:09:05 +00:00
|
|
|
<!-- Identical to The Simple Card, but uses the "deal" animation to slide in when the page is loaded. -->
|
2023-12-01 16:43:12 +00:00
|
|
|
<div id="deal-card" class="tarot-card tarot-card--deal">
|
2023-12-01 15:09:05 +00:00
|
|
|
<div class="tarot-card__section tarot-card__section--art">
|
|
|
|
<img class="tarot-card__art" src="images/card_art_std.jpg" alt="The Deal Card artwork image." title="The Simple Card artwork image.">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="tarot-card__section tarot-card__section--title">
|
2023-12-01 17:14:14 +00:00
|
|
|
<p class="tarot-card__title">The Deal Card.</p>
|
2023-12-01 15:09:05 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-12-01 13:59:53 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|