Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.76 KB | None | 0 0
  1. .progress {
  2.     display: block;
  3.     height: 11px;
  4. }
  5.  
  6. .progress > i {
  7.     display: inline-block;
  8.     height: 11px;
  9.     padding: 0 5px;
  10.     min-width: 10px !important;
  11.     position: relative;
  12.     box-sizing: border-box;
  13.     background: url(http://img.kingwars.ru/i/bar.gif) left top repeat-x;
  14. }
  15.  
  16. .progress > i:before {
  17.     content: "";
  18.     display: block;
  19.     width: 5px;
  20.     height: 11px;
  21.     position: absolute;
  22.     top: 0;
  23.     left: 0;
  24.     background: url(http://img.kingwars.ru/i/bar_left.gif) left top no-repeat;
  25. }
  26.  
  27. .progress > i:after {
  28.     content: "";
  29.     display: block;
  30.     width: 5px;
  31.     height: 11px;
  32.     position: absolute;
  33.     top: 0;
  34.     right: 0;
  35.     background: url(http://img.kingwars.ru/i/bar_right.gif) right top no-repeat;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement