-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
💄 updated design to yellow, changed animations
- Loading branch information
1 parent
a545409
commit e722d58
Showing
9 changed files
with
123 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
import "../styles/_colors.css"; | ||
interface Props { | ||
href: string; | ||
} | ||
const { href } = Astro.props; | ||
--- | ||
|
||
<a class="link-button" href={ href }> | ||
<slot /> | ||
</a> | ||
|
||
<style> | ||
|
||
a { | ||
display: inline-flex; | ||
margin-inline: 8px; | ||
font-size: normal; | ||
font-weight: 600; | ||
width: fit-content; | ||
box-sizing: content-box; | ||
color: white; | ||
|
||
border: solid 0.032em var(--new-accent-color); | ||
padding: 2px 8px; | ||
border-radius: 12px; | ||
text-decoration: none; | ||
-webkit-tap-highlight-color: transparent; | ||
transition: 150ms linear; | ||
} | ||
|
||
a:hover { | ||
color: var(--new-accent-color); | ||
background-color: var(--new-darker-background-color); | ||
} | ||
</style> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
import PageLayout from "../../layouts/PageLayout.astro"; | ||
--- | ||
|
||
<PageLayout title="Tech Stack" icon="https://github.com/retrozinndev.png"> | ||
<div class="container"> | ||
<> | ||
</div> | ||
|
||
<style> | ||
|
||
|
||
|
||
</style> | ||
</PageLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
|
||
:root { | ||
--navbar-color: rgb(47, 49, 54); | ||
--new-background-color: #1c1c15; | ||
--new-darker-background-color: #5c5c16; | ||
--new-accent-color: #e0c82b; | ||
--new-darker-accent-color: #ad9c2a; | ||
--background-color: #1e1e1f; | ||
--primary-color: #3a4750; | ||
--secondary-color: #343c42; | ||
--secondary-color-darker: #1f2931; | ||
--link-color: #2f82c2; | ||
--text-emphasis-color: #2c73a5; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters