splash-screen.less 678 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .vamtam-splash-screen {
  2. position: fixed;
  3. top: 0;
  4. right: 0;
  5. bottom: 0;
  6. left: 0;
  7. background: var( --vamtam-accent-color-5 );
  8. z-index: 99999;
  9. -webkit-backface-visibility: hidden;
  10. backface-visibility: hidden;
  11. .vamtam-splash-screen-progress-wrapper {
  12. position: absolute;
  13. bottom: 55%;
  14. left: 20%;
  15. right: 20%;
  16. padding-bottom: 30px;
  17. border-bottom: 1px solid var( --vamtam-accent-color-7 );
  18. }
  19. .vamtam-splash-screen-progress {
  20. position: absolute;
  21. top: 100%;
  22. left: 0;
  23. width: 0;
  24. height: 1px;
  25. background: var( --vamtam-accent-color-1 );
  26. transition: width .25s linear;
  27. }
  28. img {
  29. margin: auto;
  30. display: block;
  31. max-width: 100%;
  32. height: auto;
  33. }
  34. }