Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.18 KB | None | 0 0
  1. /** Полоса доната */
  2. .dg-bar {
  3.   border-radius: 1rem;
  4.   background: rgba(0, 0, 0, 0) !important;
  5.   border: none !important;
  6.   overflow: visible !important;
  7.   box-shadow: none !important;
  8. }
  9.  
  10. /** Контейнер */
  11. .dg-bar-container {
  12.   padding: 10px 0 !important;
  13. }
  14.  
  15. /** Финиш */
  16.  
  17. .dg-bar:after {
  18.   content: '';
  19.   background: url('https://avatanplus.com/files/resources/original/5861063ef0f2f1593b00660b.png') 100% 100% no-repeat;
  20.   background-size: cover;
  21.   width: 3rem;
  22.   height: 3rem;
  23.   position: absolute;
  24.   z-index: 2;
  25.   top: -0rem;
  26.   right: 0.7rem;
  27.   animation: goal 30s infinite linear;
  28. }
  29.  
  30. /** Анимации */
  31. @keyframes rainbow {
  32.   0% {
  33.     background-position-x: 0rem;
  34.   }
  35.   100% {
  36.     background-position-x: 11.5rem;
  37.   }
  38. }
  39.  
  40. @keyframes player {
  41.   0% {
  42.     background-position-y: -0.5rem;
  43.   }
  44.   50% {
  45.     background-position-y: -0.1rem;
  46.   }
  47.   100% {
  48.     background-position-y: -0.5rem;
  49.   }
  50. }
  51.  
  52. @keyframes goal {
  53.   0%, 2%, 4%, 100% {
  54.     margin-top: -0.1rem;
  55.   }
  56.   1%, 3% {
  57.     margin-top: 0.1rem;
  58.   }
  59. }
  60.  
  61. /** Полоса прогресса */
  62. .dg-bar-line {
  63.   background: none !important;
  64.   border: none !important;
  65.   overflow: visible !important;
  66.   margin-top: -0.5rem;
  67.   height: calc(100% + 1rem) !important;
  68. }
  69.  
  70. .dg-bar-line:before {
  71.   content: '';
  72.   background: url('http://klybok.net/streamer/cat.png');
  73.   background-repeat: repeat-x;
  74.   background-size: 11.5rem 2.9rem !important;
  75.  
  76.   position: absolute;
  77.   left: 0;
  78.   right: 0;
  79.   top: 0.2rem;
  80.   bottom: 0;
  81.  
  82.   animation: rainbow 3s infinite linear;
  83. }
  84.  
  85. /** Персонаж */
  86. .dg-bar-line:after {
  87.   content: '';
  88.   background: url('http://www.pngall.com/wp-content/uploads/2016/06/Nyan-Cat-Transparent.png') 100% 100% no-repeat;
  89.   background-size: cover;
  90.   width: 6.4rem;
  91.   height: 4.2rem;
  92.   position: absolute;
  93.   z-index: 3;
  94.   top: -0.4rem;
  95.   right: -2.5rem;
  96.   animation: player 1.3s infinite linear;
  97. }
  98.  
  99. .plain-text {
  100.   color: #fb8527 !important;
  101. }
  102.  
  103. .dg-bar-text {
  104.   color: #fff !important;
  105.   text-shadow: 2px 2px 0 black !important;
  106.   position: absolute;
  107.   z-index: 5;
  108.   margin-bottom: -6rem;
  109. }
  110.  
  111. .dg-title {
  112.   margin-bottom: 0.3rem;
  113. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement