index.html 943 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  7. <title>Excalidraw</title>
  8. <style>
  9. :root {
  10. --bg-color: #eee;
  11. --text-color: black;
  12. }
  13. html {
  14. height: 100%;
  15. background: var(--bg-color);
  16. color: var(--text-color);
  17. font-family: sans-serif;
  18. }
  19. body {
  20. margin: 0;
  21. height: 100%;
  22. display: flex;
  23. align-items: center;
  24. justify-content: center;
  25. }
  26. .title {
  27. font-size: 4em;
  28. text-transform: uppercase;
  29. }
  30. @media (prefers-color-scheme: dark) {
  31. body {
  32. --bg-color: #333;
  33. --text-color: white;
  34. }
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <h1 class="title">
  40. excalidraw
  41. </h1>
  42. </body>
  43. </html>