1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-28 16:30:09 +02:00

feat: fix index.html

remove p element from code and add highlight.js
This commit is contained in:
BcRikko
2019-02-08 21:42:27 +09:00
parent f15fe4807e
commit d9681f1388
6 changed files with 475 additions and 374 deletions

View File

@@ -1,2 +1,3 @@
**/*.html
**/*.md
demo/lib/*

View File

@@ -0,0 +1,115 @@
/*
* Visual Studio 2015 dark style
* Author: Nicolas LLOBERA <nllobera@gmail.com>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #1E1E1E;
color: #DCDCDC;
}
.hljs-keyword,
.hljs-literal,
.hljs-symbol,
.hljs-name {
color: #569CD6;
}
.hljs-link {
color: #569CD6;
text-decoration: underline;
}
.hljs-built_in,
.hljs-type {
color: #4EC9B0;
}
.hljs-number,
.hljs-class {
color: #B8D7A3;
}
.hljs-string,
.hljs-meta-string {
color: #D69D85;
}
.hljs-regexp,
.hljs-template-tag {
color: #9A5334;
}
.hljs-subst,
.hljs-function,
.hljs-title,
.hljs-params,
.hljs-formula {
color: #DCDCDC;
}
.hljs-comment,
.hljs-quote {
color: #57A64A;
font-style: italic;
}
.hljs-doctag {
color: #608B4E;
}
.hljs-meta,
.hljs-meta-keyword,
.hljs-tag {
color: #9B9B9B;
}
.hljs-variable,
.hljs-template-variable {
color: #BD63C5;
}
.hljs-attr,
.hljs-attribute,
.hljs-builtin-name {
color: #9CDCFE;
}
.hljs-section {
color: gold;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
/*.hljs-code {
font-family:'Monospace';
}*/
.hljs-bullet,
.hljs-selector-tag,
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo {
color: #D7BA7D;
}
.hljs-addition {
background-color: #144212;
display: inline-block;
width: 100%;
}
.hljs-deletion {
background-color: #600;
display: inline-block;
width: 100%;
}

2
demo/lib/highlight.js Normal file

File diff suppressed because one or more lines are too long

View File

@@ -96,64 +96,65 @@ div.containers > .nes-container {
}
.show-code {
font-size: .7em;
height: 34px;
position: absolute;
top: -4px;
right: -4px;
display: flex;
justify-content: center;
width: 40px;
position: absolute;
right: -4px;
top: -4px;
height: 34px;
font-size: 0.7em;
}
pre {
white-space: normal;
.sample-code {
margin: 0;
}
.sample-code > code {
padding: 1em 2em;
line-height: 2em;
}
.code {
display: none;
font-size: .85em;
color: #e76e55;
background-color: rgba(45, 45, 45, .9);
padding: 15px 0px 0px 15px;
margin-top: -20px;
box-sizing: border-box;
display: none;
padding: 15px 0 0 15px;
margin-top: -20px;
overflow: auto;
font-size: 0.85em;
color: #e76e55;
background-color: rgba(45, 45, 45, 0.9);
}
.copy {
height: 34px;
width: 58px;
height: 34px;
}
#form .nes-field, #form .field {
#form .nes-field,
#form .field {
margin-top: 20px;
}
.copied {
position: absolute;
bottom: 25px;
padding: 10px;
font-size: .7em;
z-index: 2;
right: 35px;
color: #000;
bottom: 25px;
z-index: 2;
display: none;
padding: 10px;
font-size: 0.7em;
color: #000;
}
.balloon .copied {
bottom: -4px;
right: 10px;
}
.code p {
width: 96%;
bottom: -4px;
}
@media screen and (max-width: 1280px) {
.code p:first-child {
padding-top: 2.7em;
width: 99%;
padding-top: 2.7em;
}
}
@@ -171,8 +172,8 @@ pre {
}
.code p {
font-size: .8em;
width: 100%;
font-size: 0.8em;
}
#code-avatars p {

View File

@@ -15,7 +15,10 @@
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link href="https://unpkg.com/nes.css/css/nes.min.css" rel="stylesheet" />
<link href="./style.css" rel="stylesheet" />
<link href="./demo/style.css" rel="stylesheet" />
<script async src="./demo/lib/highlight.js"></script>
<link async href="./demo/lib/highlight-theme.css" rel="stylesheet" />
<script>hljs.initHighlightingOnLoad();</script>
<meta property="og:type" content="website" />
<meta property="og:title" content="NES.css" />
@@ -56,15 +59,14 @@
<span class="nes-balloon from-right copied" id="copied-buttons">Copied!</span>
</section>
<section class="nes-container code" id="code-buttons">
<pre><code>
<p>&lt;button type=&quot;button&quot; class=&quot;nes-btn&quot;&gt;Normal&lt;/button&gt;</p>
<p>&lt;button type=&quot;button&quot; class=&quot;nes-btn is-primary&quot;&gt;Primary&lt;/button&gt;</p>
<p>&lt;button type=&quot;button&quot; class=&quot;nes-btn is-success&quot;&gt;Success&lt;/button&gt;</p>
<p>&lt;button type=&quot;button&quot; class=&quot;nes-btn is-warning&quot;&gt;Warning&lt;/button&gt;</p>
<p>&lt;button type=&quot;button&quot; class=&quot;nes-btn is-error&quot;&gt;Error&lt;/button&gt;</p>
<p>&lt;button type=&quot;button&quot; class=&quot;nes-btn is-disabled&quot;&gt;Disabled&lt;/button&gt;</p>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('buttons')">Copy</button>
</code></pre>
<pre class="sample-code"><code class="html">&lt;button type=&quot;button&quot; class=&quot;nes-btn&quot;&gt;Normal&lt;/button&gt;
&lt;button type=&quot;button&quot; class=&quot;nes-btn is-primary&quot;&gt;Primary&lt;/button&gt;
&lt;button type=&quot;button&quot; class=&quot;nes-btn is-success&quot;&gt;Success&lt;/button&gt;
&lt;button type=&quot;button&quot; class=&quot;nes-btn is-warning&quot;&gt;Warning&lt;/button&gt;
&lt;button type=&quot;button&quot; class=&quot;nes-btn is-error&quot;&gt;Error&lt;/button&gt;
&lt;button type=&quot;button&quot; class=&quot;nes-btn is-disabled&quot;&gt;Disabled&lt;/button&gt;
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('buttons')">Copy</button>
</code></pre>
</section>
<section class="nes-container with-title">
@@ -89,23 +91,21 @@
<span class="nes-balloon from-right copied" id="copied-containers">Copied!</span>
</section>
<section class="nes-container code" id="code-containers">
<pre><code>
<p>&lt;div class=&quot;nes-container with-title is-centered&quot;&gt;
&lt;p class=&quot;title&quot;&gt;Container.is-centered&lt;/p&gt;
&lt;p&gt;Good morning. Thou hast had a good night's sleep, I hope.&lt;/p&gt;
&lt;/div&gt;</p>
<p>&lt;div class=&quot;nes-container is-dark with-title&quot;&gt;
&lt;p class=&quot;title&quot;&gt;Container.is-dark&lt;/p&gt;
&lt;p&gt;Good morning. Thou hast had a good night's sleep, I hope.&lt;/p&gt;
&lt;/div&gt;</p>
<p>&lt;div class=&quot;nes-container is-rounded&quot;&gt;
&lt;p&gt;Good morning. Thou hast had a good night's sleep, I hope.&lt;/p&gt;
&lt;/div&gt;
<p>&lt;div class=&quot;nes-container is-rounded is-dark&quot;&gt;
&lt;p&gt;Good morning. Thou hast had a good night's sleep, I hope.&lt;/p&gt;
&lt;/div&gt;
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('containers')">Copy</button>
</code></pre>
<pre class="sample-code"><code class="html">&lt;div class=&quot;nes-container with-title is-centered&quot;&gt;
&lt;p class=&quot;title&quot;&gt;Container.is-centered&lt;/p&gt;
&lt;p&gt;Good morning. Thou hast had a good night's sleep, I hope.&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;nes-container is-dark with-title&quot;&gt;
&lt;p class=&quot;title&quot;&gt;Container.is-dark&lt;/p&gt;
&lt;p&gt;Good morning. Thou hast had a good night's sleep, I hope.&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;nes-container is-rounded&quot;&gt;
&lt;p&gt;Good morning. Thou hast had a good night's sleep, I hope.&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;nes-container is-rounded is-dark&quot;&gt;
&lt;p&gt;Good morning. Thou hast had a good night's sleep, I hope.&lt;/p&gt;
&lt;/div&gt;</code></pre>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('containers')">Copy</button>
</section>
<section class="nes-container with-title">
<h2 class="title">Radios</h2>
@@ -123,17 +123,15 @@
<span class="nes-balloon from-right copied" id="copied-radios">Copied!</span>
</section>
<section class="nes-container code" id="code-radios">
<pre><code>
<p>&lt;label&gt;
&lt;input type=&quot;radio&quot; class=&quot;nes-radio&quot; name=&quot;answer&quot; checked /&gt;
&lt;span&gt;Yes&lt;/span&gt;
&lt;/label&gt;</p>
<p>&lt;label&gt;
&lt;input type=&quot;radio&quot; class=&quot;nes-radio&quot; name=&quot;answer&quot; /&gt;
&lt;span&gt;No&lt;/span&gt;
&lt;/label&gt;</p>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('radios')">Copy</button>
</code></pre>
<pre class="sample-code"><code class="html">&lt;label&gt;
&lt;input type=&quot;radio&quot; class=&quot;nes-radio&quot; name=&quot;answer&quot; checked /&gt;
&lt;span&gt;Yes&lt;/span&gt;
&lt;/label&gt;
&lt;label&gt;
&lt;input type=&quot;radio&quot; class=&quot;nes-radio&quot; name=&quot;answer&quot; /&gt;
&lt;span&gt;No&lt;/span&gt;
&lt;/label&gt;</code></pre>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('radios')">Copy</button>
</section>
<section class="nes-container with-title">
@@ -152,17 +150,15 @@
<span class="nes-balloon from-right copied" id="copied-checkboxes">Copied!</span>
</section>
<section class="nes-container code" id="code-checkboxes">
<pre><code>
<p>&lt;label&gt;
&lt;input type=&quot;checkbox&quot; class=&quot;nes-checkbox&quot; checked /&gt;
&lt;span>Enable&lt;/span&gt;
&lt;/label&gt;</p>
<p>&lt;label&gt;
&lt;input type=&quot;checkbox&quot; class=&quot;nes-checkbox is-dark&quot; checked /&gt;
&lt;span&gt;Dark&lt;/span&gt;
&lt;/label&gt;</p>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('checkboxes')">Copy</button>
</code></pre>
<pre class="sample-code"><code class="html">&lt;label&gt;
&lt;input type=&quot;checkbox&quot; class=&quot;nes-checkbox&quot; checked /&gt;
&lt;span>Enable&lt;/span&gt;
&lt;/label&gt;
&lt;label&gt;
&lt;input type=&quot;checkbox&quot; class=&quot;nes-checkbox is-dark&quot; checked /&gt;
&lt;span&gt;Dark&lt;/span&gt;
&lt;/label&gt;</code></pre>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('checkboxes')">Copy</button>
</section>
<section class="nes-container with-title">
@@ -181,17 +177,15 @@
<span class="nes-balloon from-right copied" id="copied-avatars">Copied!</span>
</section>
<section class="nes-container code" id="code-avatars">
<pre><code>
<p>&lt;img src=&quot;https://www.gravatar.com/avatar&quot; class=&quot;nes-avatar is-small&quot;&gt;</p>
<p>&lt;img src=&quot;https://www.gravatar.com/avatar&quot; class=&quot;nes-avatar&quot;&gt;</p>
<p>&lt;img src=&quot;https://www.gravatar.com/avatar&quot; class=&quot;nes-avatar is-medium&quot;&gt;</p>
<p>&lt;img src=&quot;https://www.gravatar.com/avatar&quot; class=&quot;nes-avatar is-large&quot;&gt;</p>
<p>&lt;img src=&quot;https://www.gravatar.com/avatar&quot; class=&quot;nes-avatar is-rounded&quot;&gt;</p>
<p>&lt;img src=&quot;https://www.gravatar.com/avatar&quot; class=&quot;nes-avatar is-small is-rounded&quot;&gt;</p>
<p>&lt;img src=&quot;https://www.gravatar.com/avatar&quot; class=&quot;nes-avatar is-medium is-rounded&quot;&gt;</p>
<p>&lt;img src=&quot;https://www.gravatar.com/avatar&quot; class=&quot;nes-avatar is-large is-rounded&quot;&gt;</p>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('avatars')">Copy</button>
</code></pre>
<pre class="sample-code"><code class="html">&lt;img src=&quot;https://www.gravatar.com/avatar&quot; class=&quot;nes-avatar is-small&quot;&gt;
&lt;img src=&quot;https://www.gravatar.com/avatar&quot; class=&quot;nes-avatar&quot;&gt;
&lt;img src=&quot;https://www.gravatar.com/avatar&quot; class=&quot;nes-avatar is-medium&quot;&gt;
&lt;img src=&quot;https://www.gravatar.com/avatar&quot; class=&quot;nes-avatar is-large&quot;&gt;
&lt;img src=&quot;https://www.gravatar.com/avatar&quot; class=&quot;nes-avatar is-rounded&quot;&gt;
&lt;img src=&quot;https://www.gravatar.com/avatar&quot; class=&quot;nes-avatar is-small is-rounded&quot;&gt;
&lt;img src=&quot;https://www.gravatar.com/avatar&quot; class=&quot;nes-avatar is-medium is-rounded&quot;&gt;
&lt;img src=&quot;https://www.gravatar.com/avatar&quot; class=&quot;nes-avatar is-large is-rounded&quot;&gt;</code></pre>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('avatars')">Copy</button>
</section>
<section class="form nes-container with-title">
@@ -255,59 +249,58 @@
<span class="nes-balloon from-right copied" id="copied-form">Copied!</span>
</section>
<section class="nes-container code" id="code-form">
<pre><code>
<p>&lt;div class=&quot;nes-field&quot;&gt;
&lt;label for=&quot;name_field&quot;&gt;Your name&lt;/label&gt;
&lt;input type=&quot;text&quot; id=&quot;name_field&quot; class=&quot;nes-input&quot;&gt;
&lt;/div&gt;</p>
<p>&lt;div class=&quot;nes-field is-inline&quot;&gt;
&lt;label for=&quot;inline_field&quot;&gt;.input.is-success&lt;/label&gt;
&lt;input type=&quot;text&quot; id=&quot;inline_field&quot; class=&quot;nes-input is-success&quot; placeholder=&quot;NES.css&quot;&gt;
&lt;/div&gt;</p>
<p>&lt;div class=&quot;nes-field is-inline&quot;&gt;
&lt;label for=&quot;warning_field&quot;&gt;.input.is-warning&lt;/label&gt;
&lt;input type=&quot;text&quot; id=&quot;warning_field&quot; class=&quot;nes-input is-warning&quot; placeholder=&quot;8bit.css&quot;&gt;
&lt;/div&gt;</p>
<p>&lt;div class=&quot;nes-field is-inline&quot;&gt;
&lt;label for=&quot;error_field&quot;&gt;.input.is-error&lt;/label&gt;
&lt;input type=&quot;text&quot; id=&quot;error_field&quot; class=&quot;nes-input is-error&quot; placeholder=&quot;awesome.css&quot;&gt;
&lt;/div&gt;</p>
<p>&lt;div class=&quot;field&quot;&gt;
&lt;label for=&quot;textarea_field&quot;&gt;Textarea&lt;/label&gt;
&lt;textarea id=&quot;textarea_field&quot; class=&quot;nes-textarea&quot;&gt;&lt;/textarea&gt;
&lt;/div&gt;</p>
<pre class="sample-code"><code class="html">&lt;div class=&quot;nes-field&quot;&gt;
&lt;label for=&quot;name_field&quot;&gt;Your name&lt;/label&gt;
&lt;input type=&quot;text&quot; id=&quot;name_field&quot; class=&quot;nes-input&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;nes-field is-inline&quot;&gt;
&lt;label for=&quot;inline_field&quot;&gt;.input.is-success&lt;/label&gt;
&lt;input type=&quot;text&quot; id=&quot;inline_field&quot; class=&quot;nes-input is-success&quot; placeholder=&quot;NES.css&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;nes-field is-inline&quot;&gt;
&lt;label for=&quot;warning_field&quot;&gt;.input.is-warning&lt;/label&gt;
&lt;input type=&quot;text&quot; id=&quot;warning_field&quot; class=&quot;nes-input is-warning&quot; placeholder=&quot;8bit.css&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;nes-field is-inline&quot;&gt;
&lt;label for=&quot;error_field&quot;&gt;.input.is-error&lt;/label&gt;
&lt;input type=&quot;text&quot; id=&quot;error_field&quot; class=&quot;nes-input is-error&quot; placeholder=&quot;awesome.css&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;field&quot;&gt;
&lt;label for=&quot;textarea_field&quot;&gt;Textarea&lt;/label&gt;
&lt;textarea id=&quot;textarea_field&quot; class=&quot;nes-textarea&quot;&gt;&lt;/textarea&gt;
&lt;/div&gt;
<p>&lt;div id=&quot;selects&quot; class=&quot;selects&quot;&gt;
&lt;div class=&quot;nes-select&quot;&gt;
&lt;select required&gt;
&lt;option value=&quot;&quot; disabled selected hidden&gt;Select...&lt;/option&gt;
&lt;option value=&quot;0&quot;&gt;To be&lt;/option&gt;
&lt;option value=&quot;1&quot;&gt;Not to be&lt;/option&gt;
&lt;/select&gt;
&lt;/div&gt;</p>
<p>&lt;div class=&quot;nes-select is-success&quot;&gt;
&lt;select required&gt;
&lt;option value=&quot;&quot; disabled selected hidden&gt;Select...&lt;/option&gt;
&lt;option value=&quot;0&quot;&gt;To be&lt;/option&gt;
&lt;option value=&quot;1&quot;&gt;Not to be&lt;/option&gt;
&lt;/select&gt;
&lt;/div&gt;</p>
<p>&lt;div class=&quot;nes-select is-warning&quot;&gt;
&lt;select required&gt;
&lt;option value=&quot;&quot; disabled selected hidden&gt;Select...&lt;/option&gt;
&lt;option value=&quot;0&quot;&gt;To be&lt;/option&gt;
&lt;option value=&quot;1&quot;&gt;Not to be&lt;/option&gt;
&lt;/select&gt;
&lt;/div&gt;</p>
<p>&lt;div class=&quot;nes-select is-error&quot;&gt;
&lt;select required&gt;
&lt;option value=&quot;&quot; disabled selected hidden&gt;Select...&lt;/option&gt;
&lt;option value=&quot;0&quot;&gt;To be&lt;/option&gt;
&lt;option value=&quot;1&quot;&gt;Not to be&lt;/option&gt;
&lt;/select&gt;
&lt;/div&gt;</p>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('form')">Copy</button>
</code></pre>
&lt;div id=&quot;selects&quot; class=&quot;selects&quot;&gt;
&lt;div class=&quot;nes-select&quot;&gt;
&lt;select required&gt;
&lt;option value=&quot;&quot; disabled selected hidden&gt;Select...&lt;/option&gt;
&lt;option value=&quot;0&quot;&gt;To be&lt;/option&gt;
&lt;option value=&quot;1&quot;&gt;Not to be&lt;/option&gt;
&lt;/select&gt;
&lt;/div&gt;
&lt;div class=&quot;nes-select is-success&quot;&gt;
&lt;select required&gt;
&lt;option value=&quot;&quot; disabled selected hidden&gt;Select...&lt;/option&gt;
&lt;option value=&quot;0&quot;&gt;To be&lt;/option&gt;
&lt;option value=&quot;1&quot;&gt;Not to be&lt;/option&gt;
&lt;/select&gt;
&lt;/div&gt;
&lt;div class=&quot;nes-select is-warning&quot;&gt;
&lt;select required&gt;
&lt;option value=&quot;&quot; disabled selected hidden&gt;Select...&lt;/option&gt;
&lt;option value=&quot;0&quot;&gt;To be&lt;/option&gt;
&lt;option value=&quot;1&quot;&gt;Not to be&lt;/option&gt;
&lt;/select&gt;
&lt;/div&gt;
&lt;div class=&quot;nes-select is-error&quot;&gt;
&lt;select required&gt;
&lt;option value=&quot;&quot; disabled selected hidden&gt;Select...&lt;/option&gt;
&lt;option value=&quot;0&quot;&gt;To be&lt;/option&gt;
&lt;option value=&quot;1&quot;&gt;Not to be&lt;/option&gt;
&lt;/select&gt;
&lt;/div&gt;
&lt;/div&gt;</code></pre>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('form')">Copy</button>
</section>
<section class="balloon nes-container with-title">
@@ -330,21 +323,19 @@
<span class="nes-balloon from-right copied" id="copied-balloons">Copied!</span>
</section>
<section class="nes-container code" id="code-balloons">
<pre><code>
<p>&lt;div class=&quot;message -left&quot;&gt;
&lt;i class=&quot;nes-bcrikko&quot;&gt;&lt;/i&gt;
&lt;div class=&quot;nes-balloon from-left&quot;&gt;
&lt;p&gt;Hello NES.css&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;</p>
<p>&lt;div class=&quot;message -right&quot;&gt;
&lt;div class=&quot;nes-balloon from-right&quot;&gt;
&lt;p&gt;Good morning. Thou hast had a good night's sleep, I hope.&lt;/p&gt;
&lt;/div&gt;
&lt;i class=&quot;nes-bcrikko&quot;&gt;&lt;/i&gt;
&lt;/div&gt;</p>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('balloons')">Copy</button>
</code></pre>
<pre class="sample-code"><code class="html">&lt;div class=&quot;message -left&quot;&gt;
&lt;i class=&quot;nes-bcrikko&quot;&gt;&lt;/i&gt;
&lt;div class=&quot;nes-balloon from-left&quot;&gt;
&lt;p&gt;Hello NES.css&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;message -right&quot;&gt;
&lt;div class=&quot;nes-balloon from-right&quot;&gt;
&lt;p&gt;Good morning. Thou hast had a good night's sleep, I hope.&lt;/p&gt;
&lt;/div&gt;
&lt;i class=&quot;nes-bcrikko&quot;&gt;&lt;/i&gt;
&lt;/div&gt;</code></pre>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('balloons')">Copy</button>
</section>
<section class="nes-container with-title">
@@ -372,26 +363,24 @@
<span class="nes-balloon from-right copied" id="copied-lists">Copied!</span>
</section>
<section class="nes-container code" id="code-lists">
<pre><code>
<p>&lt;div class=&quot;lists&quot;&gt;
&lt;ul class=&quot;nes-list is-disc&quot;&gt;
&lt;li&gt;Good morning.&lt;/li&gt;
&lt;li&gt;Thou hast had a good night's sleep, I hope.&lt;/li&gt;
&lt;li&gt;Thou hast had a good afternoon&lt;/li&gt;
&lt;li&gt;Good night.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</p>
<pre class="sample-code"><code class="html">&lt;div class=&quot;lists&quot;&gt;
&lt;ul class=&quot;nes-list is-disc&quot;&gt;
&lt;li&gt;Good morning.&lt;/li&gt;
&lt;li&gt;Thou hast had a good night's sleep, I hope.&lt;/li&gt;
&lt;li&gt;Thou hast had a good afternoon&lt;/li&gt;
&lt;li&gt;Good night.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
<p>&lt;div class=&quot;lists&quot;&gt;
&lt;ul class=&quot;nes-list is-circle&quot;&gt;
&lt;li&gt;Good morning.&lt;/li&gt;
&lt;li&gt;Thou hast had a good night's sleep, I hope.&lt;/li&gt;
&lt;li&gt;Thou hast had a good afternoon&lt;/li&gt;
&lt;li&gt;Good night.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</p>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('lists')">Copy</button>
</code></pre>
&lt;div class=&quot;lists&quot;&gt;
&lt;ul class=&quot;nes-list is-circle&quot;&gt;
&lt;li&gt;Good morning.&lt;/li&gt;
&lt;li&gt;Thou hast had a good night's sleep, I hope.&lt;/li&gt;
&lt;li&gt;Thou hast had a good afternoon&lt;/li&gt;
&lt;li&gt;Good night.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</code></pre>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('lists')">Copy</button>
</section>
<section class="nes-container with-title">
@@ -452,60 +441,59 @@
<span class="nes-balloon from-right copied" id="copied-table">Copied!</span>
</section>
<section class="nes-container code" id="code-table">
<pre><code>
<p>&lt;div class=&quot;nes-table-responsive&quot;&gt;
&lt;table class=&quot;nes-table is-bordered is-centered&quot;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Table.is-bordered&lt;/th&gt;
&lt;th&gt;Table.is-centered&lt;/th&gt;
&lt;th&gt;Table.is-centered&lt;/th&gt;
&lt;th&gt;Table.is-centered&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Thou hast had a good morning&lt;/td&gt;
&lt;td&gt;Thou hast had a good afternoon&lt;/td&gt;
&lt;td&gt;Thou hast had a good evening&lt;/td&gt;
&lt;td&gt;Thou hast had a good night&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Thou hast had a good morning&lt;/td&gt;
&lt;td&gt;Thou hast had a good afternoon&lt;/td&gt;
&lt;td&gt;Thou hast had a good evening&lt;/td&gt;
&lt;td&gt;Thou hast had a good night&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;</p>
<p>&lt;div class=&quot;nes-table-responsive&quot;&gt;
&lt;table class=&quot;nes-table is-bordered is-dark&quot;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Table.is-dark&lt;/th&gt;
&lt;th&gt;Table.is-bordered&lt;/th&gt;
&lt;th&gt;Table.is-bordered&lt;/th&gt;
&lt;th&gt;Table.is-bordered&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Thou hast had a good morning&lt;/td&gt;
&lt;td&gt;Thou hast had a good afternon&lt;/td&gt;
&lt;td&gt;Thou hast had a good evening&lt;/td&gt;
&lt;td&gt;Thou hast had a good night&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Thou hast had a good morning&lt;/td&gt;
&lt;td&gt;Thou hast had a good afternoon&lt;/td&gt;
&lt;td&gt;Thou hast had a good afternoon&lt;/td&gt;
&lt;td&gt;Thou hast had a good afternoon&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;</p>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('table')">Copy</button>
</code></pre>
<pre class="sample-code"><code class="html">&lt;div class=&quot;nes-table-responsive&quot;&gt;
&lt;table class=&quot;nes-table is-bordered is-centered&quot;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Table.is-bordered&lt;/th&gt;
&lt;th&gt;Table.is-centered&lt;/th&gt;
&lt;th&gt;Table.is-centered&lt;/th&gt;
&lt;th&gt;Table.is-centered&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Thou hast had a good morning&lt;/td&gt;
&lt;td&gt;Thou hast had a good afternoon&lt;/td&gt;
&lt;td&gt;Thou hast had a good evening&lt;/td&gt;
&lt;td&gt;Thou hast had a good night&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Thou hast had a good morning&lt;/td&gt;
&lt;td&gt;Thou hast had a good afternoon&lt;/td&gt;
&lt;td&gt;Thou hast had a good evening&lt;/td&gt;
&lt;td&gt;Thou hast had a good night&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;div class=&quot;nes-table-responsive&quot;&gt;
&lt;table class=&quot;nes-table is-bordered is-dark&quot;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Table.is-dark&lt;/th&gt;
&lt;th&gt;Table.is-bordered&lt;/th&gt;
&lt;th&gt;Table.is-bordered&lt;/th&gt;
&lt;th&gt;Table.is-bordered&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Thou hast had a good morning&lt;/td&gt;
&lt;td&gt;Thou hast had a good afternon&lt;/td&gt;
&lt;td&gt;Thou hast had a good evening&lt;/td&gt;
&lt;td&gt;Thou hast had a good night&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Thou hast had a good morning&lt;/td&gt;
&lt;td&gt;Thou hast had a good afternoon&lt;/td&gt;
&lt;td&gt;Thou hast had a good afternoon&lt;/td&gt;
&lt;td&gt;Thou hast had a good afternoon&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;</code></pre>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('table')">Copy</button>
</section>
<section class="nes-container with-title">
@@ -522,15 +510,13 @@
<span class="nes-balloon from-right copied" id="copied-progress">Copied!</span>
</section>
<section class="nes-container code" id="code-progress">
<pre><code>
<p>&lt;progress class=&quot;nes-progress&quot; value=&quot;90&quot; max=&quot;100&quot;&gt;&lt;/progress&gt;</p>
<p>&lt;progress class=&quot;nes-progress is-primary&quot; value=&quot;80&quot; max=&quot;100&quot;&gt;&lt;/progress&gt;</p>
<p>&lt;progress class=&quot;nes-progress is-success&quot; value=&quot;50&quot; max=&quot;100&quot;&gt;&lt;/progress&gt;</p>
<p>&lt;progress class=&quot;nes-progress is-warning&quot; value=&quot;30&quot; max=&quot;100&quot;&gt;&lt;/progress&gt;</p>
<p>&lt;progress class=&quot;nes-progress is-error&quot; value=&quot;10&quot; max=&quot;100&quot;&gt;&lt;/progress&gt;</p>
<p>&lt;progress class=&quot;nes-progress is-pattern&quot; value=&quot;50&quot; max=&quot;100&quot;&gt;&lt;/progress&gt;</p>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('progress')">Copy</button>
</code></pre>
<pre class="sample-code"><code class="html">&lt;progress class=&quot;nes-progress&quot; value=&quot;90&quot; max=&quot;100&quot;&gt;&lt;/progress&gt;
&lt;progress class=&quot;nes-progress is-primary&quot; value=&quot;80&quot; max=&quot;100&quot;&gt;&lt;/progress&gt;
&lt;progress class=&quot;nes-progress is-success&quot; value=&quot;50&quot; max=&quot;100&quot;&gt;&lt;/progress&gt;
&lt;progress class=&quot;nes-progress is-warning&quot; value=&quot;30&quot; max=&quot;100&quot;&gt;&lt;/progress&gt;
&lt;progress class=&quot;nes-progress is-error&quot; value=&quot;10&quot; max=&quot;100&quot;&gt;&lt;/progress&gt;
&lt;progress class=&quot;nes-progress is-pattern&quot; value=&quot;50&quot; max=&quot;100&quot;&gt;&lt;/progress&gt;</code></pre>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('progress')">Copy</button>
</section>
<section class="nes-container with-title" class="badges">
@@ -574,42 +560,40 @@
<span class="nes-balloon from-right copied" id="copied-badges">Copied!</span>
</section>
<section class="nes-container code" id="code-badges">
<pre><code>
<p>&lt;a href=&quot;#&quot; class=&quot;nes-badge&quot;&gt;
&lt;span class=&quot;is-dark&quot;&gt;NES.css&lt;/span&gt;
&lt;/a&gt;</p>
<p>&lt;a href=&quot;#&quot; class=&quot;nes-badge&quot;&gt;
&lt;span class=&quot;is-primary&quot;&gt;is&lt;/span&gt;
&lt;/a&gt;</p>
<p>&lt;a href=&quot;#&quot; class=&quot;nes-badge&quot;&gt;
&lt;span class=&quot;is-success&quot;&gt;a&lt;/span&gt;
&lt;/a&gt;</p>
<p>&lt;a href=&quot;#&quot; class=&quot;nes-badge&quot;&gt;
&lt;span class=&quot;is-warning&quot;&gt;great&lt;/span&gt;
&lt;/a&gt;</p>
<p>&lt;a href=&quot;#&quot; class=&quot;nes-badge&quot;&gt;
&lt;span class=&quot;is-error&quot;&gt;framework!&lt;/span&gt;
&lt;/a&gt;</p>
<p>&lt;a href=&quot;#&quot; class=&quot;nes-badge is-splited&quot;&gt;
&lt;span class=&quot;is-dark&quot;&gt;npm&lt;/span&gt;
&lt;span class=&quot;is-primary&quot;&gt;1.1.0&lt;/span&gt;
&lt;/a&gt;</p>
<p>&lt;a href=&quot;#&quot; class=&quot;nes-badge is-splited&quot;&gt;
&lt;span class=&quot;is-dark&quot;&gt;test&lt;/span&gt;
&lt;span class=&quot;is-success&quot;&gt;100%&lt;/span&gt;
&lt;/a&gt;</p>
<p>&lt;a href=&quot;#&quot; class=&quot;nes-badge is-icon&quot;&gt;
&lt;span class=&quot;is-warning&quot;&gt;
&lt;i class=&quot;nes-icon star is-small&quot;&gt;&lt;/i&gt;
&lt;/span&gt;
&lt;span class=&quot;is-primary&quot;&gt;Icons&lt;/span&gt;
&lt;/a&gt;</p>
<p>&lt;a href=&quot;#&quot; class=&quot;nes-badge is-icon&quot;&gt;
&lt;span class=&quot;is-dark&quot;&gt;hi&lt;/span&gt;
&lt;span class=&quot;is-warning&quot;&gt;Text&lt;/span&gt;
&lt;/a&gt;</p>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('badges')">Copy</button>
</code></pre>
<pre class="sample-code"><code class="html">&lt;a href=&quot;#&quot; class=&quot;nes-badge&quot;&gt;
&lt;span class=&quot;is-dark&quot;&gt;NES.css&lt;/span&gt;
&lt;/a&gt;
&lt;a href=&quot;#&quot; class=&quot;nes-badge&quot;&gt;
&lt;span class=&quot;is-primary&quot;&gt;is&lt;/span&gt;
&lt;/a&gt;
&lt;a href=&quot;#&quot; class=&quot;nes-badge&quot;&gt;
&lt;span class=&quot;is-success&quot;&gt;a&lt;/span&gt;
&lt;/a&gt;
&lt;a href=&quot;#&quot; class=&quot;nes-badge&quot;&gt;
&lt;span class=&quot;is-warning&quot;&gt;great&lt;/span&gt;
&lt;/a&gt;
&lt;a href=&quot;#&quot; class=&quot;nes-badge&quot;&gt;
&lt;span class=&quot;is-error&quot;&gt;framework!&lt;/span&gt;
&lt;/a&gt;
&lt;a href=&quot;#&quot; class=&quot;nes-badge is-splited&quot;&gt;
&lt;span class=&quot;is-dark&quot;&gt;npm&lt;/span&gt;
&lt;span class=&quot;is-primary&quot;&gt;1.1.0&lt;/span&gt;
&lt;/a&gt;
&lt;a href=&quot;#&quot; class=&quot;nes-badge is-splited&quot;&gt;
&lt;span class=&quot;is-dark&quot;&gt;test&lt;/span&gt;
&lt;span class=&quot;is-success&quot;&gt;100%&lt;/span&gt;
&lt;/a&gt;
&lt;a href=&quot;#&quot; class=&quot;nes-badge is-icon&quot;&gt;
&lt;span class=&quot;is-warning&quot;&gt;
&lt;i class=&quot;nes-icon star is-small&quot;&gt;&lt;/i&gt;
&lt;/span&gt;
&lt;span class=&quot;is-primary&quot;&gt;Icons&lt;/span&gt;
&lt;/a&gt;
&lt;a href=&quot;#&quot; class=&quot;nes-badge is-icon&quot;&gt;
&lt;span class=&quot;is-dark&quot;&gt;hi&lt;/span&gt;
&lt;span class=&quot;is-warning&quot;&gt;Text&lt;/span&gt;
&lt;/a&gt;</code></pre>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('badges')">Copy</button>
</section>
<section class="nes-container with-title">
@@ -650,37 +634,35 @@
<span class="nes-balloon from-right copied" id="copied-reaction">Copied!</span>
</section>
<section class="nes-container code" id="code-reaction">
<pre><code>
<p>&lt;i class=&quot;nes-icon heart is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon heart&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon heart is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon heart is-large&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon heart is-empty&quot;&gt;&lt;/i&gt;</p>
<pre class="sample-code"><code class="html">&lt;i class=&quot;nes-icon heart is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon heart&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon heart is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon heart is-large&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon heart is-empty&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-icon star is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon star&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon star is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon star is-large&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-icon star is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon star&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon star is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon star is-large&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-icon star is-half is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon star is-half&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon star is-half is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon star is-half is-large&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-icon star is-half is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon star is-half&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon star is-half is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon star is-half is-large&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-icon star is-transparent is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon star is-transparent&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon star is-transparent is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon star is-transparent is-large&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-icon star is-transparent is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon star is-transparent&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon star is-transparent is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon star is-transparent is-large&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-icon star is-empty&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-icon star is-empty&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-icon like is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon like&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon like is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon like is-large&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon like is-empty&quot;&gt;&lt;/i&gt;</p>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('reaction')">Copy</button>
</code></pre>
&lt;i class=&quot;nes-icon like is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon like&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon like is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon like is-large&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon like is-empty&quot;&gt;&lt;/i&gt;</code></pre>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('reaction')">Copy</button>
</section>
<section class="nes-container with-title">
@@ -745,63 +727,61 @@
<span class="nes-balloon from-right copied" id="copied-sns">Copied!</span>
</section>
<section class="nes-container code" id="code-sns">
<pre><code>
<p>&lt;i class=&quot;nes-icon twitter is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon twitter&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon twitter is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon twitter is-large&quot;&gt;&lt;/i&gt;</p>
<pre class="sample-code"><code class="html">&lt;i class=&quot;nes-icon twitter is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon twitter&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon twitter is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon twitter is-large&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-icon facebook is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon facebook&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon facebook is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon facebook is-large&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-icon facebook is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon facebook&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon facebook is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon facebook is-large&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-icon github is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon github&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon github is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon github is-large&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-icon github is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon github&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon github is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon github is-large&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-icon youtube is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon youtube&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon youtube is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon youtube is-large&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-icon youtube is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon youtube&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon youtube is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon youtube is-large&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-icon google is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon google&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon google is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon google is-large&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-icon google is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon google&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon google is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon google is-large&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-icon medium is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon medium is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon medium is-large&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-icon medium is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon medium is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon medium is-large&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-icon twitch is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon twitch&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon twitch is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon twitch is-large&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-icon twitch is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon twitch&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon twitch is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon twitch is-large&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-icon reddit is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon reddit&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon reddit is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon reddit is-large&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-icon reddit is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon reddit&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon reddit is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon reddit is-large&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-icon whatsapp is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon whatsapp&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon whatsapp is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon whatsapp is-large&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-icon whatsapp is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon whatsapp&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon whatsapp is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon whatsapp is-large&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-icon gmail is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon gmail&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon gmail is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon gmail is-large&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-icon gmail is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon gmail&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon gmail is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon gmail is-large&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-icon linkedin is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon linkedin&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon linkedin is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon linkedin is-large&quot;&gt;&lt;/i&gt;</p>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('sns')">Copy</button>
</code></pre>
&lt;i class=&quot;nes-icon linkedin is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon linkedin&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon linkedin is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon linkedin is-large&quot;&gt;&lt;/i&gt;</code></pre>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('sns')">Copy</button>
</section>
<section class="nes-container with-title">
@@ -835,32 +815,30 @@
<span class="nes-balloon from-right copied" id="copied-others">Copied!</span>
</section>
<section class="nes-container code" id="code-others">
<pre><code>
<p>&lt;i class=&quot;nes-icon close is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon close&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon close is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon close is-large&quot;&gt;&lt;/i&gt;</p>
<pre class="sample-code"><code class="html">&lt;i class=&quot;nes-icon close is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon close&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon close is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon close is-large&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-octocat animate&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-octocat animate&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-icon trophy is-small&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon trophy&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon trophy is-medium&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-icon trophy is-large&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-icon trophy is-small&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon trophy&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon trophy is-medium&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-icon trophy is-large&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-mario&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-ash&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-pokeball&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-mario&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-ash&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-pokeball&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-bulbasaur&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-charmander&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-squirtle&quot;&gt;&lt;/i&gt;</p>
&lt;i class=&quot;nes-bulbasaur&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-charmander&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-squirtle&quot;&gt;&lt;/i&gt;
<p>&lt;i class=&quot;nes-smartphone&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-phone&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-kirby&quot;&gt;&lt;/i&gt;</p>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('others')">Copy</button>
</code></pre>
&lt;i class=&quot;nes-smartphone&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-phone&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-kirby&quot;&gt;&lt;/i&gt;</code></pre>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('others')">Copy</button>
</section>
<section class="nes-container with-title">
@@ -875,13 +853,11 @@
<span class="nes-balloon from-right copied" id="copied-controllers">Copied!</span>
</section>
<section class="nes-container code" id="code-controllers">
<pre><code>
<p>&lt;i class=&quot;nes-logo&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;nes-jp-logo&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;snes-logo&quot;&gt;&lt;/i&gt;</p>
<p>&lt;i class=&quot;snes-jp-logo&quot;&gt;&lt;/i&gt;</p>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('controllers')">Copy</button>
</code></pre>
<pre class="sample-code"><code class="html">&lt;i class=&quot;nes-logo&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;nes-jp-logo&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;snes-logo&quot;&gt;&lt;/i&gt;
&lt;i class=&quot;snes-jp-logo&quot;&gt;&lt;/i&gt;</code></pre>
<button type="button" class="nes-btn show-code copy" onClick="copyToClipboard('controllers')">Copy</button>
</section>
</section>

View File

@@ -146,11 +146,17 @@
"string-quotes": "double",
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true
}
},
"ignoreFiles": [
"demo/lib/*"
]
},
"eslintConfig": {
"extends": "airbnb-base"
},
"eslintIgnore": [
"demo/lib/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"