page-knowledge-base.scss 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. // ===============================================================================================
  2. // File Name: knowledge-base.scss
  3. // Description: Knowledge Base Page Content SCSS
  4. // ----------------------------------------------------------------------------------------------
  5. // Item Name: Vuexy - Vuejs, React, Angular, HTML & Laravel Admin Dashboard Template
  6. // Author: PIXINVENT
  7. // Author URL: http://www.themeforest.net/user/pixinvent
  8. // ================================================================================================
  9. @import '../bootstrap-extended/include'; // Bootstrap includes
  10. @import '../components/include'; // Components includes
  11. $svg-bg: #fcfcfc;
  12. // Knowledge-base jumbotron scss
  13. .knowledge-base-bg {
  14. background-size: cover;
  15. background-color: rgba($primary, 0.12) !important;
  16. // knowledge base search
  17. .kb-search-input {
  18. .input-group {
  19. // remove input group box shadow on inside focus
  20. &:focus-within {
  21. box-shadow: none;
  22. }
  23. }
  24. }
  25. }
  26. //
  27. .kb-search-content-info {
  28. .kb-search-content {
  29. .card-img-top {
  30. background-color: $svg-bg;
  31. }
  32. }
  33. .no-result {
  34. &.no-items {
  35. display: none;
  36. }
  37. }
  38. }
  39. // knowledge base title
  40. .kb-title {
  41. display: flex;
  42. align-items: center;
  43. }
  44. //search input width fixed for medium up screen
  45. @include media-breakpoint-up(md) {
  46. .knowledge-base-bg {
  47. .kb-search-input {
  48. .input-group {
  49. width: 576px;
  50. margin: 0 auto;
  51. }
  52. }
  53. }
  54. }
  55. // make jumbotron card body padding
  56. @include media-breakpoint-up(lg) {
  57. .knowledge-base-bg {
  58. .card-body {
  59. padding: 8rem;
  60. }
  61. }
  62. }
  63. // make jumbotron card body padding
  64. @include media-breakpoint-only(md) {
  65. .knowledge-base-bg {
  66. .card-body {
  67. padding: 6rem;
  68. }
  69. }
  70. }