-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathexistdb-styles.html
41 lines (37 loc) · 1.04 KB
/
existdb-styles.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
<dom-module id="existdb-styles">
<template>
<style>
:host{
display: block;
@apply(--paper-font-common-base);
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}
app-header-layout {
position: absolute;
top: 0px;
right: 0px;
bottom: 0px;
left: 0px;
/*height: calc(100% - 200px);*/
background-color: ghostwhite;
overflow: hidden;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
app-header {
background: rgb(0, 136, 204);
padding: 0px;
color: white;
height: 60px;
}
.logout{
color:white;
font-size:18px;
font-weight:300;
margin-right:20px;
}
</style>
</template>
</dom-module>