// ===============================================================================================
// File Name: knowledge-base.scss
// Description: Knowledge Base Page Content SCSS
// ================================================================================================
@import '../bootstrap-extended/include'; // Bootstrap includes
@import '../components/include'; // Components includes
$svg-bg: #fcfcfc;
// Knowledge-base jumbotron scss
.knowledge-base-bg {
background-size: cover;
background-color: rgba($primary, 0.12) !important;
// knowledge base search
.kb-search-input {
.input-group {
// remove input group box shadow on inside focus
&:focus-within {
box-shadow: none;
}
}
}
}
//
.kb-search-content-info {
.kb-search-content {
.card-img-top {
background-color: $svg-bg;
}
}
.no-result {
&.no-items {
display: none;
}
}
}
// knowledge base title
.kb-title {
display: flex;
align-items: center;
}
//search input width fixed for medium up screen
@include media-breakpoint-up(md) {
.knowledge-base-bg {
.kb-search-input {
.input-group {
width: 576px;
margin: 0 auto;
}
}
}
}
// make jumbotron card body padding
@include media-breakpoint-up(lg) {
.knowledge-base-bg {
.card-body {
padding: 8rem;
}
}
}
// make jumbotron card body padding
@include media-breakpoint-only(md) {
.knowledge-base-bg {
.card-body {
padding: 6rem;
}
}
}
.welcome-messages {
font-size: 40px;
line-height: 48px;
letter-spacing: 0;
}
.welcome-description {
font-size: 20px;
line-height: 32px;
color: #687879;
font-weight: normal;
}