-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathexistdb-launcher.html
84 lines (72 loc) · 1.6 KB
/
existdb-launcher.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!--
`existdb-launcher`
a eXistdb launchpad
@demo demo/index.html
-->
<dom-module id="existdb-launcher">
<template>
<style>
:host {
display: block;
width:100%;
height:100%;
margin:0;
padding:0;
@apply(--paper-font-common-base);
color:white;
--app-drawer-scrim-background:rgba(0,0,0,0.3);
}
app-toolbar{
background: rgb(0, 136, 204);
width:100%;
margin:0;
}
.righttool{
margin-right:50px;
}
.logoWrapper{
padding:2px;
margin-right: 4px;
font-size:22px;
font-weight:700;
color:white;
}
.logo{
width:92px;
}
a{
color:white;
}
</style>
<app-header-layout>
<app-header slot="header">
<app-toolbar>
<div class="logoWrapper">
eXistdb
</div>
<div main-title>Dashboard</div>
<div class="righttool"><a href="login">login</a></div>
</app-toolbar>
</app-header>
<h1>Launcher</h1>
<slot></slot>
</app-header-layout>
</template>
<script>
class ExistdbLauncher extends Polymer.Element {
static get is() { return 'existdb-launcher'; }
static get properties() {
return {
prop1: {
type: String,
value: 'existdb-launcher'
}
};
}
_toggleDrawer(){
this.$.drawer.toggle();
}
}
window.customElements.define(ExistdbLauncher.is, ExistdbLauncher);
</script>
</dom-module>