base.css 728 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .header {
  2. font-size: 3em;
  3. color: white;
  4. background: #404040;
  5. text-align: center;
  6. height: 2.5em;
  7. text-shadow: 4px 4px 4px black;
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. }
  12. #error {
  13. font-size: 2em;
  14. color: red;
  15. height: 50px;
  16. text-shadow: 2px 2px 2px black;
  17. margin: 2em;
  18. display: none;
  19. }
  20. .container {
  21. width: 100% !important;
  22. height: 100% !important;
  23. display: flex;
  24. justify-content: center;
  25. align-items: center;
  26. flex-direction: column;
  27. position: absolute;
  28. }
  29. .visible {
  30. display: block;
  31. }
  32. #target {
  33. width: 100% !important;
  34. height: 100% !important;
  35. position: absolute;
  36. }
  37. body {
  38. background: #000000;
  39. margin: 0;
  40. padding: 0;
  41. overscroll-behavior: none;
  42. }