github.com/wawandco/ox@v0.13.6-0.20230809142027-913b3d837f2a/docs/web/src/css/custom.css (about)

     1  /**
     2   * Any CSS included here will be global. The classic template
     3   * bundles Infima by default. Infima is a CSS framework designed to
     4   * work well for content-centric websites.
     5   */
     6  
     7  /* You can override the default Infima variables here. */
     8  :root {
     9      --ifm-color-primary: #25c2a0;
    10      --ifm-color-primary-dark: rgb(33, 175, 144);
    11      --ifm-color-primary-darker: rgb(31, 165, 136);
    12      --ifm-color-primary-darkest: rgb(26, 136, 112);
    13      --ifm-color-primary-light: rgb(70, 203, 174);
    14      --ifm-color-primary-lighter: rgb(102, 212, 189);
    15      --ifm-color-primary-lightest: rgb(146, 224, 208);
    16      --ifm-code-font-size: 95%;
    17  }
    18  
    19  .docusaurus-highlight-code-line {
    20      background-color: rgba(0, 0, 0, 0.1);
    21      display: block;
    22      margin: 0 calc(-1 * var(--ifm-pre-padding));
    23      padding: 0 var(--ifm-pre-padding);
    24  }
    25  
    26  html[data-theme='dark'] .docusaurus-highlight-code-line {
    27      background-color: rgba(0, 0, 0, 0.3);
    28  }
    29  
    30  .hidden {
    31      display: none;
    32  }
    33  
    34  html[data-theme='dark'] .dark-theme-logo {
    35      display: inline-block;
    36  }
    37  
    38  html[data-theme='light'] .light-theme-logo {
    39      display: inline-block;
    40  }
    41  
    42  body{
    43    display: flex;
    44    flex-direction: column;
    45  }
    46  
    47  main{
    48    flex: 1 0 auto;
    49    height: 100%;
    50    padding-bottom: 90px;
    51  }
    52  
    53  .hero__subtitle {
    54      max-width: 50rem !important;
    55      margin-right: auto;
    56      margin-left: auto;
    57  }
    58  
    59  .main-wrapper {
    60      display: flex;
    61      flex-direction: column;
    62  }
    63  
    64  .main-wrapper main {
    65      flex-grow: 1;
    66  }