Skip to content

Commit 9f0ab48

Browse files
committed
Fix Learn more coloring
Signed-off-by: Derek Nola <[email protected]>
1 parent 4a43d81 commit 9f0ab48

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

src/css/custom.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,11 @@
7070
color: var(--ifm-color-primary);
7171
}
7272

73+
.button--static {
74+
background-color: #06527a;
75+
color: #F3F3F3;
76+
}
77+
7378
@media (max-width: 768px) {
7479
#theme-main h1 {
7580
font-size: 50px !important;

src/pages/index.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function Landing() {
2222
# Check for Ready node, takes ~30 seconds
2323
sudo k3s kubectl get node `
2424
}</CodeBlock>
25-
<p>For detailed installation, <a href="docs">refer to the docs</a></p>
25+
<p>For detailed installation, <a href="https://docs.k3s.io">refer to the docs</a></p>
2626
</div>
2727
</div>
2828
</div>
@@ -53,7 +53,7 @@ sudo k3s kubectl get node `
5353
<div>
5454
<h5>Simplified &amp; Secure</h5>
5555
<p>K3s is packaged as a single
56-
&lt;60MB binary that reduces the
56+
&lt;70MB binary that reduces the
5757
dependencies and steps needed
5858
to install, run and auto-update a
5959
production Kubernetes cluster.</p>
@@ -78,16 +78,16 @@ sudo k3s kubectl get node `
7878
<p>The above figure shows the difference
7979
between K3s server and K3s agent nodes.
8080
For more information,
81-
see the <a href="https://k3s-io.github.io/docs/architecture">
81+
see the <a href="https://docs.k3s.io/architecture">
8282
architecture documentation.</a>
8383
</p>
8484
</section>
8585
<section className={index.getStarted}>
8686
<div className={index.white}>
8787
<h2 className={index.textCenter}>Get Started</h2>
8888
<h5>
89-
1. Download K3s - <a href="https://github.com/k3s-io/k3s/releases/latest">latest release</a>, x86_64, ARMv7, and
90-
ARM64 are supported
89+
1. Download K3s - <a href="https://github.com/k3s-io/k3s/releases/latest">latest release</a>: x86_64, ARMv7, ARM64, and s390x are supported
90+
<br/>
9191
2. Run server
9292
</h5>
9393
<CodeBlock className="language-sh">{
@@ -106,11 +106,11 @@ sudo k3s agent --server https://myserver:6443 --token \${NODE_TOKEN}`
106106
<div className={index.gridTwo}>
107107
<div>
108108
<p>Read the latest SUSE Rancher blog on K3s.</p>
109-
<a href="https://www.suse.com/c/rancher_blog/introduction-to-k3s/" class="button button--lg button--primary">Blog</a>
109+
<a href="https://www.suse.com/c/rancher_blog/when-to-use-k3s-and-rke2/" class="button button--lg button--static">Blog</a>
110110
</div>
111111
<div>
112112
<p>Watch the latest "Up and Running: K3s" Online Training.</p>
113-
<a href="https://community.suse.com/courses/6599524" class="button button--lg button--primary">Watch Training</a>
113+
<a href="https://community.suse.com/courses/6599524" class="button button--lg button--static">Watch Training</a>
114114
</div>
115115
</div>
116116
</div>

src/pages/index.module.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,10 +172,10 @@ Below is used for the k3s.io landing page
172172
}
173173

174174
[data-theme='dark'] .learnMore {
175-
background-color:var(--ifm-color-secondary)
175+
background-color:var(--ifm-color-primary);
176+
color: var(--light);
176177
}
177178

178-
179179
.folder h4 {
180180
display:inline-block;
181181
margin:0;

0 commit comments

Comments
 (0)