HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/studis.kauko.lt/wp-content/plugins/wp-statistics/assets/dev/sass/component/_skeleton.scss
.wps-skeleton-container {
  padding:0 24px;

  &__skeleton {
    background-color: #e0e0e0;
    background-image: linear-gradient(
                    90deg,
                    rgba(224, 224, 224, 0.6) 0%,
                    rgba(245, 245, 245, 0.8) 50%,
                    rgba(224, 224, 224, 0.6) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    display: inline-block;
    overflow: hidden;

    &--full {
      width: 100%;
    }

    &--h-150 {
      height: 150px;
    }
  }
}


@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}