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.

_overlay.scss 477B

123456789101112131415161718192021222324252627282930
  1. .overlay_container {
  2. top: 0;
  3. left: 0;
  4. width: 100%;
  5. height: 100%;
  6. position: fixed;
  7. z-index: $overlayZ;
  8. background: rgba(22, 185, 252, .9);
  9. }
  10. .overlay_content {
  11. color: #fff;
  12. text-align: center;
  13. width: 400px;
  14. height: 250px;
  15. top: 50%;
  16. left: 50%;
  17. position: absolute;
  18. margin-top: -125px;
  19. margin-left: -200px;
  20. }
  21. .overlay_text_small {
  22. display: block;
  23. font-size: 18px;
  24. }
  25. .overlay_icon {
  26. font-size: 100px;
  27. }