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.

588 lines
18 KiB

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