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.

160 lines
5.8 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
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-12">
  46. <h2 class="highlight">
  47. Layout
  48. </h2>
  49. <h3>
  50. Grid
  51. </h3>
  52. <div class="panel panel--border-highlight border-color-info m-bottom-4">
  53. <div class="panel__body">
  54. <div class="content m-bottom-last-child-0">
  55. <p>
  56. Plain UI uses the <a href="https://reflexgrid.com/" target="_blank" rel=“noopener“>Reflex Grid</a>,
  57. there will be a full integration of this Grid for better Support.
  58. </p>
  59. </div>
  60. </div>
  61. </div>
  62. <h3>
  63. Masonry
  64. </h3>
  65. <div class="content">
  66. <code>&lt;div class=&quot;masonry&quot;&gt;
  67. &lt;figure class=&quot;masonry__item&quot;&gt;
  68. &lt;img class=&quot;media object-fit-cover h-100&quot; src=&quot;/image.jpg&quot; /&gt;
  69. &lt;/figure&gt;
  70. &lt;/div&gt;
  71. </code>
  72. </div>
  73. <div class="masonry">
  74. <figure class="masonry__item">
  75. <img class="media object-fit-cover h-100" src="/image.jpg" />
  76. </figure>
  77. <figure class="masonry__item">
  78. <img class="media object-fit-cover h-100" src="/image.jpg" />
  79. </figure>
  80. <figure class="masonry__item">
  81. <img class="media object-fit-cover h-100" src="/image.jpg" />
  82. </figure>
  83. <figure class="masonry__item">
  84. <img class="media object-fit-cover h-100" src="/image.jpg" />
  85. </figure>
  86. <figure class="masonry__item">
  87. <img class="media object-fit-cover h-100" src="/image.jpg" />
  88. </figure>
  89. </div>
  90. </div>
  91. </div>
  92. </div>
  93. <div class="container">
  94. <div class="grid">
  95. <div class="col-12">
  96. <h2>Slider</h3>
  97. </div>
  98. </div>
  99. </div>
  100. <div class="slider">
  101. <div class="slider__inner">
  102. <div class="slider__item w-col-12">
  103. <figure class="figure w-col-12">
  104. <img class="media" src="/image.jpg" />
  105. <figcaption class="figure__caption">
  106. food truck yr franzen pabst
  107. </figcaption>
  108. </figure>
  109. </div>
  110. <div class="slider__item w-col-12">
  111. <figure class="figure w-col-12">
  112. <img class="media" src="/image.jpg" />
  113. <figcaption class="figure__caption">
  114. food truck yr franzen pabst
  115. </figcaption>
  116. </figure>
  117. </div>
  118. <div class="slider__item w-col-12">
  119. <figure class="figure w-col-12">
  120. <img class="media" src="/image.jpg" />
  121. <figcaption class="figure__caption">
  122. food truck yr franzen pabst
  123. </figcaption>
  124. </figure>
  125. </div>
  126. <div class="slider__item w-col-12">
  127. <figure class="figure w-col-12">
  128. <img class="media" src="/image.jpg" />
  129. <figcaption class="figure__caption">
  130. food truck yr franzen pabst
  131. </figcaption>
  132. </figure>
  133. </div>
  134. <div class="slider__item w-col-12">
  135. <figure class="figure w-col-12">
  136. <img class="media" src="/image.jpg" />
  137. <figcaption class="figure__caption">
  138. food truck yr franzen pabst
  139. </figcaption>
  140. </figure>
  141. </div>
  142. </div>
  143. </div>
  144. </body>
  145. </html