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.

88 lines
1.9 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!-- Standard Meta -->
  5. <meta charset="utf-8" />
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
  8. <!-- Site Properities -->
  9. <title>Theming - Semantic</title>
  10. <link rel="stylesheet" type="text/css" href="../dist/semantic.css">
  11. <script src="assets/library/jquery.min.js"></script>
  12. <script src="assets/library/iframe.js"></script>
  13. <style type="text/css">
  14. body > .ui.container {
  15. margin-top: 3em;
  16. }
  17. iframe {
  18. border: none;
  19. width: 100%;
  20. height: 300px;
  21. }
  22. iframe html {
  23. overflow: hidden;
  24. }
  25. iframe body {
  26. padding: 0em;
  27. }
  28. .ui.container > h1 {
  29. font-size: 3em;
  30. text-align: center;
  31. font-weight: normal;
  32. }
  33. .ui.container > h2.dividing.header {
  34. font-size: 2em;
  35. font-weight: normal;
  36. margin: 4em 0em 3em;
  37. }
  38. .ui.table {
  39. table-layout: fixed;
  40. }
  41. </style>
  42. </head>
  43. <body>
  44. <div class="ui container">
  45. <h1>Theming Examples</h1>
  46. <h2 class="ui dividing header">Site</h2>
  47. <iframe src="components/site.html" width="100%" scrolling="no"></iframe>
  48. <h2 class="ui dividing header">Menu</h2>
  49. <iframe src="components/menu.html" width="100%" scrolling="no"></iframe>
  50. <h2 class="ui dividing header">Buttons</h2>
  51. <iframe src="components/button.html" width="100%" scrolling="no"></iframe>
  52. <h2 class="ui dividing header">Table</h2>
  53. <iframe src="components/table.html" width="100%" scrolling="no"></iframe>
  54. <h2 class="ui dividing header">Input</h2>
  55. <iframe src="components/input.html" width="100%" scrolling="no"></iframe>
  56. <h2 class="ui dividing header">Card</h2>
  57. <iframe src="components/card.html" width="100%" scrolling="no"></iframe>
  58. </div>
  59. <script>
  60. $('iframe').iFrameResize({
  61. autoResize: true,
  62. heightCalculationMethod: 'bodyScroll'
  63. });
  64. </script>
  65. </body>
  66. </html>