Skip to content

Instantly share code, notes, and snippets.

@Reverbe
Reverbe / app.css
Last active June 21, 2017 15:14 — forked from gist-master/app.css
Grid: basic usage
.customer-photo {
display: inline-block;
width: 32px;
height: 32px;
border-radius: 50%;
background-size: 32px 35px;
background-position: center center;
vertical-align: middle;
line-height: 32px;
box-shadow: inset 0 0 1px #999, inset 0 0 10px rgba(0,0,0,.2);
@Reverbe
Reverbe / app.html
Created January 6, 2017 14:57 — forked from arjanvanderleden/app.html
Aurelia Skeleton list list-item implementation
<template>
<require from="./list"></require>
<div>List</div>
<list></list>
</template>