mirror of
https://github.com/openclassify/openclassify.git
synced 2026-02-15 01:36:05 -06:00
26 lines
569 B
Twig
26 lines
569 B
Twig
<div class='bar'></div>
|
|
<br>
|
|
<style>
|
|
.bar {
|
|
width: 30%;
|
|
height: 20px;
|
|
border: 1px solid #2980b9;
|
|
border-radius: 3px;
|
|
background-image: repeating-linear-gradient(-45deg, #2980b9, #2980b9 11px, #eee 10px, #eee 20px);
|
|
background-size: 28px 28px;
|
|
animation: move .5s linear infinite;
|
|
}
|
|
|
|
@keyframes move {
|
|
0% {
|
|
background-position: 0 0;
|
|
}
|
|
100% {
|
|
background-position: 28px 0;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
location.href = document.referrer;
|
|
</script> |