chore: adjust project order

This commit is contained in:
eggy 2022-08-09 19:31:13 -04:00
parent dfd2a67b53
commit 6d66ad5781
3 changed files with 22 additions and 9 deletions

View File

@ -46,10 +46,18 @@ const height = forceheight ?? "auto";
height: v-bind(height); height: v-bind(height);
border: 0.5rem solid v-bind(color); border: 0.5rem solid v-bind(color);
border-radius: 0.5rem; border-radius: 0.5rem;
transition: transform 0.2s ease;
box-shadow: 0 0.1rem 0.5rem 0 gray;
}
.container:hover,
.container:active {
transform: scale(1.05);
} }
html.dark .container { html.dark .container {
border: 0.5rem solid v-bind(darkcolor); border: 0.5rem solid v-bind(darkcolor);
box-shadow: 0 0.1rem 0.5rem 0 black;
} }
.main-content { .main-content {

View File

@ -31,11 +31,13 @@ img {
height: 12rem; height: 12rem;
line-height: 1.25; line-height: 1.25;
transition: all 0.2s ease; transition: all 0.2s ease;
box-shadow: 0 0.1rem 0.5rem 0 gray;
} }
html.dark .card { html.dark .card {
border: 0.2rem solid rgb(126, 93, 98); border: 0.2rem solid rgb(126, 93, 98);
background: rgb(110, 90, 92); background: rgb(110, 90, 92);
box-shadow: 0 0.1rem 0.5rem 0 black;
} }
.card:hover, .card:hover,
@ -52,4 +54,8 @@ html.dark .card {
a.unclickable { a.unclickable {
pointer-events: none; pointer-events: none;
} }
a.unclickable .card {
box-shadow: none;
}
</style> </style>

View File

@ -1,30 +1,29 @@
export const projects = [ export const projects = [
{
name: "public",
href: "https://github.com/potatoeggy/public",
description: "This website!",
},
{ {
name: "mandown", name: "mandown",
href: "https://github.com/potatoeggy/mandown", href: "https://github.com/potatoeggy/mandown",
description: "I couldn't find one so I made one", description: "I couldn't find one so I made one",
}, },
{ name: "noveldown", href: "https://github.com/potatoeggy/noveldown" }, { name: "noveldown", href: "https://github.com/potatoeggy/noveldown" },
{ name: "YTMusicDL", href: "https://github.com/potatoeggy/YTMusicDL" },
{ name: "jeopardy", href: "https://github.com/potatoeggy/jeopardy" }, { name: "jeopardy", href: "https://github.com/potatoeggy/jeopardy" },
{ name: "Eifueo", href: "https://github.com/potatoeggy/eifueo" }, { name: "Eifueo", href: "https://github.com/potatoeggy/eifueo" },
{ name: "Napbot", href: "https://github.com/potatoeggy/napbot" }, { name: "Napbot", href: "https://github.com/potatoeggy/napbot" },
{ name: "emufeed", href: "https://github.com/potatoeggy/emufeed" },
{ name: "Resketch", href: "https://github.com/anyuan-chen/resketch" }, { name: "Resketch", href: "https://github.com/anyuan-chen/resketch" },
{ name: "Perdiem", href: "https://github.com/anyuan-chen/perdiem" },
{ {
name: "RecipeReady", name: "RecipeReady",
href: "https://github.com/christopherlam888/recipe-ready-frontend", href: "https://github.com/christopherlam888/recipe-ready-frontend",
}, },
{ name: "Perdiem", href: "https://github.com/anyuan-chen/perdiem" }, { name: "YTMusicDL", href: "https://github.com/potatoeggy/YTMusicDL" },
{ name: "emufeed", href: "https://github.com/potatoeggy/emufeed" },
{ name: "Flashnote", href: "https://github.com/potatoeggy/flashnote" }, { name: "Flashnote", href: "https://github.com/potatoeggy/flashnote" },
{ name: "Rooster", href: "https://github.com/potatoeggy/rooster" }, { name: "Rooster", href: "https://github.com/potatoeggy/rooster" },
{ name: "AutoFicFare", href: "https://github.com/potatoeggy/autoficfare" }, { name: "AutoFicFare", href: "https://github.com/potatoeggy/autoficfare" },
{ name: "public", href: "https://github.com/potatoeggy/public" }, {
name: "public",
href: "https://github.com/potatoeggy/public",
description: "This website!",
},
]; ];
export default projects; export default projects;