You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
329B

  1. /*==============*/
  2. /* The Imposter */
  3. /*==============*/
  4. .imposter {
  5. position: var(--positioning, absolute);
  6. top: 50%;
  7. left: 50%;
  8. transform: translate(-50%, -50%);
  9. }
  10. .imposter.contain {
  11. --margin: 0px;
  12. overflow: auto;
  13. max-width: calc(100% - (var(--margin) * 2));
  14. max-height: calc(100% - (var(--margin) * 2));
  15. }