faq.scss 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. // ===============================================================================================
  2. // File Name: faq.scss
  3. // Description: FAQ 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. // FAQ jumbotron scss
  17. .faq-bg{
  18. background: url(../../images/pages/faq.jpg) no-repeat;
  19. background-size: cover;
  20. .form-control{
  21. &:focus{
  22. // after focus search icon color
  23. ~.form-control-position{
  24. i{
  25. color: $primary;
  26. }
  27. }
  28. }
  29. }
  30. }
  31. .faq{
  32. //faq sidebar scss
  33. .faq-content{
  34. .faq-table-content{
  35. cursor: pointer;
  36. padding: 0.5rem;
  37. font-weight: $headings-font-weight;
  38. i{
  39. margin-right: 0.5rem;
  40. }
  41. }
  42. }
  43. //supporter details
  44. .supporter-details{
  45. .supporter-img{
  46. img{
  47. width: 35px;
  48. height: 35px;
  49. margin-right: 0.5rem;
  50. cursor: pointer;
  51. }
  52. }
  53. }
  54. //supporter info
  55. .supporter-info{
  56. vertical-align: middle;
  57. }
  58. // faq Accordion font-weight
  59. .accordion{
  60. .collapse-title{
  61. font-weight: $headings-font-weight;
  62. color: $headings-color;
  63. }
  64. .collapse-margin{
  65. background-color: $white;
  66. }
  67. }
  68. }
  69. // make jumbotron card body padding
  70. @media only screen and (min-width: 992px){
  71. .faq-bg{
  72. .card-body{
  73. padding: 8rem !important;
  74. }
  75. }
  76. }
  77. // make jumbotron card body padding
  78. @media only screen and (min-width: 768px) and (max-width: 991px){
  79. .faq-bg{
  80. .card-body{
  81. padding: 6rem !important;
  82. }
  83. }
  84. }