Mercurial > code > home > repos > front-door-display
annotate src/scheduleLcd.html @ 11:affb3c8f3f58
schedulelcd progress
author | drewp@bigasterisk.com |
---|---|
date | Thu, 06 Jun 2024 14:49:04 -0700 |
parents | b46679798c51 |
children |
rev | line source |
---|---|
2 | 1 <!DOCTYPE html> |
2 <html> | |
3 <head> | |
4 <meta charset="utf-8" /> | |
11 | 5 <title>scheduleLcd - for the lcd screen that sits by a gaming computer and |
6 tells you how much time is left</title> | |
2 | 7 <meta name="viewport" content="width=device-width, initial-scale=1" /> |
3 | 8 <link rel="stylesheet" type="text/css" media="screen" href="./main.css" /> |
9 <link | |
10 rel="stylesheet" | |
11 type="text/css" | |
12 media="screen" | |
13 href="./scheduleLcd.css" | |
14 /> | |
2 | 15 <script type="module" src="./scheduleLcd.ts"></script> |
16 </head> | |
17 <body> | |
3 | 18 <div |
19 class="area" | |
20 style=" | |
21 left: 2px; | |
22 right: 2px; | |
23 top: 0; | |
24 z-index: 2; | |
25 box-shadow: 0 5px 10px #00000033; | |
26 opacity:.6 | |
27 " | |
28 > | |
29 </div> | |
30 <div | |
31 class="closeup-cal area" | |
7
b46679798c51
mv esp code to this repo. still trying to get correct refreshes
drewp@bigasterisk.com
parents:
6
diff
changeset
|
32 style="left: 2px; top: 60px; width: 300px; height: 120px" |
3 | 33 > |
5 | 34 <div><span id="time">.....</span> 😼 🐶 ⤵ 6 minutes left</div> |
35 <div>youtube | minecraft | |
36 <span style="display: inline-block; background: red;">R</span> | |
37 <span style="display: inline-block; background: green;">G</span> | |
38 <span style="display: inline-block; background: blue;">B</span> | |
39 </div> | |
3 | 40 </div> |
11 | 41 <div class="area" style="left: 2px; top: 180px; width: 60px; height: 100px"> |
3 | 42 map |
43 </div> | |
44 <div class="area" style="left: 66px; top: 180px; right: 2px; bottom: 2px"> | |
45 comingsoon | |
11 | 46 <img src="face-simone_00487_.png" style="height: 100%"> |
47 </div> | |
3 | 48 |
2 | 49 </body> |
50 </html> |