File size: 469 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@keyframes loading {
	from {
		transform: translateX(-50vw);
	}
	to {
		transform: translateX(100vw);
	}
}

.loading-line-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: transparent;
	z-index: 1000;
}

.loading-line-bar {
	width: 50vw;
	height: 100%;
	position: absolute;
	background: linear-gradient( to right, transparent 0%, var(--wp-admin-theme-color) 50%, transparent 100% );
	animation: loading 2s infinite linear;
}