Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions assets/scss/_content_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,6 @@ th {
}

// Shared ecosystem callout box (emitted by the `ecosystem-box` shortcode).
$ecosystem-box-glow: inset 0 0em 4em #ebc01766, 0 0 0 2px #ebc01766, 0.3em 0.3em 1em #ebc01733;

%ecosystem-box-base {
display: flex;
align-items: center;
Expand All @@ -347,6 +345,12 @@ $ecosystem-box-glow: inset 0 0em 4em #ebc01766, 0 0 0 2px #ebc01766, 0.3em 0.3em
.highlight-box {
@extend %ecosystem-box-base;
box-shadow: $ecosystem-box-glow;

/* Yield the glow when a following hidden box is hovered/focused */
&:has(~ .hidden-highlight-box:hover),
&:has(~ .hidden-highlight-box:focus) {
box-shadow: none;
}
}

.hidden-highlight-box {
Expand Down
42 changes: 0 additions & 42 deletions assets/scss/_navbar_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -219,45 +219,3 @@ img.grid-icon {
filter: invert(.6);
}
}

// Shared ecosystem callout box (emitted by the `ecosystem-box` shortcode).
$ecosystem-box-glow: inset 0 0em 4em #ebc01766, 0 0 0 2px #ebc01766, 0.3em 0.3em 1em #ebc01733;

%ecosystem-box-base {
display: flex;
align-items: center;
font-style: italic;
gap: 0.5rem;
padding: 1rem;
margin: auto -1rem;
transition: box-shadow 0.3s ease;
text-decoration: none;
color: inherit;

img {
height: 65px;
width: 65px;
border: 0;
background: transparent;
}
}

.highlight-box {
@extend %ecosystem-box-base;
box-shadow: $ecosystem-box-glow;
}

.hidden-highlight-box {
@extend %ecosystem-box-base;
box-shadow: none;

&:hover {
box-shadow: $ecosystem-box-glow;
}

/* Hide the sibling highlight-box's shadow when this one is hovered/focused */
&:hover ~ .highlight-box,
&:focus ~ .highlight-box {
box-shadow: none;
}
}
3 changes: 3 additions & 0 deletions assets/scss/_variables_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,6 @@ $site-max-width: 1920px;
// Footer

$list-inline-padding: $spacer;

// Ecosystem callout box (emitted by the `ecosystem-box` shortcode)
$ecosystem-box-glow: inset 0 0em 4em #ebc01766, 0 0 0 2px #ebc01766, 0.3em 0.3em 1em #ebc01733;
8 changes: 4 additions & 4 deletions content/en/kanvas/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ aliases:

## Understanding the Layer5 Ecosystem

{{< ecosystem-box link="cloud/_index.md" icon="cloud" class="hidden-highlight-box" title="Layer5 Cloud" >}}
is an identity provider and global console for deployments with an extensible and highly flexible authorization framework, tenant entitlement services, service provider-grade organizational hierarchy, team workspace management and a content catalog for public and private hosting of cloud native architectures. Layer5 Cloud is available as a service or self-hosted.
{{< /ecosystem-box >}}

{{< ecosystem-box icon="images/logos/kanvas-icon-color.svg" image="true" title="Kanvas" >}}
delivers a collaborative experience similar to how Google Workplace transforms the digital work environment and how Figma democratizes UX design tooling. Kanvas simplifies the complexity of Kubernetes and multi-cloud infrastructure management accessible to all. Kanvas provides a visual, multi-player experience that allows you to create, configure, deploy, and manage modern infrastructure with confidence.
{{< /ecosystem-box >}}

{{< ecosystem-box link="cloud/_index.md" icon="cloud" class="hidden-highlight-box" title="Layer5 Cloud" >}}
is an identity provider and global console for deployments with an extensible and highly flexible authorization framework, tenant entitlement services, service provider-grade organizational hierarchy, team workspace management and a content catalog for public and private hosting of cloud native architectures. Layer5 Cloud is available as a service or self-hosted.
{{< /ecosystem-box >}}

{{% /pageinfo %}}

## What is Kanvas?
Expand Down
Loading