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.6KB

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