Skip to content

Instantly share code, notes, and snippets.

@dhg
dhg / gist:3601934
Created September 2, 2012 17:30
Titlebar
<header class="bar-title">
<h1 class="title">Title</h1>
</header>
@dhg
dhg / gist:3601935
Created September 2, 2012 17:30
Titlebar
<header class="bar-title">
<h1 class="title">Title</h1>
</header>
@dhg
dhg / gist:3602099
Created September 2, 2012 17:41
Titlebar with buttons
<header class="bar-title">
<a class="button" href="#">
Left
</a>
<h1 class="title">Title</h1>
<a class="button" href="#">
Right
</a>
</header>
@dhg
dhg / gist:3602130
Created September 2, 2012 17:43
Titlebar with segmented controller
<header class="bar-title">
<a class="button" href="#">
Left
</a>
<ul class="segmented-controller">
<li class="active">One</li>
<li>Two</li>
<li>Three</li>
</ul>
<a class="button" href="#">
@dhg
dhg / gist:3603138
Created September 2, 2012 18:56
Tab bar
<nav class="bar-tab">
<ul class="tab-inner">
<li class="tab-item active">
<img class="tab-icon" src="img/hamburger.png">
<div class="tab-label">Label</div>
</li>
<li class="tab-item">
<img class="tab-icon" src="img/hamburger.png">
<div class="tab-label">Label</div>
</li>
@dhg
dhg / gist:3603287
Created September 2, 2012 19:06
Standard bar with segmented controller
<nav class="bar-standard">
<ul class="segmented-controller">
<li class="active">Thing one</li>
<li>Thing two</li>
<li>Thing three</li>
</ul>
</nav>
@dhg
dhg / gist:3604612
Created September 2, 2012 21:14
Standard bars
<!-- Fixed to top -->
<div class="bar-standard"></div>
<!-- Fixed below top bar -->
<div class="bar-standard bar-header-secondary"></div>
<!-- Fixed to bottom -->
<div class="bar-standard bar-footer"></div>
@dhg
dhg / gist:3604659
Created September 2, 2012 21:21
Standard bar with block button
<div class="bar-standard">
<a class="button-block">Block level button</a>
</div>
@dhg
dhg / gist:3604790
Created September 2, 2012 21:44
Buttons
<a class="button">Button</a>
<a class="button-main">Button</a>
<a class="button-positive">Button</a>
<a class="button-negative">Button</a>
@dhg
dhg / gist:3604808
Created September 2, 2012 21:47
Buttons with counts
<a class="button">Button <span class="count">1</span></a>
<a class="button-main">Button <span class="count">1</span></a>
<a class="button-positive">Button <span class="count">1</span></a>
<a class="button-negative">Button <span class="count">1</span></a>