// -------------------------------------------------------------------------------- // Adjustments // -------------------------------------------------------------------------------- main { // -------------------------------------------------------------------------------- // Navbar and linked headings' correction. // // By default, when you access page headings from the page table of content // (toc) links, the heading is hidden behind the navbar. This workaround // fixes the linked headings visibility issue in the page. // -------------------------------------------------------------------------------- h1, h2, h3, h4, h5, h6 { &::before { display: block; height: 6rem; margin-top: -6rem; visibility: hidden; content: ""; } margin-top: 3rem; } // -------------------------------------------------------------------------------- // Backgrounds // -------------------------------------------------------------------------------- .bg-image { background: url(../img/centos-motif.png) right center / cover; } .bg-light-radial-gradient { background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0) 100%); } // -------------------------------------------------------------------------------- // DataTable // -------------------------------------------------------------------------------- .dataTables_wrapper { .dataTables_filter { text-align: end; } .dataTables_length, .dataTables_filter { @extend .my-3; } .form-select, .form-control { width: auto; display: inline-block; } } }