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
164 changes: 164 additions & 0 deletions public/icons/codeberg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions public/icons/discord.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions public/icons/external-link.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/gitlab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions public/icons/mail.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions public/icons/matrix.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions public/icons/reddit.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/x.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions src/components/Button.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---

interface Props {
href: string;
color: string;
}

---

<div class="button">

</div>

40 changes: 23 additions & 17 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
@@ -1,29 +1,35 @@
---
import "../styles/global.css"
---

<footer class="footer">
<div class="container">
Made by retrozinndev, licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html">GPLv3</a> and newer
Made with &hearts; by retrozinndev
· <a href="https://github.com/retrozinndev/retrozinndev.github.io">Improve this Page</a>
</div>
</footer>

<style>
.footer {
margin-left: 0px;
color: lightgray;
overflow: scroll;
display: block;
width: 100%;
max-width: 100vw;
position: relative;
font-family: Free Sans, Open Sans, Segoe UI Alternative, Segoe UI, sans-serif;
font-size: 12.8px;
text-align: center;
}
.footer {
margin-left: 0px;
color: lightgray;
overflow: scroll;
display: block;
width: 100%;
font-family: Free Sans, Open Sans, Segoe UI Alternative, Segoe UI, sans-serif;
font-size: 12.8px;
text-align: center;
}

.footer > a {
color: lightgray;
}
.container {
width: auto;
}

a {
color: lightgray;
transition: 250ms;
}

a:hover {
color: rgb(91, 91, 185);
}
</style>
12 changes: 6 additions & 6 deletions src/components/NavBar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ var options = {
</header>

<style>
:root {
--avatar-size: 32px;
--avatar-margin-left: 16px;
}

header {
--avatar-size: 32px;
--avatar-margin-left: 10px;

display: flex;
flex-direction: row;
background-color: var(--navbar-color);
padding: 6px;
}

.navbar {
Expand Down Expand Up @@ -84,14 +84,14 @@ var options = {
margin-top: 0;
}

.link > a {
a {
color: white;
text-decoration: none;
font-weight: bold;
transition: 250ms;
}

.link > a:hover {
a:hover {
color: var(--link-color);
}
</style>
Loading