Skip to content

Commit

Permalink
Updated technologies and front page resume.
Browse files Browse the repository at this point in the history
  • Loading branch information
nTh0rn committed Nov 7, 2024
1 parent a1f8004 commit 3fffaee
Show file tree
Hide file tree
Showing 8 changed files with 213 additions and 85 deletions.
Binary file added public/images/icons/schools/stoa.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icons/tech/batch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icons/tech/git.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icons/tech/htmlcss.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
290 changes: 206 additions & 84 deletions src/components/MainHeader.astro

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/pages/tags/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const pageTitle = "Tag Index";
<div class="flex-wrap flex items-center justify-around">
{tags.map((tag) => (
<div class="duration-1000 relative transform transition-opacity opacity-0 ease-out" data-replace='{ "opacity-0": "opacity-100" }'>
<div class="group flex hover:-ml-0 rounded-lg border-[1px] hover:px-3 hover:-mr-0 m-1 p-2 border-[#000000] dark:border-[#FFFFFF] animate duration-200 ">
<div class="group flex hover:-ml-0 rounded-lg border-[1px] hover:px-3 hover:-mr-0 m-1 p-2 bg-opacity-10 bg-[#0069FF] dark:bg-opacity-[7%] dark:bg-[#388AFF] border-[#000000] dark:border-[#FFFFFF] animate duration-200 ">
<a href={`/tags/${tag}`} class="text-center unset hover:text-text-link transition-colors duration-0">
{tag}
</a>
Expand Down
2 changes: 2 additions & 0 deletions src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@

--color-tech-light: 255 240 200;
--color-tech-light-light: 255 230 155;
--color-box-blue-dark: 51 154 240
--color-box-blue-light: 0 105 255

/* Tailwind slate-900 #0f172a */
--color-text-body: 15 23 42;
Expand Down
4 changes: 4 additions & 0 deletions tailwind.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ module.exports = {
},
colors: {
'main-c':'#339AF0',
blueLight:'#0069FF',
blueDark:'#339AF0',
transparent: "transparent",
current: "currentColor",
primary: {
Expand All @@ -69,6 +71,8 @@ module.exports = {
200: "rgb(var(--color-tech-dark) / <alpha-value>)",
800: "rgb(var(--color-tech-light) / <alpha-value>)",
900: "rgb(var(--color-tech-light-light) / <alpha-value>)",
blueDark: "rgb(var(--color-box-blue-dark) / <alpha-value>)",
blueLight: "rgb(var(--color-box-blue-light) / <alpha-value>)",
},

text: {
Expand Down

0 comments on commit 3fffaee

Please sign in to comment.