This commit is contained in:
@@ -16,6 +16,7 @@ steps:
|
||||
- git reset --hard origin/master
|
||||
- name: install
|
||||
commands:
|
||||
- pwd
|
||||
- npm install
|
||||
- name: restart
|
||||
commands:
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,4 +1,4 @@
|
||||
node_modules
|
||||
.vscode
|
||||
.env
|
||||
index.html
|
||||
public/index.html
|
||||
|
||||
@@ -19,7 +19,7 @@ class Output {
|
||||
}
|
||||
|
||||
async writeToFile (content) {
|
||||
const filename = 'index.html'
|
||||
const filename = './public/index.html'
|
||||
|
||||
try {
|
||||
await fs.unlinkSync(filename)
|
||||
|
||||
@@ -4,47 +4,8 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<title>Warframe Market Gaps</title>
|
||||
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
}
|
||||
|
||||
table {
|
||||
margin: 64px 0;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
tr {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
tr:nth-child(even) {
|
||||
background: rgb(240, 242, 243);
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 2px 16px;
|
||||
}
|
||||
|
||||
th {
|
||||
padding: 8px 16px;
|
||||
}
|
||||
|
||||
.name {
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.timestamp {
|
||||
font-size: small;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Warframe Market Gaps</h1>
|
||||
|
||||
37
public/style.css
Normal file
37
public/style.css
Normal file
@@ -0,0 +1,37 @@
|
||||
* {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
}
|
||||
|
||||
table {
|
||||
margin: 64px 0;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
tr {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
tr:nth-child(even) {
|
||||
background: rgb(240, 242, 243);
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 2px 16px;
|
||||
}
|
||||
|
||||
th {
|
||||
padding: 8px 16px;
|
||||
}
|
||||
|
||||
.name {
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.timestamp {
|
||||
font-size: small;
|
||||
}
|
||||
Reference in New Issue
Block a user