Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.21 KB | None | 0 0
  1. <style>
  2.         .progress-container {
  3.             border: 1px solid #000;
  4.             height: 19px;
  5.             margin: 5px;
  6.             background: white;
  7.             -moz-border-radius: 4px;
  8.             -webkit-border-radius: 4px;
  9.             text-align: center;
  10.             position: relative;
  11.         }
  12.         .progress {
  13.             position: absolute;
  14.             top: 0;
  15.             left: 0;
  16.             height: 100%;
  17.             width: 100%;
  18.             -moz-border-radius: 2px;
  19.             -webkit-border-radius: 2px;
  20.             background: #1E5799;
  21.             background: -moz-linear-gradient(top, #1E5799 0%, #2989D8 50%, #207cca 51%, #7db9e8 100%); /* firefox */
  22.             background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207cca), color-stop(100%,#7db9e8)); /* webkit */
  23.             filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1E5799', endColorstr='#7db9e8',GradientType=0 );
  24.             z-index: 2;
  25.         }
  26.         .progress-number {
  27.             color: #000;
  28.             font-weight: bold;
  29.             position: absolute;
  30.             left: 37%;
  31.             z-index: 3;
  32.         }
  33. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement