Initial Commit

This commit is contained in:
Tido Klaassen 2018-08-20 19:13:26 +02:00
commit 8d8f5dd37e
10 changed files with 9368 additions and 0 deletions

17
html/index.tpl Normal file
View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ESP32 GameBoy Printer</title>
<link rel="stylesheet" href="style.css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<h1>ESP32 Gameboy Printer</h1>
<p>
<a href="/remove_all">Delete all pictures</a>
<br>
<a href="/reset_seq">Reset sequence numbering</a>
</p>
%GBPics%
</body>
</html>

4
html/style.css Normal file
View file

@ -0,0 +1,4 @@
body {margin: 5% auto; background: #f2f2f2; color: #444444; font-family: 'Courier New'; font-size: 14px; line-height: 1.6; text-shadow: 0 1px 0 #ffffff; max-width: 73%;}
h1, h2 {line-height: 1.3;}
button {background-color: #444444; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin-top: 10px; margin-bottom: 10px;}
select { width: 240px; height: 34px; overflow: hidden; background: #ddd; border: 1px solid #ccc; margin-bottom: 15px;}