48 lines
1.5 KiB
HTML
48 lines
1.5 KiB
HTML
<!DOCTYPE html><html><head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-touch-fullscreen" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<meta name="format-detection" content="telephone=no">
|
|
|
|
<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-lite.min.js"></script>
|
|
|
|
<!-- 2. Use an HTML Import to bring in the element. -->
|
|
<link rel="import" href="bower_components/font-roboto/roboto.html">
|
|
|
|
<link rel="import" href="elements/xinu-email-app.html">
|
|
|
|
<style>
|
|
html,body {
|
|
background-color: #E5E5E5;
|
|
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>
|