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.

600 lines
20 KiB

6 years ago
6 years ago
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="/css/styles.min.css">
  10. </head>
  11. <body>
  12. <header id="header" class="header">
  13. <div class="container">
  14. <div class="grid">
  15. <div class="col-12">
  16. <div class="text-center">
  17. <hgroup>
  18. <h1 class="header__title">
  19. <svg class="icon header__logo" alt="Crisp" viewBox="0 0 100 100">
  20. <use xlink:href="/svg/icons.svg#chip" />
  21. </svg>
  22. Crispy Boilerplate
  23. </h1>
  24. </hgroup>
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. </header>
  30. <a class="button button--up" href="#header">
  31. <svg class="icon" alt="up" viewBox="0 0 100 100">
  32. <use xlink:href="/svg/icons.svg#triangle-up" />
  33. </svg>
  34. </a>
  35. <div class="container">
  36. <div class="grid">
  37. <div class="col-12 col-sm-3">
  38. <nav class="nav">
  39. <ul class="margin-top-0x">
  40. <li><a href="#npm">npm</a></li>
  41. <li><a href="#get-started">Get Started</a></li>
  42. <li><a href="#typography">Typography</a></li>
  43. <li><a href="#components">Components</a></li>
  44. <li><a href="#form">Form</a></li>
  45. <li><a href="#functions">Functions</a></li>
  46. <li><a href="#helpers">Helpers</a></li>
  47. <li><a href="#mixins">Mixins</a></li>
  48. <li><a href="#reflex-grid">Reflex Grid</a></li>
  49. </ul>
  50. </nav>
  51. </div>
  52. <div class="col-12 col-sm-9">
  53. <p>
  54. Why? There are so many! Yes, of Course, but this is not a Framework, it is a Boilerplate, more simple. I have tried to build a minimalistic sass.
  55. </p>
  56. <p>
  57. A few Years a have always created Styles to use in other Frameworks, crispy boilerplate is a a small toolkit from this helpers, styles that can be used to create. This is not beatiful or fancy it is a simple and basic toolkit to get a default style.
  58. </p>
  59. <p>
  60. For me it was important to use no js, not that i hate js, no, the Problem of bigger Frameworks was but for the most webapps, it was always diffult to build a few things and not getting a conflict. So i desided it is simpler to get a good stable basis
  61. and build smaller parts
  62. </p>
  63. <p>
  64. So this is a smaller approch, most projects i have then that big Frameworks were used, but i often felt that there was a Problem, often the fight against the framework, that result often in bigger and longer code. This is also a try to code get a smaller
  65. base to create more effecit No, it is a try, i can not promise you it will be done,
  66. </p>
  67. <!-- npm -->
  68. <hr class="margin-top-3x">
  69. <h2 id="npm" class="margin-top-1x">
  70. npm
  71. </h2>
  72. <p>
  73. </p>
  74. <!-- how to use -->
  75. <hr class="margin-top-3x">
  76. <h2 id="get-started" class="margin-top-1x">
  77. Get Started
  78. </h2>
  79. <p>
  80. </p>
  81. <!-- typography -->
  82. <hr class="margin-top-3x">
  83. <h2 id="typography" class="margin-top-1x">
  84. Typography
  85. </h2>
  86. <!-- abbr -->
  87. <h3 class="h4 margin-top-2x margin-bottom-0x">Abbr</h3>
  88. <h4 class="h6">Html:</h4>
  89. <pre class="code"><code>&lt;abbr title=&quot;&quot;&gt;&lt;/abbr&gt;</code></pre>
  90. <p>
  91. Glossier viral occupy mixtape pok pok cornhole, <abbr title="vape affogato hella">vape affogato hella</abbr> knausgaard thundercats
  92. </p>
  93. <!-- blockquote -->
  94. <h3 class="h4 margin-top-2x margin-bottom-0x">Blockquote</h3>
  95. <h4 class="h6">Html:</h4>
  96. <pre class="code"><code>&lt;blockquote&gt;&lt;/blockquote&gt;</code></pre>
  97. <blockquote>
  98. Hoodie kickstarter four loko, pinterest hashtag chambray glossier. Pug before they sold out etsy listicle. Deep v bespoke tacos polaroid, squid flexitarian crucifix messenger bag.
  99. </blockquote>
  100. <!-- paragraph -->
  101. <h3 class="h4 margin-top-2x margin-bottom-0x">Paragraph</h3>
  102. <h4 class="h6">Html:</h4>
  103. <pre class="code"><code>&lt;p&gt;&lt;/p&gt;</code></pre>
  104. <p>
  105. Glossier viral occupy mixtape pok pok.
  106. </p>
  107. <!-- list -->
  108. <h3 class="h4 margin-top-2x margin-bottom-0x">List</h3>
  109. <h4 class="h6">Html:</h4>
  110. <pre class="code"><code>&lt;ul&gt;
  111. &lt;li&gt;item 1&lt;/li&gt;
  112. &lt;li&gt;item 2
  113. &lt;ul&gt;
  114. &lt;li&gt;child item 1&lt;/li&gt;
  115. &lt;li&gt;child item 2&lt;/li&gt;
  116. &lt;/ul&gt;
  117. &lt;/li&gt;
  118. &lt;/ul&gt;
  119. &lt;ol&gt;
  120. &lt;li&gt;item 1&lt;/li&gt;
  121. &lt;li&gt;item 2&lt;/li&gt;
  122. &lt;/ol&gt;
  123. &lt;dl&gt;
  124. &lt;dt&gt;defined title 1&lt;/dt&gt;
  125. &lt;dd&gt;defined item 1&lt;/dd&gt;
  126. &lt;/dl&gt;</code></pre>
  127. <ul>
  128. <li>item 1</li>
  129. <li>
  130. item 2
  131. <ul>
  132. <li>child item 1</li>
  133. <li>child item 2</li>
  134. </ul>
  135. </li>
  136. </ul>
  137. <ol>
  138. <li>item 1</li>
  139. <li>item 2</li>
  140. </ol>
  141. <dl>
  142. <dt>defined title 1</dt>
  143. <dd>defined item 1</dd>
  144. </dl>
  145. <!-- components -->
  146. <hr class="margin-top-3x">
  147. <h2 id="components" class="margin-top-1x">
  148. Components
  149. </h2>
  150. <!-- components / button -->
  151. <h3 class="h4 margin-top-2x margin-bottom-0x">
  152. Button
  153. </h3>
  154. <h4 class="h6">Html:</h4>
  155. <pre class="code margin-top-1x"><code>&lt;button class=&quot;button&quot;&gt;&lt;/button&gt;
  156. &lt;button class=&quot;button button--wide&quot;&gt;&lt;/button&gt;</code></pre>
  157. <button class="button">Default</button>
  158. <button class="button button--wide margin-top-1x">Info</button>
  159. <!-- components / group -->
  160. <h3 class="h4 margin-top-2x margin-bottom-0x">
  161. Group
  162. </h3>
  163. <h4 class="h6">Html:</h4>
  164. <pre class="code"><code>&lt;nav class=&quot;group&quot;&gt;
  165. &lt;ul class=&quot;group__section&quot;&gt;
  166. &lt;li class=&quot;group__item&quot;&gt;first item&lt;/li&gt;
  167. &lt;li class=&quot;group__item&quot;&gt;second item&lt;/li&gt;
  168. &lt;li class=&quot;group__item&quot;&gt;third item&lt;/li&gt;
  169. &lt;/ul&gt;
  170. &lt;/nav&gt;</code></pre>
  171. <div class="panel panel__inner margin-bottom-1x">
  172. <nav class="group">
  173. <ul class="group__section">
  174. <li class="group__item">first item</li>
  175. <li class="group__item">second item</li>
  176. <li class="group__item">third item</li>
  177. </ul>
  178. </nav>
  179. </div>
  180. <h4 class="h6">Html:</h4>
  181. <pre class="code"><code>&lt;nav class=&quot;group group--horizontal&quot;&gt;
  182. &lt;ul class=&quot;group__section group__section--separate&quot;&gt;
  183. &lt;li class=&quot;group__item&quot;&gt;first item&lt;/li&gt;
  184. &lt;li class=&quot;group__item&quot;&gt;second item&lt;/li&gt;
  185. &lt;li class=&quot;group__item&quot;&gt;third item&lt;/li&gt;
  186. &lt;/ul&gt;
  187. &lt;/nav&gt;</code></pre>
  188. <div class="panel panel__inner">
  189. <nav class="group group--horizontal">
  190. <ul class="group__section group__section--separate">
  191. <li class="group__item">first item</li>
  192. <li class="group__item">second item</li>
  193. <li class="group__item">third item</li>
  194. </ul>
  195. </nav>
  196. </div>
  197. <!-- components / heading -->
  198. <h3 class="h4 margin-top-2x margin-bottom-0x">
  199. Heading
  200. </h3>
  201. <h4 class="h6">Html:</h4>
  202. <pre class="code"><code>&lt;h2&gt;&lt;/h2&gt;
  203. &lt;h2 class="h3"&gt;&lt;/h2&gt;</code></pre>
  204. <h4 class="h6">Sass:</h4>
  205. <pre class="code"><code>$crispy__heading__font-sizes: (
  206. 'h1': 40px,
  207. 'h2': 36px,
  208. 'h3': 32px,
  209. 'h4': 28px,
  210. 'h5': 24px,
  211. 'h6': 20px
  212. ) !default;</code></pre>
  213. <h1>Heading h1</h1>
  214. <h2>Heading h1</h2>
  215. <h3>Heading h1</h3>
  216. <h4>Heading h1</h4>
  217. <h5>Heading h1</h5>
  218. <h6>Heading h1</h6>
  219. <!-- components / hero -->
  220. <h3 class="h4 margin-top-2x margin-bottom-0x">
  221. Hero
  222. </h3>
  223. <h4 class="h6">Html:</h4>
  224. <pre class="code"><code>&lt;div class=&quot;hero hero--bottom&quot; style=&quot;height: 300px; background-image: url('https://picsum.photos/1024')&quot;&gt;&lt;/div&gt;</code></pre>
  225. <div class="hero hero--bottom" style="height: 300px; background-image: url('https://picsum.photos/1024')"></div>
  226. <!-- components / icon -->
  227. <h3 class="h4 margin-top-2x margin-bottom-0x">
  228. Icon
  229. </h3>
  230. <h4 class="h6">Html:</h4>
  231. <pre class="code"><code>&lt;svg class=&quot;icon icon--small&quot; alt=&quot;beaker&quot; viewBox=&quot;0 0 100 100&quot;&gt;
  232. &lt;use xlink:href=&quot;/svg/icons.svg#beaker&quot; /&gt;
  233. &lt;/svg&gt;
  234. &lt;svg class=&quot;icon&quot; alt=&quot;beaker&quot; viewBox=&quot;0 0 100 100&quot;&gt;
  235. &lt;use xlink:href=&quot;/svg/icons.svg#beaker&quot; /&gt;
  236. &lt;/svg&gt;
  237. &lt;svg class=&quot;icon icon--large&quot; alt=&quot;beaker&quot; viewBox=&quot;0 0 100 100&quot;&gt;
  238. &lt;use xlink:href=&quot;/svg/icons.svg#beaker&quot; /&gt;
  239. &lt;/svg&gt;
  240. &lt;svg class=&quot;icon icon--danger&quot; alt=&quot;alert&quot; viewBox=&quot;0 0 100 100&quot;&gt;
  241. &lt;use xlink:href=&quot;/svg/icons.svg#alert&quot; /&gt;
  242. &lt;/svg&gt;
  243. </code></pre>
  244. <svg class="icon icon--small" alt="beaker" viewBox="0 0 100 100">
  245. <use xlink:href="/svg/icons.svg#beaker" />
  246. </svg>
  247. <svg class="icon" alt="beaker" viewBox="0 0 100 100">
  248. <use xlink:href="/svg/icons.svg#beaker" />
  249. </svg>
  250. <svg class="icon icon--large" alt="beaker" viewBox="0 0 100 100">
  251. <use xlink:href="/svg/icons.svg#beaker" />
  252. </svg>
  253. <svg class="icon icon--danger" alt="alert" viewBox="0 0 100 100">
  254. <use xlink:href="/svg/icons.svg#alert" />
  255. </svg>
  256. <!-- components / modal -->
  257. <h3 class="h4 margin-top-2x margin-bottom-0x">
  258. Modal
  259. </h3>
  260. <h4 class="h6">Html:</h4>
  261. <pre class="code"><code>&lt;div class=&quot;modal modal--bottom width-100&quot;&gt;
  262. &lt;div class=&quot;panel&quot;&gt;
  263. &lt;div class=&quot;panel__inner&quot;&gt;
  264. Lorem Ipsum
  265. &lt;/div&gt;
  266. &lt;/div&gt;
  267. &lt;/div&gt;</code></pre>
  268. <div style="position: relative; width: 100%; height: 200px; border: 1px dotted black;">
  269. <div class="modal modal--bottom width-100">
  270. <div class="panel">
  271. <div class="panel__inner">
  272. Lorem Ipsum
  273. </div>
  274. </div>
  275. </div>
  276. </div>
  277. <!-- components / panel -->
  278. <h3 class="h4 margin-top-2x margin-bottom-0x">
  279. Panel
  280. </h3>
  281. <h4 class="h6">Html:</h4>
  282. <pre class="code"><code>&lt;div class=&quot;panel&quot;&gt;
  283. &lt;div class=&quot;panel__inner&quot;&gt;
  284. Lorem Ipsum
  285. &lt;/div&gt;
  286. &lt;/div&gt;</code></pre>
  287. <div class="panel">
  288. <div class="panel__inner">
  289. Lorem Ipsum
  290. </div>
  291. </div>
  292. <!-- components / table -->
  293. <h3 id="table" class="h4 margin-top-2x margin-bottom-0x">
  294. Table
  295. </h3>
  296. <h4 class="h6 margin-top-1x">Html:</h4>
  297. <pre class="code"><code>&lt;table class=&quot;table table--striped&quot;&gt;
  298. &lt;thead&gt;
  299. &lt;tr&gt;
  300. &lt;th&gt;&lt;/th&gt;
  301. &lt;/tr&gt;
  302. &lt;/thead&gt;
  303. &lt;tbody&gt;
  304. &lt;tr&gt;
  305. &lt;td&gt;&lt;/td&gt;
  306. &lt;/tr&gt;
  307. &lt;/tbody&gt;
  308. &lt;/table&gt;</code></pre>
  309. <table class="table table--striped margin-bottom-2x">
  310. <thead>
  311. <tr>
  312. <th>name</th>
  313. <th>age</th>
  314. </tr>
  315. </thead>
  316. <tbody>
  317. <tr>
  318. <td>Mr. Brown</td>
  319. <td>43</td>
  320. </tr>
  321. <tr>
  322. <td>Mr. Magenta</td>
  323. <td>32</td>
  324. </tr>
  325. <tr>
  326. <td>Mr. White</td>
  327. <td>45</td>
  328. </tr>
  329. </tbody>
  330. </table>
  331. <!-- form -->
  332. <hr class="margin-top-3x">
  333. <h2 id="functions" class="margin-top-1x">
  334. Form
  335. </h2>
  336. <!-- form / input -->
  337. <h3 class="h4 margin-top-0x margin-bottom-0x">
  338. Input
  339. </h3>
  340. <input type="text" />
  341. <!-- form / textarea -->
  342. <h3 class="h4 margin-top-0x margin-bottom-0x">
  343. Textarea
  344. </h3>
  345. <textarea></textarea>
  346. <!-- form / textarea -->
  347. <h3 class="h4 margin-top-0x margin-bottom-0x">
  348. Field
  349. </h3>
  350. <div class="field field--valid">
  351. <input type="text" />
  352. <span class="field__panel">
  353. Error!
  354. </span>
  355. </div>
  356. <div class="field field--error">
  357. <input type="text" />
  358. <span class="field__panel">
  359. Error!
  360. </span>
  361. </div>
  362. <!-- functions -->
  363. <hr class="margin-top-3x">
  364. <h2 id="functions" class="margin-top-1x">
  365. Functions
  366. </h2>
  367. <!-- functions / toEm / toRem -->
  368. <h3 class="h4 margin-top-0x margin-bottom-0x">
  369. toEm()<br>
  370. toRem()
  371. </h3>
  372. <h4 class="h6 margin-top-1x">Sass:</h4>
  373. <pre class="code"><code>toEm(5px);
  374. toEm(10px 10px 0 0);
  375. toRem(10px 10px 0 0);
  376. </code></pre>
  377. <p>
  378. Returns <strong>em</strong> and <strong>rem</strong>, accepts px and unitless values.
  379. </p>
  380. <!-- functions / stripUnit -->
  381. <h3 class="h4 margin-top-0x margin-bottom-0x">
  382. stripUnit()
  383. </h3>
  384. <span class="background-warning">/functions</span>
  385. <h4 class="h6 margin-top-1x">Sass:</h4>
  386. <pre class="code"><code>toEm(10px);</code></pre>
  387. <p>
  388. Returns value without unit.
  389. </p>
  390. <!-- helpers -->
  391. <hr class="margin-top-3x">
  392. <h2 id="helpers" class="margin-top-1x">
  393. Helpers
  394. </h2>
  395. <!-- helpers / align -->
  396. <h3 class="h4 margin-top-1x">
  397. Align
  398. </h3>
  399. <pre class="code">&lt;div class=&quot;text-left&quot;&gt;&lt;/div&gt;
  400. &lt;div class=&quot;text-center&quot;&gt;&lt;/div&gt;
  401. &lt;div class=&quot;text-right&quot;&gt;&lt;/div&gt;
  402. &lt;div class=&quot;text-justify&quot;&gt;&lt;/div&gt;
  403. &lt;div class=&quot;float-left&quot;&gt;&lt;/div&gt;
  404. &lt;div class=&quot;float-center&quot;&gt;&lt;/div&gt;
  405. &lt;div class=&quot;float-none&quot;&gt;&lt;/div&gt;
  406. &lt;div class=&quot;center&quot;&gt;&lt;/div&gt;
  407. &lt;div class=&quot;clearfix&quot;&gt;&lt;/div&gt;</code></pre>
  408. <!-- helpers / margin -->
  409. <h3 class="h4 margin-top-1x">
  410. Margin
  411. </h3>
  412. <p>
  413. margin-top and -bottom from <strong>$crispy__margin</strong> as px.
  414. </p>
  415. <pre class="code">&lt;div class=&quot;panel margin-bottom-0x&quot;&gt;margin-bottom-0x&lt;/div&gt;
  416. &lt;div class=&quot;margin-bottom-1x&quot;&gt;margin-bottom-1x&lt;/div&gt;
  417. &lt;div class=&quot;margin-bottom-2x&quot;&gt;margin-bottom-2x&lt;/div&gt;
  418. &lt;div class=&quot;margin-bottom-3x&quot;&gt;margin-bottom-3x&lt;/div&gt;</code></pre>
  419. <div class="panel panel__inner margin-bottom-0x">margin-bottom-0x</div>
  420. <div class="panel panel__inner margin-bottom-1x">margin-bottom-1x</div>
  421. <div class="panel panel__inner margin-bottom-2x">margin-bottom-2x</div>
  422. <div class="panel panel__inner margin-bottom-3x">margin-bottom-3x</div>
  423. <!-- helpers / media -->
  424. <h3 class="h4 margin-top-1x">
  425. Media
  426. </h3>
  427. <pre class="code"><code>&lt;img class=&quot;img-responsive&quot; src=&quot;https://picsum.photos/400&quot; /&gt;
  428. &lt;figure&gt;
  429. &lt;img class=&quot;img-responsive&quot; src=&quot;https://picsum.photos/400&quot; /&gt;
  430. &lt;figcaption class=&quot;text-center&quot;&gt;Lorem Ipsum&lt;/figcaption&gt;
  431. &lt;/figure&gt;
  432. &lt;div class=&quot;video-responsive&quot; style=&quot;height: 280px;&quot;&gt;
  433. &lt;iframe src=&quot;https://giphy.com/embed/13XW2MJE0XCoM0&quot; width=&quot;480&quot; height=&quot;361&quot;&gt;&lt;/iframe&gt;
  434. &lt;/div&gt;</code></pre>
  435. <div class="grid">
  436. <div class="col-6">
  437. <img class="img-responsive" src="https://picsum.photos/400" />
  438. </div>
  439. <div class="col-6">
  440. <figure>
  441. <img class="img-responsive" src="https://picsum.photos/400" />
  442. <figcaption class="text-center">Lorem Ipsum</figcaption>
  443. </figure>
  444. </div>
  445. </div>
  446. <div class="grid">
  447. <div class="col-6">
  448. <div class="video-responsive" style="height: 280px;">
  449. <iframe src="https://giphy.com/embed/13XW2MJE0XCoM0" width="480" height="361" frameBorder="0" class="giphy-embed" allowFullScreen></iframe>
  450. </div>
  451. </div>
  452. </div>
  453. <!-- helpers / media -->
  454. <h3 class="h4 margin-top-1x">
  455. Width
  456. </h3>
  457. <pre class="code"><code>&lt;div class=&quot;panel width-25&quot;&gt;width-25&lt;/div&gt;
  458. &lt;div class=&quot;width-50&quot;&gt;width-50&lt;/div&gt;
  459. &lt;div class=&quot;width-75&quot;&gt;width-75&lt;/div&gt;
  460. &lt;div class=&quot;width-100&quot;&gt;width-100&lt;/div&gt;</code></pre>
  461. <div class="panel panel__inner width-25 margin-bottom-1x">width-25</div>
  462. <div class="panel panel__inner width-50 margin-bottom-1x">width-50</div>
  463. <div class="panel panel__inner width-75 margin-bottom-1x">width-75</div>
  464. <div class="panel panel__inner width-100 margin-bottom-1x">width-100</div>
  465. <!-- mixins -->
  466. <hr class="margin-top-3x">
  467. <h2 id="mixins" class="margin-top-1x">
  468. Mixins
  469. </h2>
  470. <!-- mixins / media-queries -->
  471. <h3 class="h4 margin-top-1x">
  472. Media Queries
  473. </h3>
  474. <p>
  475. These <strong>@mixins</strong> were used with the Breakpoints from the <a href="#reflex-grid">Reflex Grid</a>.
  476. </p>
  477. <ul>
  478. <li><strong>xs</strong> 576px</li>
  479. <li><strong>sm</strong> 768px</li>
  480. <li><strong>md</strong> 992px</li>
  481. <li><strong>lg</strong> 1200px</li>
  482. <li><strong>xlg</strong> 1600px</li>
  483. </ul>
  484. <h4 class="h6 margin-top-1x">Html:</h4>
  485. <pre class="code"><code>&lt;div class=&quot;sm&quot;&gt;sm&lt;/div&gt;
  486. &lt;div class=&quot;md&quot;&gt;md&lt;/div&gt;
  487. &lt;div class=&quot;md-only&quot;&gt;md-only&lt;/div&gt;
  488. &lt;div class=&quot;lg-only&quot;&gt;lg-only&lt;/div&gt;</pre></code>
  489. <h4 class="h6 margin-top-1x">Sass:</h4>
  490. <pre class="code"><code>.sm, .md, .md-only, .lg-only {
  491. display: none;
  492. }
  493. .sm {
  494. @include crispy__media-sm() {
  495. display: block;
  496. }
  497. }
  498. .md {
  499. @include crispy__media-md() {
  500. display: block;
  501. }
  502. }
  503. .md-only {
  504. @include crispy__media-md-only() {
  505. display: block;
  506. }
  507. }
  508. .lg-only {
  509. @include crispy__media-lg-only() {
  510. display: block;
  511. }
  512. }</code></pre>
  513. <div class="grid">
  514. <div class="col-3">
  515. <div class="panel panel__inner sm margin-bottom-1x">sm</div>
  516. </div>
  517. <div class="col-3">
  518. <div class="panel panel__inner md margin-bottom-1x">md</div>
  519. </div>
  520. <div class="col-3">
  521. <div class="panel panel__inner md-only margin-bottom-1x">md-only</div>
  522. </div>
  523. <div class="col-3">
  524. <div class="panel panel__inner lg-only margin-bottom-1x">lg-only</div>
  525. </div>
  526. </div>
  527. <!-- Reflex Grid -->
  528. <hr class="margin-top-3x">
  529. <h2 id="reflex-grid" class="margin-top-1x">
  530. Reflex Grid
  531. </h2>
  532. <p>
  533. The <strong>Reflex Grid</strong> is from <a target="_blank" href="http://lendmeyourear.net">Lee Jordan</a>. I have build a few helper for media-queries. <strong>Reflex Grid </strong> is lightweight, simple and uses a flexbox grid with cross browser
  534. support, an inline-block fallback.
  535. </p>
  536. <p>
  537. Documentation: <a target="_blank" href="http://reflexgrid.com/docs/">http://reflexgrid.com/docs/</a><br /> Github: <a target="_blank" href="https://github.com/leejordan/reflex">https://github.com/leejordan/reflex</a>
  538. </p>
  539. </div>
  540. </div>
  541. </div>
  542. <footer class="footer">
  543. <div class="container">
  544. <div class="grid">
  545. <div class="col-12">
  546. <div class="text-center">
  547. <p>
  548. <a target="_blank" href="https://thenounproject.com/wxchee/">W. X. Chee</a>
  549. </p>
  550. </div>
  551. </div>
  552. </div>
  553. </div>
  554. </footer>
  555. </body>
  556. </html>