Advertisement
IssyPutchy

Untitled

Feb 23rd, 2022
749
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.30 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Info Screen</title>
  4. <style type="text/css">
  5. h3 {
  6.     padding-right: 10px;
  7.     font-size: 1rem;
  8.     color: #ffffff;
  9. }
  10. table {
  11.     margin-right: auto;
  12.     margin-left: auto;
  13. }
  14. td {
  15.     padding: 10px;
  16.     font-size: 1rem;
  17.     text-align: center;
  18.     color: #ffffff;
  19. }
  20. progress {
  21.   -webkit-progress-value;
  22.     background-color: #ff0;
  23. }
  24. </style>
  25. </head>
  26.  
  27. <body bgcolor=black fgcolor=white>
  28.  
  29. <table border=0>
  30. <tr><td>
  31. <h3>%Current_Activity</h3>
  32. <meter id="walk" value="%Current_Activity_Confidence" min="0" max="100"></meter>
  33. </td><td>
  34. <h3>%speed kph</h3>
  35. <meter id="speed" value="%speed" min="10" max="150"></meter>
  36. </td></tr>
  37. <tr><td>
  38. <h3>Alt: %altitude m</h3>
  39. <meter id="altitude" value="%altitude" min="-100" max="1000"></meter>
  40. </td><td>
  41. <h3>Accu: %accu m</h3>
  42. <meter id="accuracy" value="%accu" min="0" max="50"></meter>
  43. </td></tr>
  44. <tr><td>
  45. <h3>BPM: %Heart_Rate</h3>
  46. <meter id="bpm" value="%Heart_Rate" min=40 max="185"></meter>
  47. </td><td>
  48. <h3>Steps: %WSTEPS</h3>
  49. <meter id="steps" value="%WSTEPS" min="0" max="60000"></meter>
  50. </tr></td>
  51. <tr><td>
  52. <h3>Mag: %mag μT</h3>
  53. <meter id="mfield" value="%mag" min="0" max="8000"></meter>
  54. </td><td>
  55. <h3>Light: %lux lum</h3>
  56. <meter id="light" value="%lux" min="0" max="15000"></meter>
  57. </table>
  58.  
  59. </body>
  60. </html>
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement