1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-02-24 01:12:31 +01:00

Merge pull request #30 from scottaohara/patch-1

update label instances
This commit is contained in:
ダーシノ 2018-11-30 20:43:24 +09:00 committed by GitHub
commit 7097249237
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,11 +54,11 @@
<h2 class="title">Containers</h2>
<div class="containers">
<div class="container with-title is-center">
<label class="title">Container.is-center</label>
<p class="title">Container.is-center</p>
<p>Good morning. Thou hast had a good night's sleep, I hope.</p>
</div>
<div class="container is-dark with-title">
<label class="title">Container.is-dark</label>
<p class="title">Container.is-dark</p>
<p style="color: white;">Good morning. Thou hast had a good night's sleep, I hope.</p>
</div>
<div class="container is-rounded">
@ -95,20 +95,20 @@
<section class="form container with-title">
<h2 class="title">Form</h2>
<div class="field">
<label>Your name</label>
<input type="text" class="input">
<label for="name_field">Your name</label>
<input type="text" id="name_field" class="input">
</div>
<div class="field is-inline">
<label>.input.is-success</label>
<input type="text" class="input is-success" placeholder="NES.css">
<label for="inline_field">.input.is-success</label>
<input type="text" id="inline_field" class="input is-success" placeholder="NES.css">
</div>
<div class="field is-inline">
<label>.input.is-warning</label>
<input type="text" class="input is-warning" placeholder="8bit.css">
<label for="warning_field>.input.is-warning</label>
<input type="text" id="warning_field class="input is-warning" placeholder="8bit.css">
</div>
<div class="field is-inline">
<label>.input.is-error</label>
<input type="text" class="input is-error" placeholder="awesome.css">
<label for="error_field">.input.is-error</label>
<input type="text" id="error_field" class="input is-error" placeholder="awesome.css">
</div>
</section>