A Pen by Matthew Daniel Brown on CodePen.
This file contains 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
<main> | |
<section id="gallery-section"> | |
<ul> | |
<li><img src="http://placehold.it/320x240" alt=""></li> | |
<li><img src="http://placehold.it/320x240" alt=""></li> | |
<li><img src="http://placehold.it/320x240" alt=""></li> | |
<li><img src="http://placehold.it/320x240" alt=""></li> | |
<li><img src="http://placehold.it/320x240" alt=""></li> | |
<li><img src="http://placehold.it/320x240" alt=""></li> | |
</ul> |
This file contains 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
header | |
h1 (S)CSS Grid | |
h2 Practice and fine-tuning | |
main#demo | |
section#grid-demo-section | |
ul.grid | |
- for (var x = 0; x < 12; x++) | |
li | |
img(src="http://placehold.it/360", alt="img") |
HTML & CSS study based on: https://dribbble.com/shots/2262761-Mobile-Blog-App-Interface/attachments/424147
A Pen by Matthew Daniel Brown on CodePen.
This file contains 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> | |
<div class="search"> | |
<div class="bar"> | |
<div class="icon"> | |
<i></i> | |
</div> | |
</div> | |
<form> | |
<input type="text"> | |
</form> |
This file contains 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="container" id="app"> | |
<div class="col"> | |
<div class="box"> | |
<h3>Colors <small><span>Pro Tip</span>Edit Hex codes</small></h3> | |
<div> | |
<div class="demo-color"> | |
<div class="preview"> |
This file contains 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
<ul class="mdc-list mdc-list--two-line" aria-orientation="vertical"> | |
<li class="mdc-list-item"> | |
<span class="mdc-list-item__graphic material-icons" aria-hidden="true">face</span> | |
<span class="mdc-list-item__text"> | |
<span class="mdc-list-item__primary-text">Item 1</span> | |
<span class="mdc-list-item__secondary-text">Subtitle for item 1</span> | |
</span> | |
<span class="mdc-list-item__meta">10</span> | |
</li> | |
This file contains 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
<aside class="mdc-drawer mdc-drawer--dismissible mdc-drawer--open"> | |
<div class="mdc-drawer__header"> | |
<h3 class="mdc-drawer__title">Mail</h3> | |
<h6 class="mdc-drawer__subtitle">[email protected]</h6> | |
</div> | |
<div class="mdc-drawer__content"> | |
<nav class="mdc-list"><a class="mdc-list-item mdc-list-item--activated" href="#" tabindex="0" aria-selected="true"><i class="material-icons mdc-list-item__graphic" aria-hidden="true">inbox</i>Inbox</a><a class="mdc-list-item" href="#" tabindex="-1"><i class="material-icons mdc-list-item__graphic" aria-hidden="true">star</i>Star</a> | |
<a | |
class="mdc-list-item" href="#" tabindex="-1"><i class="material-icons mdc-list-item__graphic" aria-hidden="true">send</i>Sent Mail</a><a class="mdc-list-item" href="#" tabindex="-1"><i class="material-icons mdc-list-item__graphic" aria-hidden="true">drafts</i>Drafts</a> | |
<hr class="mdc-list-divider"> |
This file contains 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
<header class="demo"> | |
<!-- <h1>SCSS Button Styles and Mixins</h1> --> | |
<h1>SCSS Buttons </h1> | |
<p>{ Style & Mixins }</p> | |
</header> | |
<main id="demo"> | |
<section> | |
<ul class="button-list"> | |
<li><button>Primary</button></li> |
A Pen by Matthew Daniel Brown on CodePen.