summaryrefslogtreecommitdiffstats
path: root/site/assets/scss/_brand.scss
blob: 9637cfb18d9142bb24370d9a109535269c3ab703 (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
//
// Brand guidelines
//

// Logo series wrapper
.bd-brand-logos {
  color: $bd-violet;

  .inverse {
    color: $white;
    background-color: $bd-violet;
  }
}

// Individual items
.bd-brand-item {
  + .bd-brand-item {
    border-top: 1px solid $white;
  }

  @include media-breakpoint-up(md) {
    + .bd-brand-item {
      border-top: 0;
      border-left: 1px solid $white;
    }
  }
}


//
// Color swatches
//

.color-swatches {
  margin: 0 -5px;

  // Docs colors
  .bd-purple {
    background-color: $bd-purple;
  }
  .bd-purple-light {
    background-color: $bd-purple-light;
  }
  .bd-purple-lighter {
    background-color: #e5e1ea;
  }
  .bd-gray {
    background-color: #f9f9f9;
  }
}

.color-swatch {
  width: 4rem;
  height: 4rem;

  @include media-breakpoint-up(md) {
    width: 6rem;
    height: 6rem;
  }
}