StaffCredit.module.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. // Staff Credit
  2. .staff-credit :global {
  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. .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, 0.75), black 120%);
  15. }
  16. .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. h1,
  26. h2,
  27. h3,
  28. h4,
  29. h5,
  30. h6,
  31. .dev-position,
  32. .dev-name {
  33. font-family: 'Press Start 2P', Lato, -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  34. color: white;
  35. }
  36. $credit-length: -240em;
  37. h1 {
  38. font-size: 3em;
  39. }
  40. h2 {
  41. font-size: 2.2em;
  42. }
  43. .dev-position {
  44. font-size: 1em;
  45. }
  46. .dev-name {
  47. font-size: 1.8em;
  48. }
  49. .staff-credit-mt-10rem {
  50. margin-top: 10rem;
  51. }
  52. .staff-credit-mb-6rem {
  53. margin-bottom: 6rem;
  54. }
  55. .staff-credit-content {
  56. padding-bottom: 40vh;
  57. }
  58. }