Commit 4b78b2c9 authored by Henk Verlinde's avatar Henk Verlinde
Browse files

Merge branch 'master' of github.com:h-enk/doks

parents f3d2fc31 2adb83a0
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'
+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@
@import "components/forms";
@import "components/images";
@import "components/search";
@import "components/tables";
@import "layouts/footer";
@import "layouts/header";
@import "layouts/pages";
+4 −0
Original line number Diff line number Diff line
@@ -291,3 +291,7 @@ body.dark .alert-primary {
body.dark .figure-caption {
  color: $body-color-dark;
}

body.dark table {
  @extend .table-dark;
}
+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;
+36 −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;

@@ -24,6 +24,25 @@ $pink-500: #d32e9d;

$primary: $purple;

// Options
//
// Quickly modify global styling by enabling or disabling optional features.

$enable-caret:                true;
$enable-rounded:              true;
$enable-shadows:              false;
$enable-gradients:            false;
$enable-transitions:          true;
$enable-reduced-motion:       true;
$enable-smooth-scroll:        true;
$enable-grid-classes:         true;
$enable-button-pointers:      true;
$enable-rfs:                  true;
$enable-validation-icons:     true;
$enable-negative-margins:     true;
$enable-deprecation-messages: true;
$enable-important-utilities:  true;

/** Bootstrap navbar fix (https://git.io/fADqW) */
$navbar-dark-toggler-icon-bg: none;
$navbar-light-toggler-icon-bg: none;
@@ -32,7 +51,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 +60,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 +75,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 +129,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 +145,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;
Loading