mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
7b4197087b
* Adds a quick npm test * Update .gitignore * Adds additional requirements
32 lines
579 B
HTML
32 lines
579 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Integration Test</title>
|
|
<meta name="robots" content="noindex" />
|
|
|
|
<style>
|
|
html, body {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
body {
|
|
background-color: #000;
|
|
color: #fff;
|
|
margin: 0;
|
|
}
|
|
|
|
.image {
|
|
height: 100%;
|
|
width: 100%;
|
|
background-image: url('./image.jpg');
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="image"></div>
|
|
</body>
|
|
</html> |