knowledge-base.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. // ===============================================================================================
  2. // File Name: knowledge-base.scss
  3. // Description: Knowledge Base Page Content SCSS
  4. // ----------------------------------------------------------------------------------------------
  5. // Item name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
  6. // Author: PIXINVENT
  7. // Author URL: http://www.themeforest.net/user/pixinvent
  8. // ================================================================================================
  9. @import "../bootstrap/functions";
  10. @import "../bootstrap/mixins";
  11. @import "../bootstrap-extended/mixins";
  12. // Core variables and mixins overrides
  13. @import "../core/variables/variables";
  14. @import "../bootstrap/variables";
  15. @import "../core/variables/components-variables";
  16. // Knowledge-base jumbotron scss
  17. .knowledge-base-bg{
  18. background: url(../../images/pages/knowledge-base-cover.jpg) no-repeat;
  19. background-size: cover;
  20. }
  21. // knowledge-base-category, knowledge-base-question - list-group-items
  22. .knowledge-base-category, .knowledge-base-question{
  23. .list-group-item{
  24. padding: 0.5rem 0;
  25. &:hover{
  26. background-color: transparent;
  27. }
  28. }
  29. }
  30. // Question Page - article question list
  31. .article-question{
  32. li{
  33. margin-bottom: 0.5rem;
  34. display: flex;
  35. }
  36. i{
  37. font-size: 1.2rem;
  38. top: 2px;
  39. position: relative;
  40. margin: 0 0.5rem;
  41. }
  42. }
  43. // make jumbotron card body padding
  44. @media only screen and (min-width: 992px){
  45. .knowledge-base-bg{
  46. .card-body{
  47. padding: 8rem !important;
  48. }
  49. }
  50. }
  51. // make jumbotron card body padding
  52. @media only screen and (min-width: 768px) and (max-width: 991px){
  53. .knowledge-base-bg{
  54. .card-body{
  55. padding: 6rem !important;
  56. }
  57. }
  58. }