Project reorganization, add editorconfig and linter

This commit is contained in:
Ludwig Schubert
2017-08-09 16:47:35 -07:00
parent 07c7527734
commit 11eda0fc49
75 changed files with 1120 additions and 17117 deletions
+30
View File
@@ -0,0 +1,30 @@
import { Template } from "../mixins/template";
import { page } from "../helpers/layout";
const T = Template("d-appendix", `
<style>
:host {
display: block;
font-size: 13px;
line-height: 1.7em;
margin-bottom: 0;
border-top: 1px solid rgba(0,0,0,0.1);
color: rgba(0,0,0,0.5);
background: rgb(250, 250, 250);
padding-top: 36px;
padding-bottom: 48px;
}
${page(".l-body")}
</style>
<div class="l-body">
<slot></slot>
</div>
`);
export class Appendix extends T(HTMLElement) {
}