Skip to content

Instantly share code, notes, and snippets.

@razwan
Last active June 7, 2016 07:16
Show Gist options
  • Save razwan/5a6c2b6fa6992c66de3919ec7e903b87 to your computer and use it in GitHub Desktop.
Save razwan/5a6c2b6fa6992c66de3919ec7e903b87 to your computer and use it in GitHub Desktop.
<div class="c-card">
<div class="c-card__header">
<h2 class="c-card__title">Title text here</h3>
</div>
<div class="c-card__body">
<p>I would like to buy:</p>
<!-- A layout module -->
<ul class="l-list">
<li class="l-list__item">
<!-- A reusable nested component -->
<div class="c-checkbox">
<input id="option_1" type="checkbox" name="checkbox" class="c-checkbox__input">
<label for="option_1" class="c-checkbox__label">Apples</label>
</div>
</li>
<li class="l-list__item">
<div class="c-checkbox">
<input id="option_2" type="checkbox" name="checkbox" class="c-checkbox__input">
<label for="option_2" class="c-checkbox__label">Pears</label>
</div>
</li>
</ul><!-- .l-list -->
<button class="c-button c-button--primary c-button--huge is-active">Click me!</button>
</div><!-- .c-card__body -->
</div><!-- .c-card -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment