Skip to content

Commit 4e15d96

Browse files
committed
Publishing documentation for version 0.10.5-SNAPSHOT
1 parent c817462 commit 4e15d96

19 files changed

+4752
-2998
lines changed

0.10.5-SNAPSHOT/alternative-build-systems.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,9 @@
444444
<link rel="icon" type="image/png" sizes="16x16" href="https://www.graalvm.org/resources/img/favicon/favicon-16x16.png">
445445
</head>
446446
<body class="article toc2 toc-left">
447+
<div id="grabbit-logo">
448+
<img src="css/images/Grabbit.svg" alt="">
449+
</div>
447450
<div id="header">
448451
<h1>Native Build Tools</h1>
449452
<div class="details">
@@ -524,10 +527,11 @@ <h2 id="_using_common_native_build_tools_modules_in_a_build_tool_extension"><a c
524527
<script src="highlight/highlight.min.js"></script>
525528
<script>hljs.initHighlighting()</script>
526529
<link rel="stylesheet" href="css/multi-lang-sample.css">
530+
<link rel="stylesheet" href="css/page.css">
527531
<script src="js/multi-lang-sample.js"></script>
528532
<div id="footer">
529533
<div id="footer-text">
530-
<img src="img/GraalVM-rgb.svg" alt="GraalVM"> (c) 2025. Licensed under the Universal Permissive License (UPL), Version 1.0
534+
<img src="css/images/GraalVM-rgb.svg" alt="GraalVM"> (c) 2025. Licensed under the Universal Permissive License (UPL), Version 1.0
531535
</div>
532536
</div>
533537
</body>

0.10.5-SNAPSHOT/announcement.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,9 @@
443443
<link rel="icon" type="image/png" sizes="16x16" href="https://www.graalvm.org/resources/img/favicon/favicon-16x16.png">
444444
</head>
445445
<body class="article toc2 toc-left">
446+
<div id="grabbit-logo">
447+
<img src="css/images/Grabbit.svg" alt="">
448+
</div>
446449
<div id="header">
447450
<div id="toc" class="toc2">
448451
<div id="toctitle">Table of Contents</div>
@@ -712,10 +715,11 @@ <h3 id="_built_with_love_through_collaboration"><a class="anchor" href="#_built_
712715
<script src="highlight/highlight.min.js"></script>
713716
<script>hljs.initHighlighting()</script>
714717
<link rel="stylesheet" href="css/multi-lang-sample.css">
718+
<link rel="stylesheet" href="css/page.css">
715719
<script src="js/multi-lang-sample.js"></script>
716720
<div id="footer">
717721
<div id="footer-text">
718-
<img src="img/GraalVM-rgb.svg" alt="GraalVM"> (c) 2025. Licensed under the Universal Permissive License (UPL), Version 1.0
722+
<img src="css/images/GraalVM-rgb.svg" alt="GraalVM"> (c) 2025. Licensed under the Universal Permissive License (UPL), Version 1.0
719723
</div>
720724
</div>
721725
</body>

0.10.5-SNAPSHOT/changelog.html

Lines changed: 1565 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 27 additions & 0 deletions
Loading
Lines changed: 53 additions & 0 deletions
Loading

0.10.5-SNAPSHOT/css/multi-lang-sample.css

Lines changed: 17 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0.10.5-SNAPSHOT/css/page.css

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
body {
2+
background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.85));
3+
color: white;
4+
}
5+
6+
#grabbit-logo {
7+
position: absolute;
8+
right: 0;
9+
top: 0;
10+
width: 150px;
11+
}
12+
13+
#toc {
14+
background: none !important;
15+
}
16+
17+
#toc > #toctitle {
18+
color: #ffc107;
19+
}
20+
21+
#header > h1:first-child {
22+
color: white;
23+
font-weight: 600;
24+
}
25+
26+
#header>.details {
27+
color: white;
28+
}
29+
30+
#preamble>.sectionbody>[class="paragraph"]:first-of-type p {
31+
color: white;
32+
}
33+
34+
h2, h3, h4, .title {
35+
color: #ffc107 !important;
36+
}
37+
38+
p {
39+
color: white;
40+
}
41+
42+
a {
43+
color: #00a8cd;
44+
}
45+
46+
a:hover {
47+
color: #ffc107;
48+
}
49+
50+
.listingblock >.content>pre:not(.highlight) {
51+
color: white;
52+
background: none;
53+
border: 1px solid #ffc107;
54+
border-radius: 4px;
55+
}
56+
57+
:not(pre):not([class^=L])>code {
58+
background: #00758F;
59+
color: white;
60+
}
61+
62+
.admonitionblock td.icon .icon-tip::before,
63+
.admonitionblock td.icon .icon-note::before,
64+
.admonitionblock td.icon .icon-warning::before {
65+
color: white;
66+
}
67+
68+
.admonitionblock>table td.content {
69+
color: white;
70+
}
71+
72+
#footer {
73+
background: rgba(0, 0, 0, 0.2);
74+
}

0 commit comments

Comments
 (0)