Skip to content

Instantly share code, notes, and snippets.

@nodesocket
Last active April 1, 2021 23:37
Show Gist options
  • Save nodesocket/5843712 to your computer and use it in GitHub Desktop.
Save nodesocket/5843712 to your computer and use it in GitHub Desktop.
Below are simple styles to "flatten" bootstrap. I didn't go through every control and widget that bootstrap offers, only what was required for https://commando.io, so your milage may vary.
/* Flatten das boostrap */
.well, .navbar-inner, .popover, .btn, .tooltip, input, select, textarea, pre, .progress, .modal, .add-on, .alert, .table-bordered, .nav>.active>a, .dropdown-menu, .tooltip-inner, .badge, .label, .img-polaroid {
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
-webkit-border-radius: 0px !important;
-moz-border-radius: 0px !important;
border-radius: 0px !important;
border-collapse: collapse !important;
background-image: none !important;
}
@marawan-nwh
Copy link

@paultopia
Copy link

I wonder if it would break anything serious to just go all the way and slap that sucker on the body tag...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment