index.html 481 B

12345678910111213141516171819202122232425262728293031
  1. <style>
  2. * {
  3. box-sizing: border-box;
  4. -moz-box-sizing: border-box;
  5. }
  6. body {
  7. margin: 0;
  8. font-family: sans-serif;
  9. font-weight: bold;
  10. color: white;
  11. background-color: blue;
  12. }
  13. #page {
  14. width: 100vw;
  15. height: 100vh;
  16. display: flex;
  17. justify-content: center;
  18. align-content: center;
  19. align-items: center;
  20. }
  21. #page>h1 {
  22. font-size: 5vh;
  23. flex: 1 1 auto;
  24. text-align: center;
  25. }
  26. </style>
  27. <div id="page">
  28. <h1>...coming soon...</h1>
  29. </div>