_faq.scss 827 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. // Styling for the faq section
  2. /*====================================================
  3. FAQ
  4. ======================================================*/
  5. .faq {
  6. .card {
  7. background: transparent;
  8. .card-header {
  9. background: $primary-col;
  10. h5 {
  11. button {
  12. color: $white;
  13. text-decoration: none;
  14. i.fa-btc {
  15. position: absolute;
  16. right:2px;
  17. font-size: 25px;
  18. padding:4px 20px;
  19. background: $white;
  20. line-height: 50px;
  21. top: 2px;
  22. color: $primary-col;
  23. }
  24. }
  25. }
  26. }
  27. .card-body {
  28. background: $gray-200;
  29. color:$gray-500;
  30. }
  31. }
  32. @media (min-width:767px) and (max-width:991px) {
  33. .container {
  34. .row {
  35. .col-md-6 {
  36. -ms-flex: 0 0 100%;
  37. flex: 0 0 100%;
  38. max-width: 100%!important;
  39. }
  40. }
  41. }
  42. }
  43. }