Skip to content

Commit

Permalink
a lot of things
Browse files Browse the repository at this point in the history
  • Loading branch information
rinyafii committed Jan 17, 2024
1 parent a4fffa6 commit 386c44d
Show file tree
Hide file tree
Showing 15 changed files with 513 additions and 41 deletions.
18 changes: 18 additions & 0 deletions public/pageReqs/links/bluesky.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions public/pageReqs/links/discord.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
70 changes: 70 additions & 0 deletions public/pageReqs/links/github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions public/pageReqs/links/spotify.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions public/pageReqs/links/steam.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions public/pageReqs/links/twitch.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions public/pageReqs/links/twitter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions public/pageReqs/links/youtube.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,16 @@
padding: 0.5rem;
background-color: #71578e50;
backdrop-filter: blur(10px);

display: flex;
justify-content: center;
}
.frame {
display: flex;
flex-direction: row;
justify-content: center;
width: 100%;
max-width: 120ch;
}
</style>

Expand Down
40 changes: 34 additions & 6 deletions src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@
import HeaderButton from './buttons/HeaderButton.astro';
---
<style>
nav {
display: flex;
align-items: flex-end;
justify-content: flex-start;
height: 100%;
}
a {
text
margin: 0.2em;
Expand All @@ -19,7 +13,40 @@ import HeaderButton from './buttons/HeaderButton.astro';
padding-bottom: 0;
background-color: #71578e50;
backdrop-filter: blur(10px);

display: flex;
justify-content: center;
}
nav {
display: flex;
align-items: flex-end;
justify-content: flex-start;
height: 100%;
width: 100%;
max-width: 120ch;
}

.wipTab {
padding-left: 0.4rem;
padding-right: 0.4rem;
margin-left: 0.1rem;
margin-right: 0.1rem;

width: 5rem;
height: 2.5rem;
border-top-left-radius: 0.5rem;
border-top-right-radius: 0.5rem;

display: flex;
justify-content:center;
align-items: center;

font-weight: bold;
color: #202020;
background: #f1ad8a;
text-decoration: none;
}

</style>

<script>
Expand All @@ -33,6 +60,7 @@ import HeaderButton from './buttons/HeaderButton.astro';
<header>
<nav>
<img class="logo" src="/melogo.svg" height=45px />
<div class="wipTab"><h2>WIP</h2></div>
<HeaderButton location="/" text="home" class="homeBtn" />
<HeaderButton location="/links/" text="my links" class="linksBtn" />
<HeaderButton location="/thoughts/" text="thoughts" class="thoughtsBtn" />
Expand Down
Loading

0 comments on commit 386c44d

Please sign in to comment.