Skip to content

Commit

Permalink
Add descriptive paragraphs to sections
Browse files Browse the repository at this point in the history
  • Loading branch information
lbirkert committed Aug 31, 2023
1 parent a1bcf3c commit 4ac2322
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 31 deletions.
6 changes: 0 additions & 6 deletions sites/quixbyte.org/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion sites/quixbyte.org/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"type": "module",
"dependencies": {
"@fontsource/inter": "^5.0.8",
"@fontsource/metropolis": "^5.0.7",
"@fontsource/teko": "^5.0.9",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
Expand Down
8 changes: 4 additions & 4 deletions sites/quixbyte.org/src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}

body {
font-family: "Metropolis", sans-serif;
font-family: "Inter", sans-serif;
}

h1 {
Expand All @@ -24,11 +24,12 @@ h1 {
letter-spacing: -20%;
line-height: 1em;
margin-bottom: 0.3em;
color: #000c2a;
}

p {
color: #222;
line-height: 1.4em;
color: #333f55;
}

.link {
Expand Down Expand Up @@ -60,14 +61,13 @@ p {
}

.button {
font-family: "Inter", sans-serif;
font-size: 20px;
display: inline-block;
padding: 0.4em 0.8em;
border-radius: 0.6em;
text-decoration: none;
border: 0.1em solid rgba(0, 0, 0, 0.1);
color: #222;
color: #333f55;
transition: color 0.3s ease, background-color 0.3s ease,
border-color 0.3s ease, outline 0.3s ease;
}
Expand Down
6 changes: 3 additions & 3 deletions sites/quixbyte.org/src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import "@fontsource/teko/latin-700.css";
import "@fontsource/inter/latin-400.css";
import "@fontsource/metropolis/latin-400.css";
</script>

<main>
Expand All @@ -24,8 +23,9 @@
@import url("https://fonts.googleapis.com/css2?family=Handjet:wght@400&display=swap");
main {
max-width: 800px;
max-width: 1000px;
width: 85%;
margin: auto;
padding: 3rem 2rem;
padding: 4rem 0rem;
}
</style>
38 changes: 21 additions & 17 deletions sites/quixbyte.org/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
<h1>Performance to an extreme.</h1>

<p>
Lorem ipsum dolor sit amet, qui minim labore adipisicing minim sint
cillum sint consectetur cupidatat.
QuixByte is truly fast. This is because we have chosen to go with a
modern tech stack.
</p>

<ul>
Expand All @@ -62,8 +62,8 @@
<h1>Built with Privacy in mind.</h1>

<p>
Lorem ipsum dolor sit amet, qui minim labore adipisicing minim sint
cillum sint consectetur cupidatat.
Thanks to the no-third-party model and the selfhostability of QuixByte,
your data is private by default.
</p>

<ul>
Expand All @@ -82,8 +82,8 @@
<h1>Selfhostable with ease.</h1>

<p>
Lorem ipsum dolor sit amet, qui minim labore adipisicing minim sint
cillum sint consectetur cupidatat.
Running QuixByte on your own server only requires one command to work
thanks to docker compose.
</p>

<ul>
Expand Down Expand Up @@ -129,7 +129,7 @@
span {
display: inline-block;
font-size: 36px;
font-size: 32px;
font-family: "Handjet", cursive;
color: blue;
margin-bottom: 0.3em;
Expand All @@ -138,13 +138,17 @@
section {
margin-top: 8rem;
margin-bottom: 8rem;
font-size: 1.4rem;
}
section h1 {
margin-bottom: 2rem;
}
section p {
font-size: 20px;
max-width: 560px;
}
section ul,
.hero ul {
display: flex;
Expand All @@ -157,32 +161,32 @@
footer {
padding-top: 3rem;
font-size: 14px;
font-family: "Inter", sans-serif;
}
@media (max-width: 500px) {
@media (max-width: 480px) {
span {
font-size: 30px;
font-size: 6vw;
}
section h1 {
font-size: 40px;
font-size: 8vw;
}
section p {
font-size: 20px;
font-size: 17px;
}
.button {
font-size: 18px;
font-size: 17px;
}
.hero {
text-align: center;
.hero h1 {
font-size: 60px;
}
.hero ul {
justify-content: center;
.hero p {
font-size: 19px;
}
footer {
Expand Down

0 comments on commit 4ac2322

Please sign in to comment.