StaffCredit.module.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. color: white;
  34. }
  35. $credit-length: -240em;
  36. h1 {
  37. font-size: 3em;
  38. }
  39. h2 {
  40. font-size: 2.2em;
  41. }
  42. .dev-position {
  43. font-size: 1em;
  44. }
  45. .dev-name {
  46. font-size: 1.8em;
  47. }
  48. .staff-credit-mt-10rem {
  49. margin-top: 10rem;
  50. }
  51. .staff-credit-mb-6rem {
  52. margin-bottom: 6rem;
  53. }
  54. .staff-credit-content {
  55. padding-bottom: 40vh;
  56. }
  57. }