Lightweight CSS Framework for Building Apps and Websites https://crispy-css.com
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.

79 lines
2.8 KiB

6 years ago
6 years ago
6 years ago
  1. <!doctype html>
  2. <html class="no-js" lang="en_EN">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="x-ua-compatible" content="ie=edge">
  6. <title></title>
  7. <meta name="description" content="">
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <link rel="stylesheet" href="../dest/css/crispy.css">
  10. <style>
  11. .container {
  12. max-width: 992px;
  13. width: 100%;
  14. margin: 0 auto;
  15. }
  16. .panel {
  17. padding: 10px;
  18. background-color: #efefef;
  19. border: 1px dotted #cecece;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <div class="container">
  25. <div class="grid">
  26. <div class="col-2">
  27. <nav>
  28. <a href="#heading">Heading</a>
  29. </nav>
  30. </div>
  31. <div class="col-10">
  32. <h2>Heading</h2>
  33. <div class="panel">
  34. <h1>Heading h1</h1>
  35. <h2>Heading h1</h2>
  36. <h3>Heading h1</h3>
  37. <h4>Heading h1</h4>
  38. <h5>Heading h1</h5>
  39. <h6>Heading h1</h6>
  40. </div>
  41. <h2 id="buttons" class="margin-top-1x">Buttons</h2>
  42. <div class="panel">
  43. <button class="button">Button</button>
  44. <button class="button button--danger">Button</button>
  45. </div>
  46. <h2 id="table" class="margin-top-1x">Table</h2>
  47. <div class="panel">
  48. <table class="table table--striped">
  49. <thead>
  50. <tr>
  51. <th>name</th>
  52. <th>age</th>
  53. </tr>
  54. </thead>
  55. <tbody>
  56. <tr>
  57. <td>The Shawshank Redemption</td>
  58. <td>12</td>
  59. </tr>
  60. <tr>
  61. <td>The Shawshank Redemption</td>
  62. <td>12</td>
  63. </tr>
  64. <tr>
  65. <td>The Shawshank Redemption</td>
  66. <td>12</td>
  67. </tr>
  68. </tbody>
  69. </table>
  70. </div>
  71. </div>
  72. </div>
  73. </div>
  74. </body>
  75. </html>