diff --git a/docs/getting-started.mdx b/docs/getting-started.mdx index 74280c25..70cba0ef 100644 --- a/docs/getting-started.mdx +++ b/docs/getting-started.mdx @@ -11,31 +11,31 @@ import DownloadCardStyles from '@site/src/css/download-card.module.css'; ## Choose Your Path - - + + - +

Self-Hosted zrok

- - Run your own public zrok instance with Linux, Docker, or Kubernetes. + + Run a zrok instance on Linux, Docker, or Kubernetes. - +
- + - +

Hosted zrokNet

- + Use NetFoundry's public zrok instance. - + diff --git a/website/src/css/custom.css b/website/src/css/custom.css index 4d5b0a0c..bd301390 100644 --- a/website/src/css/custom.css +++ b/website/src/css/custom.css @@ -217,3 +217,37 @@ a code { height: 1.25rem; width: 1.25rem; } + +/* getting started cards */ + +:root { + --contrasting-background: #c4b7f5; + --container-border: 1px solid #adadad; /* Light gray border */ + --button-background-hover: #9c84f9; +} + +[data-theme="dark"] { + --contrasting-background: #4b359f; + --container-border: 1px solid #6d6d6d; /* Light gray border */ + --button-background-hover: #251463; +} + +.getting-started-cards .card { + background-color: var(--sidebar-selected); +} + +.getting-started-cards .button { + background-color: var(--contrasting-background); + border: 1px var(--container-border); + color: var(--ifm-link-color); + transition: background-color 0.3s ease; /* Smooth transition for hover effect */ +} + +.getting-started-cards .button:hover { + background-color: var(--button-background-hover); + outline: none; /* Removes the outline on focus for a clean look */ +} + +.getting-started-cards a:hover { + text-decoration: none; /* Removes the underline from links */ +}