Initial commit

master
Adriel Sand 2021-09-22 20:32:19 +03:00
commit 13c1520dfd
2 changed files with 84 additions and 0 deletions

42
off.html 100644
View File

@ -0,0 +1,42 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Generator Status.. OFF</title>
<style>
* {
margin: 0;
}
p {
font-family: "Source Sans Pro", "SF Pro Display", sans-serif;
font-weight:600;
font-size: 40px;
}
b {
font-weight: bolder;
}
.status-bg {
background-color: green;
height: auto;
display: block;
text-align: center;
align-content: center;
padding: 50px;
}
.status-text {
color: white;
}
</style>
</head>
<body>
<div class="status-bg">
<div class="status-text">
<p>The generator is <b>OFF!</b> :)</p>
</div>
</div>
</body>
</html>

42
on.html 100644
View File

@ -0,0 +1,42 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Generator Status.. OFF</title>
<style>
* {
margin: 0;
}
p {
font-family: "Source Sans Pro", "SF Pro Display", sans-serif;
font-weight:600;
font-size: 40px;
}
b {
font-weight: bolder;
}
.status-bg {
background-color: dimgray;
height: auto;
display: block;
text-align: center;
align-content: center;
padding: 50px;
}
.status-text {
color: white;
}
</style>
</head>
<body>
<div class="status-bg">
<div class="status-text">
<p>The generator is <b>ON!</b> :(</p>
</div>
</div>
</body>
</html>