project section styling for desktop windows

This commit is contained in:
II-Paulus-II 2024-03-22 22:08:41 +00:00
parent 10d85743d3
commit 913ba6f495
4 changed files with 26 additions and 9 deletions

View File

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Full Stack Developer focused on React, Next and Express frameworks"/>
<meta name="description" content="Full Stack Software Developer focused on React JS, Next JS and Express JS frameworks"/>
<title>Paul Hughes - Full Stack Developer</title>
<link rel="canonical" href="https://paulus.casa">
<link rel="icon" type="image/png" href="/favicon.png" />

View File

@ -1,8 +1,6 @@
/* ----- Project Imports ----- */
import "@/styles/projects.css";
import { webProjects } from "@/data/webdata.js";
import { useProjectContext } from "@/context/ProjectContext";
function WebProjects() {
@ -18,8 +16,8 @@ function WebProjects() {
<h3 className="projectTextTitle">{item.Name}</h3>
<p className="projectTechnologies">{item.Technologies}</p>
<div className="projectLinksContainer">
<a href={item.GitHub} target="_blank" >GitHub</a>
<a href={item.Hosted} target="_blank" >Hosted</a>
<a className="individualProjectLinks" href={item.GitHub} target="_blank" >GitHub</a>
<a className="individualProjectLinks" href={item.Hosted} target="_blank" >Hosted</a>
</div>
</div>
</div>);

View File

@ -17,7 +17,7 @@ export const webProjects = [
Hosted: "https://wordle.paulus.casa",
},
{
Name: "Clicker Heroes - Hacker Version",
Name: "Clicker Heroes - Hacker Theme",
Image: "/projectimgs/hacker.webp",
Details: "As an introduction to Vanilla Javascript I made my own version of a cookie clicker or clicker heroes game",
Features: "Click to hack",

View File

@ -1,7 +1,7 @@
.projectArticleContainer {
min-height: 100vh;
width: 100%;
padding: 3.5rem 2rem;
padding: 4.5rem 2rem;
color: white;
}
@ -18,7 +18,7 @@
.projectTypeSelection {
color: white;
padding: 1.5rem;
padding: 1rem 1.25rem;
font-weight: bolder;
min-width: 10rem;
}
@ -94,7 +94,7 @@
margin: 0.5rem;
width: 100%;
box-sizing: content-box;
overflow-y: scroll;
}
.projectIndividualItemContainer {
@ -139,3 +139,22 @@
gap: 2rem;
justify-content: center;
}
.individualProjectLinks {
color: white;
font-size: 1rem;
padding: 0.1rem 0.5rem;
text-decoration: none;
border-bottom: 1px solid white;
border-radius: 5px;
}
.individualProjectLinks:hover, .individualProjectLinks:visited, .individualProjectLinks:active {
color: white;
text-decoration: none;
}
.individualProjectLinks:hover {
background: white;
color: black;
}