forked from amirams/spotinst-functions-examples
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathformatter.js
More file actions
54 lines (50 loc) · 878 Bytes
/
formatter.js
File metadata and controls
54 lines (50 loc) · 878 Bytes
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
const header =
`<html>
<style>
#wrapper {
padding-top: 15px;
width: 620px;
height: 320px;
font-family:sans-serif, verdana;
background: #C70039;
text-align: center;
padding: 5px 3px;
border-radius: 5px;
overflow: hidden;
}
.button{
font-size: 15px;
margin: 2px 1px;
border-radius: 5px;
background-color: #CDCDCD;
border: none;
padding: 12px 25px;
text-decoration: none;
display: inline-block;
color: black;
}
.text-input{
font-size: 15px;
margin: 2px 1px;
border-radius: 5px;
padding: 12px 25px;
display: inline-block;
}
.reset{
float: right;
padding-right: 40px;
}
.player-list{
text-align:left;
padding-left:40px;
column-count:3;
}
</style>
<body>
<div id="wrapper">
`;
const footer =
` </div>
</body>
</html>`;
exports.formatter = [header, footer]