Skip to content

Instantly share code, notes, and snippets.

@jhonoryza
Created August 31, 2021 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhonoryza/7f748e935df509462cf8d5f6cf40090a to your computer and use it in GitHub Desktop.
Save jhonoryza/7f748e935df509462cf8d5f6cf40090a to your computer and use it in GitHub Desktop.
simple-bootstrap.md

style.css

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

body{
    font-family: 'Quicksand', sans-serif;
}

.bg-dark{
    background: #7952b3!important;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: .5rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #7951b3;
    border-radius: 0px!important;
}

.breadcrumb a {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: white;
    content: "/";
}

.breadcrumb-item.active {
    color: white;
}
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fontawesome/css/all.min.css">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment