-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
existdb-styles.html
55 lines (46 loc) · 1.36 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<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;
}
paper-tabs{
background: var(--paper-blue-300);
--paper-tabs-selection-bar:{
border:3px solid var(--paper-blue-700);
};
height:60px;
--paper-tab-content:{
color:white;
font-size:20px;
};
}
paper-tab{
position: relative;
--paper-tab-ink:var(--paper-blue-100);
}
</style>
</template>
</dom-module>