base.css 770 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .overlay {
  2. position: fixed;
  3. top: 0px;
  4. left: 0px;
  5. height: 100%;
  6. cursor: pointer;
  7. }
  8. .box {
  9. background: rgba(0.0, 0.0, 0.0, 0.75);
  10. border-radius: 5px;
  11. border-style: double;
  12. border-color: #173869;
  13. margin-left: 200px;
  14. }
  15. .column {
  16. display: flex;
  17. flex-direction: column;
  18. justify-content: center;
  19. }
  20. .row {
  21. display: flex;
  22. flex-direction: row;
  23. }
  24. .centered {
  25. display: flex;
  26. flex-direction: column;
  27. justify-content: center;
  28. height: 100%;
  29. }
  30. .text {
  31. font-family: 'VT323', monospace;
  32. font-size: 4em;
  33. color: #e2e2e2;
  34. text-shadow: 4px 4px #000000;
  35. margin: 20px;
  36. }
  37. .big {
  38. font-size: 6em;
  39. }
  40. body {
  41. width: 100%;
  42. height: 100%;
  43. position: absolute;
  44. background: #000000;
  45. margin: 0;
  46. padding: 0;
  47. overscroll-behavior: none;
  48. }