Commit 22afec70 authored by Henk Verlinde's avatar Henk Verlinde
Browse files

feat: update bootstrap to 5.0.0-beta2

parent 6e5867db
Loading
Loading
Loading
Loading

assets/js/bootstrap.js

0 → 100644
+2 −0
Original line number Diff line number Diff line
import 'bootstrap/dist/js/bootstrap.bundle.min.js'
// import 'bootstrap/dist/js/bootstrap.min.js'
+15 −0
Original line number Diff line number Diff line
@@ -51,6 +51,16 @@ h6,
  font-size: calc(1.875rem + 1.5vw);
}

a:hover,
a:focus {
  text-decoration: underline;
}

a.btn:hover,
a.btn:focus {
  text-decoration: none;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
@@ -168,6 +178,11 @@ body {
  }
}

.navbar a:hover,
.navbar a:focus {
  text-decoration: none;
}

#TableOfContents ul {
  padding-left: 0;
  list-style: none;
+17 −9
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ $black: #000;
$yellow:   #ffe000;
$black:    #1d2d35;
$beige:    #fbf7f0;
$red:      #e55235;
// $red:      #e55235;
$purple:   #5d2f86;
$brown:    #aa9c84;

@@ -32,7 +32,7 @@ $navbar-light-toggler-icon-bg: none;
//
// Quickly modify global styling by enabling or disabling optional features.

$enable-responsive-font-sizes: true;
// $enable-responsive-font-sizes: true;

// Body
//
@@ -41,6 +41,13 @@ $enable-responsive-font-sizes: true;
$body-bg:                   $white;
$body-color:                $black;

// Links
//
// Style anchor elements.

$link-color:                              $primary;
$link-decoration:                         none;

// Grid containers
//
// Define the maximum width of `.container` for different screen sizes.
@@ -49,7 +56,8 @@ $container-max-widths: (
  sm: 540px,
  md: 720px,
  lg: 960px,
  xl: 1240px
  xl: 1240px,
  xxl: 1320px
);

@include _assert-ascending($container-max-widths, "$container-max-widths");
@@ -102,7 +110,7 @@ $spacer: 1rem;
// Navbar

$navbar-padding-y:                  $spacer / 2;
$navbar-padding-x:                  0;
$navbar-padding-x:                  null;

$navbar-nav-link-padding-x:         0.5rem;

@@ -118,13 +126,13 @@ $card-border-color: $gray-200;
//
// Define alert colors, border radius, and padding.

$alert-padding-y:                   1rem;
$alert-padding-x:                   1.5rem;
$alert-padding-y:                   $spacer;
$alert-padding-x:                   $spacer * 1.5;
$alert-margin-bottom:               0;
$alert-border-radius:               0;
$alert-link-font-weight:            $headings-font-weight;
$alert-border-width:                0;

$alert-bg-level:                    0;
$alert-border-level:                0;
$alert-color-level:                 0;
$alert-bg-scale:                    0;
$alert-border-scale:                0;
$alert-color-scale:                 0;
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ pre code {
  padding: 0;
}

@include media-breakpoint-down(xs) {
@include media-breakpoint-down(sm) {
  pre {
    margin: 2rem -1.5rem;
  }
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
}

.comment-form p {
  @extend .form-group;
  @extend .form-group !optional;
}

.comment-form input[type="text"],
Loading