/*
.markdown-section iframe[src*="buttons.github.io"] {
    margin: 0;
}

figure.thumbnails img {
    margin: 0.75em 0;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.15);
}

@media (min-width: 30em) {
    figure.thumbnails:after {
        content: "";
        display: table;
        clear: both;
    }

    figure.thumbnails img {
        float: left;
        width: calc(50% - 0.75em);
    }

    figure.thumbnails img:nth-child(even) {
        margin-left: 1.5em;
    }

    @supports (display: flex) {
        figure.thumbnails {
            display: flex;
            align-items: center;
        }

        figure.thumbnails img {
            flex-grow: 1;
            width: 0;
        }

        figure.thumbnails img + img {
            margin: 0 0 0 1.5em;
        }
    }
}*/

/*
 * REF: https://jhildenbiddle.github.io/docsify-themeable/#/customization 
 */
:root {
  /* Base */
  --base-background-color: var(--docsify_themeable_base_background_color, #000000);

  /* App */
  /*--theme-color : hsl(var(--theme-hue), var(--theme-saturation), var(--theme-lightness)); */
  --theme-hue       : var(--docsify_themeable_theme_hue,        204);
  --theme-saturation: var(--docsify_themeable_theme_saturation, 90%);
  --theme-lightness : var(--docsify_themeable_theme_lightness,  45%);

  /* Cover */
  --cover-button-primary-background: ;
  --cover-button-primary-border    : var(--cover-button-border);
  --cover-button-primary-color     : var(--cover-button-color);

  /* Sidebar */
  --sidebar-background   : var(--docsify_themeable_sidebar_background,   #000000);
  --sidebar-border-color : var(--docsify_themeable_sidebar_border_color, #1a1a1a);
  --sidebar-name-color   : var(--docsify_themeable_sidebar_name_color,   #ffffff);
  --sidebar-name-font-weight : medium;
  --sidebar-nav-link-color--hover           : var(--sidebar-nav-link-color--active);
  --sidebar-nav-link-border-color--active   : var(--sidebar-nav-link-color--active);
  --sidebar-nav-link-text-decoration--hover : ;

  /* Navigation Bar */
  --navbar-menu-background         : var(--sidebar-background);
  --navbar-menu-link-color--active : var(--theme-color);
  --navbar-menu-link-color--hover  : var(--theme-color);

  /* Plugin: Search */
  --search-background: var(--docsify_themeable_search_background, #f0f0f0);
  --search-input-background-color : var(--base-background-color);
  --search-input-border-color     : var(--sidebar-border-color);

  /* Plugin: Pagination */
  --pagination-border-top : 1px solid var(--sidebar-border-color);
}
