Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ packaging templates from an upstream source (i.e. tarball).

Before we really start this blog post off, I'd like to thank everyone who is supporting the
project! All of the [OpenCollective](https://opencollective.com/serpent-os) contributions will make it easier for me to work full
time on Serpent OS =) Much love <3
time on Serpent OS =) Much love &lt;3

![Look at all the buildiness](./Featured.webp)

Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import BoxSectionOutro from '@/components/splash/BoxSectionOutro.astro';
<h1>AerynOS</h1>
<p>AerynOS is an independent performance-oriented Linux-based operating system that diverges significantly from traditional distributions whilst still aiming to provide a familiar and comfortable environment. The code-base is currently in an alpha "technical preview" stage, which means that it is not yet ready for widespread use. However, we are committed to eventually providing a stable and reliable operating system that will be easy to use and customize.</p>

<div class="sl-flex" style="justify-content: center;">
<div class="button-grid">
<LinkButton href="/download" variant="primary" icon="fa6-solid:download">Get Started</LinkButton>
<LinkButton href="/about" variant="secondary" icon="fa6-solid:circle-arrow-right">Learn More</LinkButton>
<LinkButton href="/sponsor" variant="secondary" iconPlacement="end" icon="fa6-solid:heart">Support Us</LinkButton>
Expand Down
26 changes: 23 additions & 3 deletions src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,25 @@ html:not([data-has-sidebar]) .content-panel {



.button-grid {
display: grid;
grid-template-columns: repeat(2, auto);
justify-content: center;
gap: 0.5rem;
}

@media (min-width: 768px) {
.button-grid {
grid-template-columns: repeat(4, auto);
}
}

.splash-content {
padding: 1rem;
padding: 1rem 1.5rem;
margin-inline: auto;
max-width: 80rem;
width: calc(var(--original-sl-content-width) +(100% - var(--original-sl-content-width) - var(--sl-sidebar-width)) / 2);
width: 100%;
box-sizing: border-box;
text-align: center;
}

Expand All @@ -71,7 +85,13 @@ html:not([data-has-sidebar]) .content-panel {
flex-direction: column;
align-items: center;
gap: 1rem;
padding: 4rem;
padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
.box-section {
padding: 4rem;
}
}


Expand Down
Loading