Skip to content

Instantly share code, notes, and snippets.

@omniamike
Created March 24, 2017 17:04
Show Gist options
  • Save omniamike/e6da5121f2a46e1946e6b505cc6fbfbe to your computer and use it in GitHub Desktop.
Save omniamike/e6da5121f2a46e1946e6b505cc6fbfbe to your computer and use it in GitHub Desktop.
Styling for the Caldera Forms Breadcrumbs
/* Caldera Forms Breadcrumbs */
.caldera-grid .breadcrumb:before,
.caldera-grid .breadcrumb:after {
height: 0px;
content: "";
clear: both;
display: block;
}
.caldera-grid .breadcrumb {
width: auto;
margin: 0 0 40px !important;
padding: 0px;
list-style-type: none;
}
.caldera-grid .breadcrumb li {
background-color: #f9f9f9;
width: 25%;
padding: 20px 18px;
text-align: left;
float: left;
border-bottom: 3px solid #009AD8;
border-left: 2px solid #fff;
background-clip: padding-box;
}
.caldera-grid .breadcrumb li.active {
border-bottom: 3px solid #da1a32;
}
.caldera-grid .breadcrumb li a {
color: #333;
}
.caldera-grid .breadcrumb li a:hover {
color: #444 !important;
text-decoration: none;
}
@media (max-width: 999px){
.caldera-grid .breadcrumb li a{
font-size: 12px;
}
}
@media (max-width: 599px){
.caldera-grid .breadcrumb li {
float: none;
width: 100%;
text-align: center;
margin-bottom: 2px;
border-left: none;
}
.caldera-grid .breadcrumb li a {
font-size: 16px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment