github.com/xhghs/rclone@v1.51.1-0.20200430155106-e186a28cced8/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  /* Preserve whitespace. Wrap text only at line breaks. */
    29  /* Avoids auto-wrapping the code lines. */
    30  pre code {
    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  h2, h3, h4, h5, h6 {
    49  	padding-top: 55px;
    50  	margin-top: -44px;
    51  }
    52  
    53  /* Fix spacing between menu items */
    54  .navbar-default .dropdown-menu>li>a {
    55  	padding-top: 6px;
    56  	padding-bottom: 6px;
    57  }
    58  
    59  /* custom logo in navbar */
    60  .rclone-logo {
    61  	height: 36px;
    62  }
    63  
    64  /* override padding so logo is centered */
    65  .navbar-brand {
    66  	padding: 4px 15px;
    67  }
    68  
    69  /* reduce h12345 sizes */
    70  h1 {
    71  	font-size: 25px;
    72  }
    73  h2 {
    74  	font-size: 22px;
    75  }
    76  h3 {
    77  	font-size: 20px;
    78  }
    79  h4 {
    80  	font-size: 18px;
    81  }
    82  h5 {
    83  	font-size: 16px;
    84  }