Search
 
SCRIPT & CODE EXAMPLE
 

CSS

step progress bar css

.container {
      width: 600px;
      margin: 100px auto; 
  }
  .progressbar {
      counter-reset: step;
  }
  .progressbar li {
      list-style-type: none;
      width: 25%;
      float: left;
      font-size: 12px;
      position: relative;
      text-align: center;
      text-transform: uppercase;
      color: #7d7d7d;
  }
  .progressbar li:before {
      width: 30px;
      height: 30px;
      content: counter(step);
      counter-increment: step;
      line-height: 30px;
      border: 2px solid #7d7d7d;
      display: block;
      text-align: center;
      margin: 0 auto 10px auto;
      border-radius: 50%;
      background-color: white;
  }
  .progressbar li:after {
      width: 100%;
      height: 2px;
      content: '';
      position: absolute;
      background-color: #7d7d7d;
      top: 15px;
      left: -50%;
      z-index: -1;
  }
  .progressbar li:first-child:after {
      content: none;
  }
  .progressbar li.active {
      color: green;
  }
  .progressbar li.active:before {
      border-color: #55b776;
  }
  .progressbar li.active + li:after {
      background-color: #55b776;
  }
Comment

PREVIOUS NEXT
Code Example
Css :: CSS - The Descendant Selectors 
Css :: css how to transform and stay on top of page 
Css :: hover above image tip tool 
Css :: Table Print Cut off right side 
Css :: remove focous:visible 
Css :: var units = "years"; var davidAge = 65; var johnAge = 40; var ageDifference = davidAge - johnAge; alert("The age difference is " + ageDifference + " " + units); 
Css :: horizontal checkbox css 
Css :: css webkit propert dissapears on build sass 
Css :: The HSL color model css 
Css :: AITpro maintenance mode CSS 
Css :: remove a styles css class with javafx 
Css :: if else in golang 
Css :: font sizze xss 
Css :: time display in css 
Css :: how to use class form scss reactjs 
Css :: how long since 1993 
Css :: roam research 
Css :: sass-migrator division **/*.scss 
Css :: css design guideline 
Css :: css beautiful project colors 
Css :: scale css 
Css :: change size 
Css :: margin 0 auto in tailwind 
Css :: how to change line colors in css 
Css :: horizontal dotted progress library 
Typescript :: find total commits in git 
Typescript :: loop through form controls angular 
Typescript :: python program to print the contents of a directory using os module 
Typescript :: typescript sum all array values 
Typescript :: replaceall typescript 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =