Last active
June 7, 2016 07:16
-
-
Save razwan/5a6c2b6fa6992c66de3919ec7e903b87 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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