index.html 912 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Status</title>
  6. <meta name="description" content="Most common used after Multi-Select edit, to confirm user action, and optional provide 'Undo' input">
  7. <link rel="stylesheet" href="../status.css">
  8. <!--
  9. This <style> and <link> is only used for the example code, is no needed for the real case use
  10. -->
  11. <style>
  12. html, body {
  13. margin: 0;
  14. padding: 0;
  15. font-size: 10px;
  16. background-color: #fff;
  17. }
  18. body {
  19. background: none;
  20. }
  21. </style>
  22. </head>
  23. <body role="application">
  24. <p dir="ltr">
  25. <label>
  26. <input type="checkbox"
  27. onchange="document.documentElement.dir = this.checked ? 'rtl' : 'ltr'">
  28. RTL mode
  29. </label>
  30. </p>
  31. <section role="status">
  32. <p>The Alarm is set for <strong>7 hours</strong> and <strong>14 minutes</strong> from now</p>
  33. </section>
  34. </body>
  35. </html>