initial commit

This commit is contained in:
Andrew Davidson 2023-01-01 22:17:24 -08:00
commit ca79a1b2c6
3 changed files with 67 additions and 0 deletions

3
Dockerfile Normal file
View file

@ -0,0 +1,3 @@
from nginx
COPY site /usr/share/nginx/html

BIN
site/bearrot_emoji_logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 298 KiB

64
site/index.html Normal file
View file

@ -0,0 +1,64 @@
<html>
<head>
<title>Bearrot</title>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Open+Sans:300,Open+Sans:600' type='text/css' />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google-site-verification" content="yAguAHUkoIdCIYoExClYU9zsnLFIkUkwenw_xpMRH3c" />
<style type="text/css">
body {
color: #3c3c3c;
}
a {
color: #3c3c3c;
text-decoration: none;
}
a:visited {
color: #3c3c3c;
text-decoration: none;
}
a:hover {
color: #ff3c3c;
}
div.info {
margin: 0em auto;
max-width: 300px;
text-align: center;
}
div.info p {
font-family: "Open Sans", Helvetica, sans-serif;
display: block;
width: 250px;
margin: 0em auto;
margin-bottom: 10px;
}
div.info h1 {
font-family: "Open Sans", Helvetica, sans-serif;
font-weight: 600
display: block;
width: 250px;
margin: 0em auto;
margin-bottom: 10px;
margin-top: 40px;
}
img.logo {
max-width: 300px;
}
</style>
</head>
<body>
<div class="info">
<img src="/bearrot_emoji_logo.png" class="logo"/>
<h1>Bearrot</h1>
<p><a href="mailto:hello@bearrot.net?subject=Hello">hello@bearrot.net</a></p>
</div>
</body>
</html>