StaffCredit.module.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // Staff Credit
  2. .staff-credit {
  3. // attached !important for updating from .modal-dialog class style
  4. width: 80vw !important;
  5. max-width: unset !important;
  6. height: 80vh !important;
  7. max-height: unset !important;
  8. margin: 10vh 10vw !important;
  9. // see https://css-tricks.com/old-timey-terminal-styling/
  10. :global(.credit-curtain) {
  11. padding-top: 80vh;
  12. text-shadow: 0 0 10px #c8c8c8;
  13. background-color: black;
  14. background-image: radial-gradient(rgba(50, 100, 100, 75%), black 120%);
  15. }
  16. :global(.background) {
  17. position: absolute;
  18. top: 0;
  19. left: 0;
  20. width: 100%;
  21. height: 100%;
  22. pointer-events: none;
  23. background: repeating-linear-gradient(0deg, rgba(black, 0.15), rgba(black, 0.15) 2px, transparent 2px, transparent 4px);
  24. }
  25. :global(h1),
  26. :global(h2),
  27. :global(h3),
  28. :global(h4),
  29. :global(h5),
  30. :global(h6),
  31. :global(.dev-position),
  32. :global(.dev-name) {
  33. color: white;
  34. }
  35. $credit-length: -240em;
  36. :global(h1) {
  37. font-size: 3em;
  38. }
  39. :global(h2) {
  40. font-size: 2.2em;
  41. }
  42. :global(.dev-position) {
  43. font-size: 1em;
  44. }
  45. :global(.dev-name) {
  46. font-size: 1.8em;
  47. }
  48. :global(.staff-credit-mt-10rem) {
  49. margin-top: 10rem;
  50. }
  51. :global(.staff-credit-mb-6rem) {
  52. margin-bottom: 6rem;
  53. }
  54. :global(.staff-credit-content) {
  55. padding-bottom: 40vh;
  56. }
  57. }