_program-list.scss 1.03 KB
Newer Older
1
.program-list-wrapper {
Harry Rein committed
2 3 4 5

  @include media-breakpoint-up(sm) {
    padding: $baseline;
  }
6 7
}

8
.program-cards-container {
9
  @include grid-container();
10 11
  @include span(12);

Harry Rein committed
12
  @include media-breakpoint-up(sm) {
13 14
    @include span(9);
  }
15
}
16 17 18

.sidebar {
  @include span(12);
19
  @include float(right);
20

21
  margin-bottom: $baseline;
22

Harry Rein committed
23
  @include media-breakpoint-up(sm) {
24
    @include span(3);
25
  }
26 27

  .aside {
28 29
    padding: $baseline;
    margin-bottom: $baseline;
30 31
    box-sizing: border-box;
    border: 1px solid $border-color-l3;
32 33 34
  }

  .program-advertise {
35
    clear: both;
36

37
    .new-programs-btn {
38 39 40 41
      width: 100%;
      text-align: center;
      padding: 10px;

42
    }
43 44 45 46

    .advertise-message {
      font-size: font-size(x-small);
      color: palette(grayscale, black);
47
      margin-bottom: $baseline;
48 49 50 51
    }
  }
}

52
.empty-programs-message {
53
  @include span(12);
54

55 56
  border: 3px solid $gray-l4;
  background: $gray-l6;
57
  padding: ($baseline*2) 0;
58 59
  text-align: center;
  margin-bottom: 20px;
60

61 62
  .hd-3 {
    color: $black;
63
    margin-bottom: $baseline;
64
  }
65
}