Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

components-test.html 1.1KB

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>RPG cards</title>
  5. <!-- Library: jQuery -->
  6. <script type="text/javascript" src="lib/svg-injector/svg-injector.js" charset="utf-8"></script>
  7. <!-- CSS -->
  8. <link rel=" stylesheet" type="text/css" href="css/output.css">
  9. <link rel="stylesheet" type="text/css" href="css/card-size.css">
  10. <!-- Components -->
  11. <link rel="import" href="components/card-front.html">
  12. <link rel="import" href="components/card-title.html">
  13. <link rel="import" href="components/card-icon.html">
  14. <link rel="import" href="components/card-contents.html">
  15. </head>
  16. <body class="page-background">
  17. <card-front class="card-size-25x35" color="maroon">
  18. <card-title>
  19. <h1>Burning Hands</h1>
  20. <h2>1</h2>
  21. <card-icon src="/icons/lorc/originals/svg/book-cover.svg"></card-icon>
  22. </card-title>
  23. <card-contents>
  24. <card-subtitle>Mage spell</card-subtitle>
  25. <card-ruler></card-ruler>
  26. <card-description>Test</card-description>
  27. </card-contents>
  28. </card-front>
  29. </body>
  30. </html>