CliveNi
2024-04-07 3d812b10e9332b7d0d4619a87c8d8ac5afb878c8
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// stylelint-disable no-duplicate-selectors, selector-max-combinators, selector-max-compound-selectors, selector-max-type, selector-no-qualifying-type
 
//
// Automatically style Markdown-based tables like a Bootstrap `.table`.
//
 
.bd-content {
    order: 1;
  
    // Hack the sticky header
    > h2[id],
    > h3[id],
    > h4[id] {
      pointer-events: none;
  
      > div,
      > a {
        pointer-events: auto;
      }
  
      &::before {
        display: block;
        height: 6rem;
        margin-top: -6rem;
        visibility: hidden;
        content: "";
      }
    }
  
    > table {
      width: 100%;
      max-width: 100%;
      margin-bottom: 1rem;
  
      @include media-breakpoint-down(md) {
        display: block;
        overflow-x: auto;
        -ms-overflow-style: -ms-autohiding-scrollbar; // See https://github.com/twbs/bootstrap/pull/10057
  
        &.table-bordered {
          border: 0;
        }
      }
  
      // Cells
      > thead,
      > tbody,
      > tfoot {
        > tr {
          > th,
          > td {
            padding: $table-cell-padding;
            vertical-align: top;
            border: 1px solid $table-border-color;
  
            > p:last-child {
              margin-bottom: 0;
            }
          }
        }
      }
  
      // Prevent breaking of code (e.g., Grunt tasks list)
      td:first-child > code {
        white-space: nowrap;
      }
    }
  }
  
  //
  // Docs sections
  //
  
  .bd-content {
    > h2:not(:first-child) {
      margin-top: 3rem;
    }
  
    > h3 {
      margin-top: 1.5rem;
    }
  
    > ul li,
    > ol li {
      margin-bottom: .25rem;
    }
  
    @include media-breakpoint-up(lg) {
      > ul,
      > ol,
      > p {
        max-width: 80%;
      }
    }
  }
  
  .bd-title {
    margin-top: 1rem;
    margin-bottom: .5rem;
    font-weight: 300;
  
    @include media-breakpoint-up(sm) {
      font-size: 3rem;
    }
  }
  
  .bd-lead {
    font-size: 1.125rem;
    font-weight: 300;
  
    @include media-breakpoint-up(sm) {
      max-width: 80%;
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }
  }
  
  .bd-text-purple { color: $bd-purple; }
  .bd-text-purple-bright { color: $bd-purple-bright; }