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
18 KiB

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