Advertisement
Katsiree

progressbar_css

Apr 30th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.17 KB | None | 0 0
  1.     .progress-outer {
  2.         background: #fff;
  3.         border-radius: 50px;
  4.         padding: 15px;
  5.         margin: 10px 0;
  6.         box-shadow: 0 0 10px rgba(209, 219, 231, 0.7);
  7.     }
  8.  
  9.     .progress {
  10.         height: 27px;
  11.         margin: 0;
  12.         overflow: visible;
  13.         border-radius: 50px;
  14.         background: #eaedf3;
  15.         box-shadow: inset 0 10px 10px rgba(244, 245, 250, 0.9);
  16.     }
  17.  
  18.     .progress .progress-bar {
  19.         border-radius: 50px;
  20.     }
  21.  
  22.     .progress .progress-value {
  23.         top: 4px;
  24.         font-size: 14px;
  25.         font-weight: bold;
  26.         color: #fff;
  27.         letter-spacing: 2px;
  28.         text-shadow: 0px 2px 7px rgba(58, 58, 58, 0.9);
  29.         background: rgba(56, 56, 56, 0.2);
  30.         padding: 0px 15px;
  31.         border-radius: 25px;
  32.         left: 50px;
  33.         position: absolute;
  34.         top: auto;
  35.     }
  36.  
  37.     .progress-bar.active {
  38.         animation: reverse progress-bar-stripes 0.40s linear infinite, animate-positive 2s;
  39.     }
  40.  
  41.     @-webkit-keyframes animate-positive {
  42.         0% {
  43.             width: 0%;
  44.         }
  45.     }
  46.  
  47.     @keyframes animate-positive {
  48.         0% {
  49.             width: 0%;
  50.         }
  51.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement