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.

102 lines
3.3 KiB

3 years ago
  1. <!doctype html>
  2. <html lang="en_EN">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="x-ua-compatible" content="ie=edge">
  6. <title>Plain UI | Lightweight CSS UI Framework for Building Apps and Websites</title>
  7. <meta name="description" content="Lightweight UI Framework for building fast and clean Websites and Apps for Mobile, Tablet and Desktop. Minimal UI-Elements, Functions and Helpers">
  8. <meta name="viewport" content="width=device-width,initial-scale=1">
  9. <link rel="stylesheet" href="plain-ui.css">
  10. </head>
  11. <body class="overflow-x-hidden">
  12. <header class="header">
  13. <div class="bar">
  14. <div class="bar__main">
  15. <h1 class="m-top-4 m-bottom-4 h4">
  16. Plain UI 0.1-alpha
  17. </h1>
  18. </div>
  19. </div>
  20. </header>
  21. <div class="container m-top-6">
  22. <div class="grid">
  23. <div class="col-12">
  24. <nav>
  25. <div class="tabs">
  26. <a href="index.html" class="tabs__item">
  27. Basics
  28. </a>
  29. <a href="components.html" class="tabs__item">
  30. Components
  31. </a>
  32. <a href="layout.html" class="tabs__item tabs__item--selected">
  33. Layout
  34. </a>
  35. <a href="helpers.html" class="tabs__item">
  36. Helpers
  37. </a>
  38. </div>
  39. </nav>
  40. </div>
  41. </div>
  42. </div>
  43. <div class="container">
  44. <div class="grid">
  45. <div class="col-6">
  46. <div class="content">
  47. <p>
  48. Some Text
  49. </p>
  50. </div>
  51. </div>
  52. </div>
  53. </div>
  54. <div class="container">
  55. <div class="grid">
  56. <div class="col-12">
  57. <h2 class="highlight">
  58. Layout
  59. </h2>
  60. <h3 class="highlight">
  61. Grid
  62. </h3>
  63. <p class="m-bottom-4">
  64. The grid is a small modificated Version from the Reflex Grid
  65. </p>
  66. <h3 class="highlight">
  67. Masonry
  68. </h3>
  69. <div class="masonry">
  70. <figure class="masonry__item marginless">
  71. <img class="media object-fit-cover h-100" src="/image.jpg" />
  72. </figure>
  73. <figure class="masonry__item marginless">
  74. <img class="media object-fit-cover h-100" src="/image.jpg" />
  75. </figure>
  76. <figure class="masonry__item marginless">
  77. <img class="media object-fit-cover h-100" src="/image.jpg" />
  78. </figure>
  79. <figure class="masonry__item marginless">
  80. <img class="media object-fit-cover h-100" src="/image.jpg" />
  81. </figure>
  82. <figure class="masonry__item marginless">
  83. <img class="media object-fit-cover h-100" src="/image.jpg" />
  84. </figure>
  85. </div>
  86. </div>
  87. </div>
  88. </div>
  89. </body>
  90. </html