No Description
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.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. <link rel="import" href="components/card-rule.html">
  16. <link rel="import" href="components/card-subtitle.html">
  17. </head>
  18. <body class="page-background">
  19. <card-front class="card-size-25x35" color="maroon">
  20. <card-title>
  21. <h1>Burning Hands</h1>
  22. <h2>1</h2>
  23. <card-icon src="/icons/lorc/originals/svg/book-cover.svg"></card-icon>
  24. </card-title>
  25. <card-contents>
  26. <card-subtitle>Mage spell</card-subtitle>
  27. <card-rule></card-rule>
  28. <card-description>Test</card-description>
  29. </card-contents>
  30. </card-front>
  31. &nbsp;
  32. <card-front class="card-size-25x35" color="saddlebrown">
  33. <card-title>
  34. <h1>Brown bear</h1>
  35. <h2>1</h2>
  36. <card-icon src="/icons/lorc/originals/svg/pawprint.svg"></card-icon>
  37. </card-title>
  38. <card-contents>
  39. <card-subtitle>Medium beast</card-subtitle>
  40. <card-rule></card-rule>
  41. <card-description>Test</card-description>
  42. </card-contents>
  43. </card-front>
  44. </body>
  45. </html>