b62d4f6dca
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
174 lines
3.2 KiB
SCSS
174 lines
3.2 KiB
SCSS
// Core variables and mixins
|
|
@import "bootstrap/variables";
|
|
@import "bootstrap/mixins";
|
|
|
|
// Reset
|
|
@import "bootstrap/normalize";
|
|
@import "bootstrap/print";
|
|
|
|
// Core CSS
|
|
@import "bootstrap/scaffolding";
|
|
@import "bootstrap/type";
|
|
@import "bootstrap/code";
|
|
@import "bootstrap/grid";
|
|
@import "bootstrap/tables";
|
|
@import "bootstrap/forms";
|
|
|
|
// Components
|
|
@import "bootstrap/component-animations";
|
|
@import "bootstrap/dropdowns";
|
|
@import "bootstrap/button-groups";
|
|
@import "bootstrap/input-groups";
|
|
@import "bootstrap/navs";
|
|
@import "bootstrap/navbar";
|
|
@import "bootstrap/breadcrumbs";
|
|
@import "bootstrap/pagination";
|
|
@import "bootstrap/pager";
|
|
@import "bootstrap/labels";
|
|
@import "bootstrap/badges";
|
|
@import "bootstrap/jumbotron";
|
|
@import "bootstrap/thumbnails";
|
|
@import "bootstrap/alerts";
|
|
@import "bootstrap/progress-bars";
|
|
@import "bootstrap/list-group";
|
|
@import "bootstrap/wells";
|
|
@import "bootstrap/close";
|
|
|
|
// Components w/ JavaScript
|
|
@import "bootstrap/modals";
|
|
@import "bootstrap/tooltip";
|
|
@import "bootstrap/popovers";
|
|
@import "bootstrap/carousel";
|
|
|
|
// Utility classes
|
|
.clearfix {
|
|
@include clearfix();
|
|
}
|
|
.center-block {
|
|
@include center-block();
|
|
}
|
|
.pull-right {
|
|
float: right !important;
|
|
}
|
|
.pull-left {
|
|
float: left !important;
|
|
}
|
|
.hide {
|
|
display: none;
|
|
}
|
|
.show {
|
|
display: block !important;
|
|
}
|
|
.invisible {
|
|
visibility: hidden;
|
|
}
|
|
.text-hide {
|
|
@include text-hide();
|
|
}
|
|
.hidden {
|
|
display: none !important;
|
|
visibility: hidden !important;
|
|
}
|
|
.affix {
|
|
position: fixed;
|
|
}
|
|
|
|
@import "bootstrap/responsive-utilities";
|
|
|
|
// Labels
|
|
.label {
|
|
padding: 2px 4px;
|
|
font-size: 12px;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
display: inline-block;
|
|
|
|
&.label-gray {
|
|
background-color: #eee;
|
|
color: #999;
|
|
text-shadow: none;
|
|
}
|
|
|
|
&.label-inverse {
|
|
background-color: #333333;
|
|
}
|
|
}
|
|
|
|
// Nav tabs
|
|
.nav.nav-tabs {
|
|
li {
|
|
> a {
|
|
padding: 8px 20px;
|
|
margin-right: 7px;
|
|
line-height: 20px;
|
|
border-color: #EEE;
|
|
color: #888;
|
|
border-bottom: 1px solid #ddd;
|
|
.badge {
|
|
background-color: #eee;
|
|
color: #888;
|
|
text-shadow: 0 1px 1px #fff;
|
|
}
|
|
i[class^="icon-"] {
|
|
line-height: 14px;
|
|
}
|
|
}
|
|
&.active {
|
|
> a {
|
|
border-color: #CCC;
|
|
border-bottom: 1px solid #fff;
|
|
color: #333;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.nav-small-tabs > li > a {
|
|
padding: 6px 9px;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Callouts from Bootstrap3 docs
|
|
*
|
|
* Not quite alerts, but custom and helpful notes for folks reading the docs.
|
|
* Requires a base and modifier class.
|
|
*/
|
|
|
|
/* Common styles for all types */
|
|
.bs-callout {
|
|
margin: 20px 0;
|
|
padding: 20px;
|
|
border-left: 3px solid #eee;
|
|
color: #666;
|
|
background: #f9f9f9;
|
|
}
|
|
.bs-callout h4 {
|
|
margin-top: 0;
|
|
margin-bottom: 5px;
|
|
}
|
|
.bs-callout p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* Variations */
|
|
.bs-callout-danger {
|
|
background-color: #fdf7f7;
|
|
border-color: #eed3d7;
|
|
color: #b94a48;
|
|
}
|
|
.bs-callout-warning {
|
|
background-color: #faf8f0;
|
|
border-color: #faebcc;
|
|
color: #8a6d3b;
|
|
}
|
|
.bs-callout-info {
|
|
background-color: #f4f8fa;
|
|
border-color: #bce8f1;
|
|
color: #34789a;
|
|
}
|
|
.bs-callout-success {
|
|
background-color: #dff0d8;
|
|
border-color: #5cA64d;
|
|
color: #3c763d;
|
|
}
|