| 12345678910111213141516171819202122232425262728293031323334353637 |
- .vamtam-splash-screen {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: var( --vamtam-accent-color-5 );
- z-index: 99999;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- .vamtam-splash-screen-progress-wrapper {
- position: absolute;
- bottom: 55%;
- left: 20%;
- right: 20%;
- padding-bottom: 30px;
- border-bottom: 1px solid var( --vamtam-accent-color-7 );
- }
- .vamtam-splash-screen-progress {
- position: absolute;
- top: 100%;
- left: 0;
- width: 0;
- height: 1px;
- background: var( --vamtam-accent-color-1 );
- transition: width .25s linear;
- }
- img {
- margin: auto;
- display: block;
- max-width: 100%;
- height: auto;
- }
- }
|