Skip to content

Commit

Permalink
docs(BLE): HCI Docs Integrated (#813)
Browse files Browse the repository at this point in the history
Co-authored-by: Jake Carter <[email protected]>
  • Loading branch information
EricB-ADI and Jake-Carter authored Dec 8, 2023
1 parent 6035f1a commit c778ca3
Show file tree
Hide file tree
Showing 5 changed files with 2,228 additions and 1 deletion.
46 changes: 46 additions & 0 deletions Documentation/css/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,50 @@ img {
.rst-content pre code {
border-color: black;
border-radius: 8px;
}

.rst-content h1, .rst-content h2, .rst-content h3, .rst-content h4 {
margin-bottom:0px;
margin-top:0px;
}

h1::after {
display: inline-block;
content: "";
border-top: .2rem solid;
border-radius: 1rem;
flex-grow: 1; /* This property makes the pseudo-element take up the remaining space */
width: 100%; /* Set the width to 100% */
transform: translateY(-0.5rem);
}

h2::after {
display: inline-block;
content: "";
border-top: .1rem solid lightgray;
border-radius: 1rem;
flex-grow: 1; /* This property makes the pseudo-element take up the remaining space */
width: 100%; /* Set the width to 100% */
transform: translateY(-0.5rem);
}

h3::after
{
display: inline-block;
content: "";
border-top: .1rem solid lightgray; /* Change this line to adjust the style */
flex-grow: 1;
width: 100%;
transform: translateY(-0.5rem);
}

h4::after
{
font-style: italic;
display: inline-block;
content: "";
border-top: .1rem solid lightgray; /* Change this line to adjust the style */
flex-grow: 1;
width: 100%;
transform: translateY(-0.5rem);
}
Loading

0 comments on commit c778ca3

Please sign in to comment.