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.

30 lines
470 B

5 years ago
  1. .Boi {
  2. position: fixed;
  3. z-index: 99999999;
  4. color: #FFF;
  5. background-color: rgba(0, 0, 0, 0.5);
  6. padding: 0.25em 0.5ch;
  7. font-size: 3vmax;
  8. line-height: 1.33em;
  9. font-family: sans-serif;
  10. }
  11. .Boi-left {
  12. left: 0;
  13. top: 50%;
  14. transform: translate(0, -50%);
  15. }
  16. .Boi-centre {
  17. left: 50%;
  18. top: 50%;
  19. transform: translate(-50%, -50%);
  20. background-color: rgba(0, 0, 0, 0.75);
  21. font-size: 5vmax;
  22. }
  23. .Boi-right {
  24. right: 0;
  25. bottom: 0;
  26. font-size: 2vmax;
  27. }