-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Aditya Prasad Mohanty <[email protected]>
- Loading branch information
1 parent
1263c04
commit d7d48eb
Showing
19 changed files
with
157 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,33 @@ | ||
.membership { | ||
display: flex; | ||
flex-direction: column; | ||
padding: 10rem 5.625rem 0; | ||
padding: 16rem 2rem 0; | ||
} | ||
.members { | ||
display: flex; | ||
flex-direction: row; | ||
display: grid; | ||
grid-template-columns: repeat(3, 1fr); | ||
grid-template-rows: repeat(2, 1fr); | ||
align-self: center; | ||
align-items: center; | ||
justify-content: space-between; | ||
margin-top: 2rem; | ||
justify-self: center; | ||
gap: 5rem; | ||
margin-top: 1rem; | ||
} | ||
.membershipTitle { | ||
font-family: var(--font-main-medium); | ||
font-weight: 500; | ||
font-size: 1rem; | ||
font-size: 1.25rem; | ||
color: var(--color-font-header); | ||
align-self: center; | ||
} | ||
.member { | ||
width: auto; | ||
height: 4rem; | ||
width: 15rem; | ||
height: auto; | ||
cursor: pointer; | ||
} | ||
@media screen and (max-width: 1080px) { | ||
.membership { | ||
padding: 10rem 2rem 0; | ||
} | ||
.member { | ||
height: 3rem; | ||
} | ||
} | ||
@media screen and (max-width: 880px) { | ||
.member { | ||
height: 2rem; | ||
} | ||
} | ||
@media screen and (max-width: 550px) { | ||
.member { | ||
height: 3rem; | ||
} | ||
.members { | ||
flex-direction: column; | ||
gap: 2rem | ||
grid-template-columns: repeat(2, 1fr); | ||
grid-template-rows: repeat(3, 1fr); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import React from "react"; | ||
import styles from "./styles.module.css"; | ||
import Link from "@docusaurus/Link"; | ||
import sandboxImage from "../../../static/img/sandbox/membership-cncf.png"; | ||
|
||
export default function HomepageSandbox() { | ||
return ( | ||
<section className={`sandbox ${styles.sandbox}`}> | ||
<h4 className={styles.sandboxText}> | ||
We are a | ||
<Link to="https://www.cncf.io/projects/kubearmor/">CNCF Sandbox</Link> | ||
project. | ||
</h4> | ||
<Link to="https://www.cncf.io/projects/kubearmor/"> | ||
<img className={styles.logo} src={sandboxImage} alt="logo" /> | ||
</Link> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.sandbox { | ||
display: flex; | ||
flex-direction: column; | ||
padding: 16rem 2rem 0; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
.sandboxText { | ||
font-family: var(--font-main-medium); | ||
font-weight: 500; | ||
font-size: 1.25rem; | ||
} |
Oops, something went wrong.