Skip to content

Instantly share code, notes, and snippets.

@gmmedia
Last active February 20, 2023 03:51
Show Gist options
  • Save gmmedia/52eeecc104bc0485653fbf852b9796a0 to your computer and use it in GitHub Desktop.
Save gmmedia/52eeecc104bc0485653fbf852b9796a0 to your computer and use it in GitHub Desktop.
Kadence Timeline Block
/*
* Create Timeline Block with the Kadence Icon List Block
* See: https://bloggerpilot.com/timeline-css/
*/
.timeline li {
list-style: none;
padding-bottom: 1.8rem !important;
border-left: 1px dotted #897B76;
position: relative;
padding-left: 20px !important;
margin-left: -10px !important;
margin-bottom: 0px !important;
}
.timeline li:last-child {
border: 0px;
padding-bottom: 0;
margin-bottom: 0px !important;
}
.timeline li:before {
content: '';
width: 15px;
height: 15px;
background: #E25013;
box-shadow: 4px 4px 2px #ddd;
border-radius: 50%;
position: absolute;
left: -8px;
top: 0px;
}
.timeline li span {
margin-top: -6px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment