Create shutdown.htm

This commit is contained in:
DremOS Developing Team 2018-07-02 15:51:36 -05:00 committed by GitHub
parent 2da63eb5eb
commit 1cef17e135
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

29
shutdown.htm Normal file
View file

@ -0,0 +1,29 @@
<html>
html, body {
height: 100%;
margin: 0;
padding: 0;
width: 100%;
}
body {
display: table;
background-color: #000000;
}
.my-block {
text-align: center;
display: table-cell;
vertical-align: middle;
}
.orange {
color: orange;
}
</style>
</head>
<body>
<div class="my-block">
It's now safe to turn off<br />
your browser
</div>
</body>
</html>