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 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
/* main document page: ensures pages fit to the available width and height */
.wy-nav-content {
min-width: 100%;
min-height: 100vh;
}
/* Accessibility: Artifex color for main document links */
.wy-nav-content a {
color: #007aff;
}
/* Artifex blue color for background elements */
.wy-side-nav-search, .wy-nav-top {
background-color: #007aff;
}
/* Accessibility: ensures that the version number is readable against the background color */
.wy-side-nav-search>div.version {
color:hsla(0,0%,100%,1);
}
.htmltag {
padding: 2px 5px;
background-color: #fbff68;
border-radius: 4px;
border: 1px solid #222;
color:#000;
}
.discordLink {
display:flex;
justify-content:flex-end;
margin:0;
padding:0;
font-size: 13px;
}
.discordLink img {
width: 30px;
height: 30px;
margin-left: 8px;
}
.feedbackLink {
display:flex;
justify-content:flex-end;
margin:0 0 10px;
padding:0;
font-size: 13px;
}
.intro-title {
font-size: 22px;
margin: 0 0 20px 0;
}
h1 {
padding: 10px !important;
background-color: #007aff !important;
color: #fff !important;
border-radius: 5px !important;
margin-top: 20px !important;
margin-left: -10px !important;
}
cite {
font-weight: bold;
font-style: normal;
}
.red-color {
color: #cc0000;
}
.orange-color {
color: #ff6600;
}
.green-color {
color: #00cc00;
}
button.cta {
-webkit-appearance: none;
-moz-appearance: none;
border:0;
text-transform:uppercase;
border-radius:5px;
font-size:16px;
font-weight:500;
min-height:40px;
line-height:40px;
padding: 0 15px;
color:#fff;
cursor:pointer;
}
button.cta.orange {
width:auto;
background-image: linear-gradient(to right, #ea5842, #ec6343, #ed6d45, #ef7747, #f0804a) !important;
}
button.cta.orange:hover {
background:#ea5842 !important;
}
button.cta a {
color:#fff !important;
}
.footer-version {
font-weight: bold;
font-size: 12px;
color: #999;
}
/*** Furo theme overrides ***/
/* This is to do with hiding the Furo link text and the "Made with" text */
.bottom-of-page .left-details {
font-size:0;
}
.bottom-of-page .left-details a {
display:none;
}
/* Now ensure that the other copyright text is visible here */
.bottom-of-page .left-details > * {
font-size:12px;
}
.sidebar-brand-text {
font-size: 13px;
padding: 0;
margin: 0;
}
.sidebar-logo {
width: 60px;
height: 60px;
}
.sidebar-container {
margin: 0;
padding: 0;
}
.sidebar-container .sidebar-search-container {
display: none;
}
.sidebar-search-container.top {
/*position:sticky;
top:10px;*/
border-radius: 20px;
border: solid #333 1px;
background-color: #fff;
}
.sidebar-search-container.top .sidebar-search {
border-top: 0 !important;
border-bottom: 0 !important;
}
/* really important ! */
.sidebar-search {
color: #000 !important;
}
.toc-drawer .toc-title {
font-weight: bold;
text-decoration: underline;
}
:target>h1:first-of-type, span:target~h1:first-of-type {
background-color: #007aff !important;
color: #fff !important;
padding-top: 40px; /* accomodates header search blocking target */
margin-top: -40px;
}
:target>h2:first-of-type, :target>h3:first-of-type,
:target>h4:first-of-type, :target>h5:first-of-type, :target>h6:first-of-type,
span:target~h2:first-of-type, span:target~h3:first-of-type,
span:target~h4:first-of-type, span:target~h5:first-of-type, span:target~h6:first-of-type {
background-color: transparent !important;
padding-top: 40px; /* accomodates header search blocking target */
margin-top: -40px;
text-decoration: underline;
}
/* Dark mode colors */
@media (prefers-color-scheme: dark) {
}
/* small screens */
@media all and (max-width : 550px) {
.discordLink img {
display: none;
}
}
|