Skip to content

Commit

Permalink
fix bold font
Browse files Browse the repository at this point in the history
  • Loading branch information
fantkolja committed Nov 1, 2024
1 parent 397208c commit 00e8b05
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion preview-src/java.adoc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
= Java Client
[[java-client]]

The Java client is the most full featured Hazelcast native client.
The Java client is **the most full featured** Hazelcast native client.
It is offered both with Hazelcast IMDG and Hazelcast IMDG Enterprise.
The main idea behind the Java client is to provide the same Hazelcast
functionality by proxying each operation through a Hazelcast member.
Expand Down
1 change: 1 addition & 0 deletions src/css/admonition.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
.admonitionblock::before {
display: block;
font-weight: 500;
font-family: var(--heading-font-family);
margin-bottom: 10px;
}

Expand Down
11 changes: 6 additions & 5 deletions src/css/cookie.css
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
.cookie-banner {
position: fixed;
display: none;
bottom: 0;
left: 0;
width: 100%;
padding: 18px 16px;
bottom: 20px;
left: 20px;
right: 112px;
padding: 20px 16px;
align-items: center;
justify-content: space-between;
gap: 10px;
background-color: var(--header-color);
color: var(--neutral-white);
border: 1px solid var(--accent);
border-radius: 10px;
font-size: 14px;
font-family: var(--heading-font-family);
border-top: 1px solid var(--header-color);
z-index: 1000;
}

Expand Down
2 changes: 1 addition & 1 deletion src/css/fontsource-open-sans.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
@font-face {
font-family: "Open Sans";
font-style: bold;
font-weight: 600;
font-weight: 500;
src:
local("Open Sans"),
local("Open Sans-Bold"),
Expand Down
18 changes: 9 additions & 9 deletions src/partials/cookie.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
<!-- <a href="https://hazelcast.com/privacy/?utm_source=docs-website">Learn more</a>-->
</p>
<div class="cookie-banner-btns-wrapper">
<a id="manageCookiesLink" href="javascript:void(0)" role="button" class="manage-cookies-link">
Manage Cookies
</a>
<button class="cookie-decision-btn decline-btn">
Decline
<!-- <a id="manageCookiesLink" href="javascript:void(0)" role="button" class="manage-cookies-link">-->
<!-- Manage Cookies-->
<!-- </a>-->
<button class="cookie-decision-btn decline-btn" id="closeCookies">
Close
</button>
<button class="cookie-decision-btn allow-btn">
Allow
</button>
<button class="cookie-close" id="closeCookies">&times;</button>
<!-- <button class="cookie-decision-btn allow-btn">-->
<!-- Allow-->
<!-- </button>-->
<!-- <button class="cookie-close" id="closeCookies">&times;</button>-->
</div>
</div>

0 comments on commit 00e8b05

Please sign in to comment.