2014-01-03 13:32:13 -05:00
|
|
|
// Cerulean 2.3.1
|
|
|
|
// Bootswatch
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// TYPOGRAPHY
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
2016-01-26 19:28:29 -05:00
|
|
|
@import url(//fonts.googleapis.com/css?family=Arvo:400,700);
|
|
|
|
@import url(//fonts.googleapis.com/css?family=Open+Sans:400,300,700&subset=latin,latin-ext,cyrillic,vietnamese,cyrillic-ext,greek-ext,greek);
|
2014-03-30 20:24:07 -04:00
|
|
|
@import url(//fonts.googleapis.com/css?family=Open+Sans+Condensed:700&subset=latin,latin-ext,cyrillic-ext,greek-ext,greek,vietnamese,cyrillic);
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
// SCAFFOLDING
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
|
|
|
// NAVBAR
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
2014-01-23 21:49:29 -05:00
|
|
|
.navbar {
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
.brand {
|
|
|
|
padding: 14px 20px 16px;
|
2014-01-23 21:49:29 -05:00
|
|
|
font-family: $headings-font-family;
|
2014-01-03 13:32:13 -05:00
|
|
|
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
line-height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav > li > a {
|
|
|
|
padding: 16px 10px 14px;
|
2014-01-23 21:49:29 -05:00
|
|
|
font-family: $headings-font-family;
|
2014-01-03 13:32:13 -05:00
|
|
|
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-query {
|
2014-01-23 21:49:29 -05:00
|
|
|
border: 1px solid darken($link-color, 10%);
|
2014-01-03 13:32:13 -05:00
|
|
|
line-height: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-text {
|
|
|
|
padding: 19px 10px 18px;
|
|
|
|
line-height: 13px;
|
|
|
|
color: rgba(0, 0, 0, 0.5);
|
|
|
|
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-inverse {
|
|
|
|
|
|
|
|
.navbar-search .search-query {
|
2014-01-23 21:49:29 -05:00
|
|
|
color: $text-color;
|
2014-01-03 13:32:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-23 21:49:29 -05:00
|
|
|
@media (max-width: $grid-float-breakpoint) {
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
.navbar .nav-collapse {
|
|
|
|
|
2014-01-23 21:49:29 -05:00
|
|
|
.navbar-nav li > a {
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2014-01-23 21:49:29 -05:00
|
|
|
font-family: $headings-font-family;
|
2014-01-03 13:32:13 -05:00
|
|
|
font-weight: normal;
|
|
|
|
color: $white;
|
|
|
|
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav .active > a {
|
|
|
|
@include box-shadow(none);
|
|
|
|
background-color: #2B7CAC;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu li > a:hover,
|
|
|
|
.dropdown-menu li > a:focus,
|
|
|
|
.dropdown-submenu:hover > a {
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-form,
|
|
|
|
.navbar-search {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-header {
|
|
|
|
color: #2B7CAC;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-inverse .nav-collapse {
|
|
|
|
|
|
|
|
.nav li > a {
|
2014-01-23 21:49:29 -05:00
|
|
|
color: $navbar-inverse-color;
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav .active > a,
|
|
|
|
.nav > li > a:hover,
|
|
|
|
.dropdown-menu a:hover {
|
|
|
|
background-color: rgba(0, 0, 0, 0.1) !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
div.subnav {
|
|
|
|
|
2014-01-23 21:49:29 -05:00
|
|
|
font-family: $headings-font-family;
|
2014-01-03 13:32:13 -05:00
|
|
|
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.2);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
div.subnav-fixed {
|
2014-01-23 21:49:29 -05:00
|
|
|
top: $navbar-height + 1;
|
2014-01-03 13:32:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// NAV
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
|
|
|
// BUTTONS
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
@include gradient-vertical-three-colors($white, $white, 5%, darken($white, 0%));
|
|
|
|
$shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
|
|
|
|
@include box-shadow($shadow);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-position: 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-23 21:49:29 -05:00
|
|
|
//The following were oring buttonBackground
|
|
|
|
|
2014-01-03 13:32:13 -05:00
|
|
|
.btn-primary {
|
2014-01-23 21:49:29 -05:00
|
|
|
@include button-background(lighten($btn-primary-bg, 5%), $btn-primary-bg);
|
2014-01-03 13:32:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-info {
|
2014-01-23 21:49:29 -05:00
|
|
|
@include button-background(lighten($btn-info-bg, 5%), $btn-info-bg);
|
2014-01-03 13:32:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-success {
|
2014-01-23 21:49:29 -05:00
|
|
|
@include button-background(lighten($btn-success-bg, 5%), $btn-success-bg);
|
2014-01-03 13:32:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-warning {
|
2014-01-23 21:49:29 -05:00
|
|
|
@include button-background(lighten($btn-warning-bg, 5%), $btn-warning-bg);
|
2014-01-03 13:32:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-danger {
|
2014-01-23 21:49:29 -05:00
|
|
|
@include button-background(lighten($btn-danger-bg, 5%), $btn-danger-bg);
|
2014-01-03 13:32:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-inverse {
|
2014-01-23 21:49:29 -05:00
|
|
|
@include button-background(lighten($btn-default-color, 5%), $btn-default-color);//this should be btn-inverse but I can't find it at the moment
|
2014-01-03 13:32:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// TABLES
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
|
|
|
// FORMS
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
|
|
|
// DROPDOWNS
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
|
|
|
// ALERTS, LABELS, BADGES
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
|
|
|
// MISC
|
|
|
|
// -----------------------------------------------------
|
|
|
|
|
|
|
|
//i[class^="icon-"] {
|
|
|
|
// opacity: 0.8;
|
|
|
|
//}
|
|
|
|
|
|
|
|
// MEDIA QUERIES
|
|
|
|
// -----------------------------------------------------
|