doc-n-toc
Version:
Build a simple, slick, single page manual for your project with Markdown
137 lines (100 loc) • 1.99 kB
text/less
// Bootswatch
// -----------------------------------------------------
// Navbar =====================================================================
// Buttons ====================================================================
.btn {
border: none;
}
// Typography =================================================================
.text-primary {
color: @brand-primary;
}
.text-success {
color: @brand-success;
}
.text-danger {
color: @brand-danger;
}
.text-warning {
color: @brand-warning;
}
.text-info {
color: @brand-info;
}
// Tables =====================================================================
.table {
tr.success,
tr.warning,
tr.danger {
color: #fff;
}
}
// Forms ======================================================================
.has-warning {
.help-block,
.control-label {
color: @brand-warning;
}
.form-control,
.form-control:focus {
border: 1px solid @brand-warning;
}
}
.has-error {
.help-block,
.control-label {
color: @brand-danger;
}
.form-control,
.form-control:focus {
border: 1px solid @brand-danger;
}
}
.has-success {
.help-block,
.control-label {
color: @brand-success;
}
.form-control,
.form-control:focus {
border: 1px solid @brand-success;
}
}
// Navs =======================================================================
.nav-pills {
& > li > a {
border-radius: 0;
}
}
.dropdown-menu {
& > li > a:hover,
& > li > a:focus {
background-image: none;
}
}
.pagination {
.active > a,
.active > a:hover {
border-color: #ddd;
}
}
// Indicators =================================================================
.alert {
border: none;
.alert-link {
text-decoration: underline;
color: #fff;
}
}
.label {
border-radius: 0;
}
.close {
opacity: 1;
}
// Progress bars ==============================================================
.progress {
height: 8px;
.box-shadow(none);
}
// Containers =================================================================