1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
body {
font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
}
btn-group.a {
color: #000000;
}
a {
color: #3f79ad;
text-decoration: none;
}
a:hover {
color: #70caf2;
}
table {
background-color:#f0f0f0;
}
tbody td, th {
border: 1px solid #c0c0c0;
padding: 3px 7px 2px 7px;
}
thead td, th {
padding: 3px 7px 2px 7px;
font-weight: bold;
background-color:#e0e0e0;
}
tbody tr:nth-child(even) {
background-color:#e8e8e8;
}
/* Preserve whitespace. Wrap text only at line breaks. */
/* Avoids auto-wrapping the code lines. */
pre code {
white-space: pre
}
/* Hover over links on headers */
.header-link {
position: absolute;
left: -0.5em;
opacity: 0;
transition: opacity 0.2s ease-in-out 0.1s;
}
h2:hover .header-link,
h3:hover .header-link,
h4:hover .header-link,
h5:hover .header-link,
h6:hover .header-link {
opacity: 1;
}
/* more space before headings */
h1, h2, h3, h4, h5, h6 {
margin-top: 12px;
padding: 15px 0px;
}
/* Fix spacing of info boxes */
.card {
margin-top: 0.75rem;
}
/* less padding around info box items */
.card-body {
padding: 0.5rem;
}
/* make menus longer */
.pre-scrollable {
max-height: 30rem;
}
/* Fix spacing between menu items */
/* .navbar-default .dropdown-menu>li>a { */
/* padding-top: 6px; */
/* padding-bottom: 6px; */
/* } */
/* custom logo in navbar */
.rclone-logo {
height: 36px;
margin-top: -10px;
margin-bottom: -10px;
}
.heart {
color: #e31b23;
}
blockquote {
display: block;
background-color: #EEE;
padding: 0.25rem;
border: 1px solid black;
}
pre {
padding: 10px;
margin: 0 0 10.5px;
font-size: 14px;
line-height: 1.42857143;
word-break: break-all;
word-wrap: break-word;
color: #333333;
background-color: #f5f5f5;
border: 1px solid #cccccc;
border-radius: 0.25rem;
}
code {
font-size: 87.5%;
color: #e83e8c;
word-wrap: break-word;
}
/* reduce h12345 sizes */
h1 {
font-size: 160%;
}
h2 {
font-size: 130%;
}
h3 {
font-size: 110%;
font-weight: bold;
}
h4 {
font-size: 100%;
font-weight: bold;
}
h5 {
font-size: 90%;
font-weight: bold;
}
.menu {
font-size: 95%;
}
/* Make primary buttons rclone colours. Should learn sass and do this the proper way! */
.btn-primary {
background-color: #3f79ad;
border-color: #3f79ad;
}
.btn-primary:hover {
background-color: #70caf2;
border-color: #70caf2;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
background-color: #70caf2;
border-color: #70caf2;
}
.btn-primary.focus, .btn-primary:focus {
background-color: #3f79ad;
border-color: #3f79ad;
box-shadow: 0 0 0 0.2rem rgba(63,121,173,.5);
}
.badge-primary {
background-color: #3f79ad;
border-color: #3f79ad;
}
a.badge-primary:focus, a.badge-primary:hover {
background-color: #70caf2;
}
a.badge-primary.focus, a.badge-primary:focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(112,202,242,.5);
}
nav#TableOfContents ul {
list-style-type: none;
padding: 0.0rem;
margin: 0rem 0.5rem 0rem 0.5rem;
font-size: 90%;
white-space: nowrap;
overflow: hidden;
}
nav#TableOfContents ul:hover {
overflow: visible;
}
|