Guest User

Untitled

a guest
Nov 18th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. /**
  2. * The first commented line is your dabblet’s title
  3. */
  4.  
  5. .progress_container {
  6. width: 80%;
  7. height: 40px;
  8. margin: 20px auto;
  9. padding: 0;
  10. background: #ccc;
  11. border: 1px solid #000;
  12. }
  13.  
  14. .progress_bar {
  15. height: 40px;
  16. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(180,221,180,1)), color-stop(17%,rgba(131,199,131,1)), color-stop(33%,rgba(82,177,82,1)), color-stop(67%,rgba(0,138,0,1)), color-stop(83%,rgba(0,87,0,1)), color-stop(100%,rgba(0,36,0,1)));
  17. float: left;
  18. -webkit-animation: slide 1s ease-in;
  19. }
  20.  
  21. .progress_number {
  22. font-size: 2em;
  23. font-family: arial;
  24. color: #fff;
  25. position: fixed;
  26. width: inherit;
  27. text-align: center;
  28. text-shadow: 1px 1px #000;
  29. }
  30.  
  31. @-webkit-keyframes slide {
  32. 0% { width: 0%; }
  33. 100% { }
  34. }
Add Comment
Please, Sign In to add comment