|
10 | 10 | */ |
11 | 11 | :root { |
12 | 12 | /* body, block and code fonts */ |
13 | | - --body-font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; |
14 | | - --block-font-family: 'DejaVu Serif', Georgia, "Times New Roman", Times, serif; |
| 13 | + --body-font-family: Verdana, Geneva, sans-serif; |
| 14 | + --block-font-family: Verdana, Geneva, serif; |
15 | 15 | --code-font-family: 'DejaVu Sans Mono', monospace; |
16 | 16 | /* Base font sizes for body and code elements */ |
17 | 17 | --body-font-size: 14px; |
18 | 18 | --code-font-size: 14px; |
19 | 19 | /* Text colors for body and block elements */ |
20 | | - --body-text-color: #353833; |
21 | | - --block-text-color: #474747; |
| 20 | + --body-text-color: #000000; |
| 21 | + --block-text-color: #000000; |
22 | 22 | /* Background colors for various structural elements */ |
23 | | - --body-background-color: #ffffff; |
24 | | - --section-background-color: #f8f8f8; |
25 | | - --detail-background-color: #ffffff; |
| 23 | + --body-background-color: #edd9a6; |
| 24 | + --section-background-color: #e9d195; |
| 25 | + --detail-background-color: #edd9a6; |
26 | 26 | /* Colors for navigation bar and table captions */ |
27 | | - --navbar-background-color: #4D7A97; |
28 | | - --navbar-text-color: #ffffff; |
| 27 | + --navbar-background-color: #232323; |
| 28 | + --navbar-text-color: #edd9a6; |
29 | 29 | /* Background color for subnavigation and various headers */ |
30 | | - --subnav-background-color: #dee3e9; |
| 30 | + --subnav-background-color: #e5c880; |
31 | 31 | /* Background and text colors for selected tabs and navigation items */ |
32 | | - --selected-background-color: #f8981d; |
33 | | - --selected-text-color: #253441; |
34 | | - --selected-link-color: #1f389c; |
| 32 | + --selected-background-color: #e5c880; |
| 33 | + --selected-text-color: #000000; |
| 34 | + --selected-link-color: #861203; |
35 | 35 | /* Background colors for generated tables */ |
36 | | - --even-row-color: #ffffff; |
37 | | - --odd-row-color: #eeeeef; |
| 36 | + --even-row-color: #edd9a6; |
| 37 | + --odd-row-color: #e7ce8e; |
38 | 38 | /* Text color for page title */ |
39 | | - --title-color: #2c4557; |
| 39 | + --title-color: #000000; |
40 | 40 | /* Text colors for links */ |
41 | | - --link-color: #4A6782; |
42 | | - --link-color-active: #bb7a2a; |
| 41 | + --link-color: #861203; |
| 42 | + --link-color-active: #641003; |
43 | 43 | /* Snippet colors */ |
44 | 44 | --snippet-background-color: #ebecee; |
45 | 45 | --snippet-text-color: var(--block-text-color); |
46 | 46 | --snippet-highlight-color: #f7c590; |
47 | 47 | /* Border colors for structural elements and user defined tables */ |
48 | | - --border-color: #ededed; |
| 48 | + --border-color: #e5c880; |
49 | 49 | --table-border-color: #000000; |
50 | 50 | /* Search input colors */ |
51 | | - --search-input-background-color: #ffffff; |
| 51 | + --search-input-background-color: #edd9a6; |
52 | 52 | --search-input-text-color: #000000; |
53 | 53 | --search-input-placeholder-color: #909090; |
54 | 54 | /* Highlight color for active search tag target */ |
@@ -908,7 +908,7 @@ main a[href*="://"]:focus::after { |
908 | 908 | background-image:url('data:image/svg+xml; utf8, \ |
909 | 909 | <svg xmlns="http://www.w3.org/2000/svg" width="768" height="768">\ |
910 | 910 | <path d="M584 664H104V184h216V80H0v688h688V448H584zM384 0l132 \ |
911 | | - 132-240 240 120 120 240-240 132 132V0z" fill="%23bb7a2a"/>\ |
| 911 | + 132-240 240 120 120 240-240 132 132V0z" fill="%23470c03"/>\ |
912 | 912 | </svg>'); |
913 | 913 | } |
914 | 914 | /* |
@@ -1270,3 +1270,112 @@ pre.snippet .highlighted { |
1270 | 1270 | background-color: var(--snippet-highlight-color); |
1271 | 1271 | border-radius: 10%; |
1272 | 1272 | } |
| 1273 | + |
| 1274 | +/* |
| 1275 | +
|
| 1276 | +Railscasts-like style (c) Visoft, Inc. (Damien White) |
| 1277 | +
|
| 1278 | +*/ |
| 1279 | + |
| 1280 | +.hljs { |
| 1281 | + display: block; |
| 1282 | + overflow-x: auto; |
| 1283 | + padding: 0.5em; |
| 1284 | + background: #232323; |
| 1285 | + color: #e6e1dc; |
| 1286 | + /* added by us */ |
| 1287 | + border-radius:8px; |
| 1288 | +} |
| 1289 | + |
| 1290 | +.hljs-comment, |
| 1291 | +.hljs-quote { |
| 1292 | + color: #bc9458; |
| 1293 | + font-style: italic; |
| 1294 | +} |
| 1295 | + |
| 1296 | +.hljs-keyword, |
| 1297 | +.hljs-selector-tag { |
| 1298 | + color: #c26230; |
| 1299 | +} |
| 1300 | + |
| 1301 | +.hljs-string, |
| 1302 | +.hljs-number, |
| 1303 | +.hljs-regexp, |
| 1304 | +.hljs-variable, |
| 1305 | +.hljs-template-variable { |
| 1306 | + color: #a5c261; |
| 1307 | +} |
| 1308 | + |
| 1309 | +.hljs-subst { |
| 1310 | + color: #519f50; |
| 1311 | +} |
| 1312 | + |
| 1313 | +.hljs-tag, |
| 1314 | +.hljs-name { |
| 1315 | + color: #e8bf6a; |
| 1316 | +} |
| 1317 | + |
| 1318 | +.hljs-type { |
| 1319 | + color: #ffc66d; |
| 1320 | +} |
| 1321 | + |
| 1322 | + |
| 1323 | +.hljs-symbol, |
| 1324 | +.hljs-bullet, |
| 1325 | +.hljs-built_in, |
| 1326 | +.hljs-builtin-name, |
| 1327 | +.hljs-attr, |
| 1328 | +.hljs-link { |
| 1329 | + color: #6d9cbe; |
| 1330 | +} |
| 1331 | + |
| 1332 | +.hljs-params { |
| 1333 | + color: #d0d0ff; |
| 1334 | +} |
| 1335 | + |
| 1336 | +.hljs-attribute { |
| 1337 | + color: #cda869; |
| 1338 | +} |
| 1339 | + |
| 1340 | +.hljs-meta { |
| 1341 | + color: #9b859d; |
| 1342 | +} |
| 1343 | + |
| 1344 | +.hljs-title, |
| 1345 | +.hljs-section { |
| 1346 | + color: #ffc66d; |
| 1347 | +} |
| 1348 | + |
| 1349 | +.hljs-addition { |
| 1350 | + background-color: #144212; |
| 1351 | + color: #e6e1dc; |
| 1352 | + display: inline-block; |
| 1353 | + width: 100%; |
| 1354 | +} |
| 1355 | + |
| 1356 | +.hljs-deletion { |
| 1357 | + background-color: #600; |
| 1358 | + color: #e6e1dc; |
| 1359 | + display: inline-block; |
| 1360 | + width: 100%; |
| 1361 | +} |
| 1362 | + |
| 1363 | +.hljs-selector-class { |
| 1364 | + color: #9b703f; |
| 1365 | +} |
| 1366 | + |
| 1367 | +.hljs-selector-id { |
| 1368 | + color: #8b98ab; |
| 1369 | +} |
| 1370 | + |
| 1371 | +.hljs-emphasis { |
| 1372 | + font-style: italic; |
| 1373 | +} |
| 1374 | + |
| 1375 | +.hljs-strong { |
| 1376 | + font-weight: bold; |
| 1377 | +} |
| 1378 | + |
| 1379 | +.hljs-link { |
| 1380 | + text-decoration: underline; |
| 1381 | +} |
0 commit comments