snappymail/dev/Styles/_progressjs.css

24 lines
609 B
CSS
Raw Normal View History

#progressjs {
2021-04-20 19:41:51 +08:00
background-color: #999;
2020-07-30 18:17:41 +08:00
left: 0;
2021-04-20 19:41:51 +08:00
overflow: hidden;
2020-07-30 18:17:41 +08:00
position: fixed;
top: 0;
2020-03-11 21:17:52 +08:00
transition: width .5s;
2021-03-09 19:12:30 +08:00
width: 0;
z-index: 2000;
2020-03-11 21:17:52 +08:00
}
2021-04-20 19:41:51 +08:00
#progressjs > div {
animation: simple-pace-stripe-animation 500ms linear infinite;
2020-03-11 21:17:52 +08:00
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.3) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent);
background-size: 32px 32px;
2021-04-20 19:41:51 +08:00
height: 3px;
margin-right: -32px;
2020-03-11 21:17:52 +08:00
}
@keyframes simple-pace-stripe-animation {
0% { transform: none; }
100% { transform: translate(-32px, 0); }
2020-03-11 21:17:52 +08:00
}