-
Notifications
You must be signed in to change notification settings - Fork 25
/
template.html
45 lines (45 loc) · 976 Bytes
/
template.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
<html>
<head>
<title>Project Tab Manager {{pagetitle}}</title>
<style>
body {
font-size: 100%;
}
h1 {
@apply(--paper-font-title)
}
.img {
margin: 10px 0;
width: 100%;
display: flex;
justify-content: center;
background-color: #fafaff;
}
img {
margin: 20px auto;
}
li {
clear: both;
}
.content {
max-width: 900px;
margin: 0 auto;
padding: 0 16px;
@apply(--paper-font-common-base)
}
.blue .paper-header {
background-color: var(--paper-light-blue-500);
}
</style>
</head>
<body>
<paper-header-panel class="blue">
<paper-toolbar class="paper-header">
<h1 class="paper-font-title">Project Tab Manager {{pagetitle}}</h1>
</paper-toolbar>
<section class="content">
{{content|raw}}
</section>
</paper-header-panel>
</bod
</html>