aboutsummaryrefslogtreecommitdiff
path: root/docs/assets/scss/_ads.scss
blob: 86422b87a7e0848683cf61c50453f4cdc7db0b98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//
// Carbon ads
//

.carbonad {
  width: auto !important;
  height: auto !important;
  padding: 1.25rem !important;
  margin: 2rem ($grid-gutter-width * -1) -2rem !important;
  overflow: hidden; // clearfix
  font-size: .8rem !important;
  font-family: inherit !important;
  line-height: 1rem !important;
  color: $bd-purple-light !important;
  text-align: left;
  background: darken($bd-purple, 10%) !important;
  border: 0 !important;
}

.carbonad-img {
  margin: 0 !important;
}

.carbonad-text,
.carbonad-tag {
  display: block !important;
  float: none !important;
  width: auto !important;
  height: auto !important;
  margin-left: 145px !important;
  font-family: inherit !important;
}

.carbonad-text {
  padding-top: 0 !important;
}

.carbonad-tag {
  color: inherit !important;
  text-align: left !important;
}

.carbonad-text a,
.carbonad-tag a {
  color: $bd-purple-light !important;

  &:hover {
    color: #fff !important;
  }
}

.carbonad #azcarbon > img {
  display: none; // hide what I assume are tracking images
}

@include media-breakpoint-up(sm) {
  .carbonad {
    width: 330px !important;
    padding: 1rem !important;
    margin-right: auto !important;
    margin-left: auto !important;
    border-radius: .25rem;
  }
}

@include media-breakpoint-up(md) {

}