f804489e5c95e1ae5668f94fbd74b3a954fb5d65.svn-base 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //
  2. // Carbon ads
  3. //
  4. .carbonad {
  5. width: auto !important;
  6. height: auto !important;
  7. padding: 1.25rem !important;
  8. margin: 2rem ($grid-gutter-width * -1) -2rem !important;
  9. overflow: hidden; // clearfix
  10. font-size: .8rem !important;
  11. font-family: inherit !important;
  12. line-height: 1rem !important;
  13. color: $bd-purple-light !important;
  14. text-align: left;
  15. background: darken($bd-purple, 10%) !important;
  16. border: 0 !important;
  17. }
  18. .carbonad-img {
  19. margin: 0 !important;
  20. }
  21. .carbonad-text,
  22. .carbonad-tag {
  23. display: block !important;
  24. float: none !important;
  25. width: auto !important;
  26. height: auto !important;
  27. margin-left: 145px !important;
  28. font-family: inherit !important;
  29. }
  30. .carbonad-text {
  31. padding-top: 0 !important;
  32. }
  33. .carbonad-tag {
  34. color: inherit !important;
  35. text-align: left !important;
  36. }
  37. .carbonad-text a,
  38. .carbonad-tag a {
  39. color: $bd-purple-light !important;
  40. &:hover {
  41. color: #fff !important;
  42. }
  43. }
  44. .carbonad #azcarbon > img {
  45. display: none; // hide what I assume are tracking images
  46. }
  47. @include media-breakpoint-up(sm) {
  48. .carbonad {
  49. width: 330px !important;
  50. padding: 1rem !important;
  51. margin-right: auto !important;
  52. margin-left: auto !important;
  53. border-radius: .25rem;
  54. }
  55. }
  56. @include media-breakpoint-up(md) {
  57. }