forked from ProjectSegfault/website
fix project links
This commit is contained in:
parent
653f44b280
commit
f7f3bdddba
@ -16,10 +16,7 @@
|
||||
.link {
|
||||
background-color: var(--alt);
|
||||
color: var(--alt-text);
|
||||
font-size: 20px;
|
||||
transition: all 0.25s;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.web:hover,
|
||||
@ -33,25 +30,21 @@
|
||||
.matrixcolored {
|
||||
background-color: var(--alt);
|
||||
color: var(--alt-text);
|
||||
font-size: 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.discordcolored {
|
||||
background-color: #5865f2;
|
||||
color: #fff;
|
||||
font-size: 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.gitcolored {
|
||||
background-color: #f05032;
|
||||
color: #fff;
|
||||
font-size: 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.githubcolored {
|
||||
background-color: var(--alt);
|
||||
color: var(--alt-text);
|
||||
}
|
||||
|
||||
a {
|
||||
@ -63,5 +56,8 @@
|
||||
color: var(--secondary);
|
||||
text-decoration: none;
|
||||
width: fit-content;
|
||||
font-size: 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
||||
|
@ -2,13 +2,13 @@
|
||||
{
|
||||
"name": "Website",
|
||||
"description": "Our website written in SvelteKit.",
|
||||
"git": "https://git.projectsegfau.lt/ProjectSegfault/website/",
|
||||
"github": "https://github.com/ProjectSegfault/website/",
|
||||
"website": "https://projectsegfau.lt/"
|
||||
},
|
||||
{
|
||||
"name": "Segfautils",
|
||||
"description": "Web utilities (APIs) for Project Segfault, but you could probably use them too.",
|
||||
"git": "https://git.projectsegfau.lt/ProjectSegfault/Segfautils/",
|
||||
"github": "https://github.com/ProjectSegfault/segfautils/",
|
||||
"website": "https://segfautils.projectsegfau.lt/"
|
||||
}
|
||||
]
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
<h1>Our projects</h1>
|
||||
<CardOuter>
|
||||
{#each projects as { name, description, git, website }}
|
||||
{#each projects as { name, description, git, github, website }}
|
||||
<CardInner title={name} {description}>
|
||||
<LinksOuter>
|
||||
{#if website}
|
||||
@ -19,6 +19,12 @@
|
||||
</Link>
|
||||
{/if}
|
||||
|
||||
{#if github}
|
||||
<Link url={github} class="githubcolored">
|
||||
<div class="i-simple-icons:github" />
|
||||
</Link>
|
||||
{/if}
|
||||
|
||||
{#if git}
|
||||
<Link url={git} class="gitcolored">
|
||||
<div class="i-simple-icons:git" />
|
||||
|
Loading…
Reference in New Issue
Block a user