A bunch of misc web stuff.

This commit is contained in:
2016-10-09 21:20:40 -07:00
parent 807ff0119c
commit 0deded40e8
4 changed files with 112 additions and 59 deletions

View File

@@ -9,7 +9,7 @@
<link rel="shortcut icon" type="image/png" href="//static.xinu.tv/favicon/email.png">
<!-- 1. Load platform support before any code that touches the DOM. -->
<script src="bower_components/webcomponentsjs/webcomponents.min.js"></script>
<script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<!-- 2. Use an HTML Import to bring in the element. -->
<link rel="import" href="bower_components/font-roboto/roboto.html">
@@ -22,9 +22,26 @@ html,body {
font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
}
</style>
<style is="custom-style">
/* TODO(polyup): For speed, consider reworking these styles with .classes
and #ids rather than [attributes].
*/
[layout] {
@apply(--layout);
}
[layout][vertical] {
@apply(--layout-vertical);
}
[fullbleed] {
margin: 0;
height:100vh;
}
</style>
<link rel="import" href="bower_components/iron-flex-layout/iron-flex-layout.html">
</head>
<body fullbleed="" layout="" vertical="">
<xinu-email-app></xinu-email-app>
</body></html>