Add test page
This commit is contained in:
parent
a2af305597
commit
0317b43599
|
@ -0,0 +1,33 @@
|
|||
<!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>
|
Loading…
Reference in New Issue