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.

209 lines
7.9 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
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
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
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
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
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
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
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__start">
  15. <h1 class="m-top-4 m-bottom-4 h4">
  16. Plain UI 0.1-alpha
  17. </h1>
  18. </div>
  19. <div class="bar__main justify-end">
  20. <a class="button button--small m-bottom-0" href="#">
  21. Github
  22. <svg class="m-left-3 icon fill-text" aria-hidden="true">
  23. <use xlink:href="symbol-defs.svg#icon-github"></use>
  24. </svg>
  25. </a>
  26. <a class="button button--small m-left-sm-3 m-bottom-0" href="https://gitea.tentakelfabrik.de/">
  27. Gitea
  28. <svg class="m-left-3 icon fill-text" aria-hidden="true">
  29. <use xlink:href="symbol-defs.svg#icon-gitea"></use>
  30. </svg>
  31. </a>
  32. </div>
  33. </div>
  34. </header>
  35. <div class="container m-top-6">
  36. <div class="grid">
  37. <div class="col-12">
  38. <nav>
  39. <div class="tabs">
  40. <a href="index.html" class="tabs__item tabs__item--selected">
  41. Basics
  42. </a>
  43. <a href="components.html" class="tabs__item">
  44. Components
  45. </a>
  46. <a href="layout.html" class="tabs__item">
  47. Layout
  48. </a>
  49. <a href="helpers.html" class="tabs__item">
  50. Helpers
  51. </a>
  52. </div>
  53. </nav>
  54. </div>
  55. </div>
  56. </div>
  57. <div class="container">
  58. <div class="grid">
  59. <div class="col-12">
  60. <div class="content">
  61. <div class="panel panel--border-highlight border-color-danger m-bottom-4">
  62. <div class="panel__body">
  63. <div class="content m-last-child-0">
  64. <p>
  65. On development, a few styles and names will be change until release
  66. </p>
  67. </div>
  68. </div>
  69. </div>
  70. <p>
  71. <span class="bold">Plain UI</span> is a simple UI Framework.
  72. </p>
  73. <p>
  74. </p>
  75. <h3 class="h5">
  76. Contribution
  77. </h3>
  78. <ul>
  79. <li><span class="bold">TailwindCSS</span> for showing new ideas and concepts to handle handle Helper-Classes</li>
  80. <li><span class="bold">Reflex Grid</span> </li>
  81. <li><span class="bold">Reflex Grid</span> </li>
  82. </ul>
  83. </div>
  84. </div>
  85. </div>
  86. </div>
  87. <div class="container">
  88. <div class="grid">
  89. <div class="col-12">
  90. <h2 class="highlight">
  91. Installation
  92. </h2>
  93. <div class="content">
  94. <code>npm install plain-ui --save</code>
  95. </div>
  96. </div>
  97. </div>
  98. </div>
  99. <div class="container">
  100. <div class="grid">
  101. <div class="col-12">
  102. <h2 class="highlight">
  103. Building
  104. </h2>
  105. <div class="content">
  106. <p>
  107. For Buildung use Webpack or a similiar System. Plain UI is build by Laravel-Mix. Consider to use PurgeCSS,
  108. with all Helper-Classes the CSS is really growning. PurgeCSS, with Laravel Mix it looks like this,
  109. <a href="https://purgecss.com/" target="_blank">PurgeCSS</a>
  110. </p>
  111. <code>mix
  112. .setPublicPath('./public')
  113. .sass('src/scss/plain-ui.scss', 'public/plain-ui.css')
  114. .purgeCss({
  115. extend: {
  116. enabled: true,
  117. content: [
  118. path.join(__dirname, 'public/*.html'),
  119. ]
  120. }
  121. })
  122. </code>
  123. </div>
  124. </div>
  125. </div>
  126. </div>
  127. <div class="container">
  128. <div class="grid">
  129. <div class="col-12">
  130. <h2 class="highlight">
  131. Variables + Themes
  132. </h2>
  133. </div>
  134. </div>
  135. </div>
  136. <div class="container">
  137. <div class="grid">
  138. <div class="col-12">
  139. <h2 class="highlight">
  140. Basic Styles
  141. </h2>
  142. <h3>
  143. Normalize
  144. </h3>
  145. <div class="content">
  146. <p>
  147. For all elements is the same, try set a basic style without anything, no margin, no padding. The Reason is to use Components, Layout and
  148. Helpers for the styling or make your own rules for the elements.
  149. </p>
  150. </div>
  151. <h2>
  152. Heading
  153. </h2>
  154. <h1>Heading 1</h1>
  155. <h2>Heading 2</h2>
  156. <h3>Heading 3</h3>
  157. <h4>Heading 4</h4>
  158. <h5>Heading 5</h5>
  159. <h6>Heading 6</h6>
  160. <h3>
  161. Content
  162. </h3>
  163. <div class="panel panel--border-highlight border-color-info m-bottom-4">
  164. <div class="panel__body">
  165. <div class="content m-last-child-0">
  166. <p>
  167. The Class "content" will trigger a few styles for
  168. </p>
  169. </div>
  170. </div>
  171. </div>
  172. <div class="content">
  173. <p>
  174. Y'know this time it wasn't my fault. The Doc set all of his clocks twenty-five minutes slow. Listen, this is very important, I forgot my video camera, could you stop by my place and pick it up on your way to the mall? whoa, this is it, this is the part coming up, Doc. I'm really gonna miss you. Doc, about the future- Thank you, don't forget to take a flyer.
  175. </p>
  176. <p>
  177. Dear Doctor Brown, on the night that I go back in time, you will be shot by terrorists. Please take whatever precautions are necessary to prevent this terrible disaster. Your friend, Marty. Well, safe and sound, now, n good old 1955. I've gotta go. Look, George, I'm telling you George, if you do not ask Lorraine to that dance, I'm gonna regret it for the rest of my life. Hey George, heard you laid out Biff, nice going.
  178. </p>
  179. <ul>
  180. <li>Anyway, if Grandpa hadn't hit him</li>
  181. <li>Yeah, well history is gonna change</li>
  182. <li>Children</li>
  183. </ul>
  184. <blockquote>
  185. I'm telling you George, if you do not ask Lorraine to that dance, I'm gonna regret it for the rest of my life. Hey George, heard you laid out Biff, nice going.
  186. </blockquote>
  187. </div>
  188. </div>
  189. </div>
  190. </div>
  191. </body>
  192. </html