github.com/ncw/rclone@v1.48.1-0.20190724201158-a35aa1360e3e/docs/static/css/custom.css (about)

     1  body {
     2      margin-top: 75px; /* 100px is double the height of the navbar - I made it a big larger for some more space - keep it at 50px at least if you want to use the fixed top nav */
     3  }
     4  
     5  footer {
     6      margin: 50px 0;
     7  }
     8  
     9  table {
    10     background-color:#e0e0ff
    11  }
    12  
    13  tbody td, th {
    14      border: 1px solid black;
    15      padding: 3px 7px 2px 7px;
    16  }
    17  
    18  thead td, th {
    19      border: 1px solid black;
    20      padding: 3px 7px 2px 7px;
    21      font-weight: bold;
    22  }
    23  
    24  tbody tr:nth-child(odd) {
    25     background-color:#d0d0ff
    26  }
    27  
    28  pre code {
    29    /* Preserve whitespace. Wrap text only at line breaks. */
    30    /* Avoids auto-wrapping the code lines. */
    31    white-space: pre
    32  }
    33  
    34  /* Hover over links on headers */
    35  .header-link {
    36    position: absolute;
    37    left: -0.5em;
    38    opacity: 0;
    39    transition: opacity 0.2s ease-in-out 0.1s;
    40  }
    41  h2:hover .header-link,
    42  h3:hover .header-link,
    43  h4:hover .header-link,
    44  h5:hover .header-link,
    45  h6:hover .header-link {
    46    opacity: 1;
    47  }
    48  
    49  /* Fix spacing between menu items */
    50  .navbar-default .dropdown-menu>li>a {
    51    padding-top: 6px;
    52    padding-bottom: 6px;
    53  }