Skip to content

Instantly share code, notes, and snippets.

View d13's full-sized avatar
🚀

Keith Daulton d13

🚀
View GitHub Profile
@d13
d13 / app.html
Last active May 30, 2020 10:11
Aurelia Gist - nav in a LayoutView
<template>
<require from="nav-bar.html"></require>
<!-- this nav works -->
<nav-bar router.bind="router"></nav-bar>
<div class="page-host" style="margin-top:50px">
<router-view router.bind="router"></router-view>
</div>
</template>
@d13
d13 / gist:6423256
Created September 3, 2013 12:26
quick styling for exported Chrome bookmarks
<style>
* { margin:0; padding:0; }
body { margin:10px; }
dl { border:1px solid #eaeaea; padding:10px; margin-bottom:10px; }
/* dl > * { margin-left:10px; } */
dl h3 {
background:#f6f6f6;
padding:5px;
border:1px solid #eaeaea;
border-bottom:none;