Began stylysing Project Cards
This commit is contained in:
parent
4866f7d58d
commit
4ed0a812ce
@ -38,6 +38,13 @@
|
|||||||
background: var(--background-color);
|
background: var(--background-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
width: 100vw;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
color: #646cff;
|
color: #646cff;
|
||||||
|
|||||||
@ -0,0 +1,33 @@
|
|||||||
|
.experience-card {
|
||||||
|
width: 300px;
|
||||||
|
height: 450px;
|
||||||
|
border: 1px solid white;
|
||||||
|
border-radius: 15px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
padding: 0 10px 0 10px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.experience-title {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.experience-title h2 {
|
||||||
|
text-align: start;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.experience-date { }
|
||||||
|
|
||||||
|
.experience-info {}
|
||||||
|
|
||||||
|
.experience-longname {}
|
||||||
|
|
||||||
|
.experience-location {}
|
||||||
|
|
||||||
|
.experience-description {}
|
||||||
@ -9,17 +9,22 @@ export default function ExperienceCard({props}: {props: Experience}) {
|
|||||||
return (
|
return (
|
||||||
<div className="experience-card">
|
<div className="experience-card">
|
||||||
<div className="experience-title">
|
<div className="experience-title">
|
||||||
|
<h2>Project</h2>
|
||||||
|
<div className={"experience-location"}>{props.location}</div>
|
||||||
|
</div>
|
||||||
|
<hr/>
|
||||||
<h2>{props.name}</h2>
|
<h2>{props.name}</h2>
|
||||||
|
{props.longName && <div className={"experience-longname"}>{props.longName}</div>}
|
||||||
|
<hr/>
|
||||||
|
<div className="experience-info">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div className={"experience-description"}>{props.description}</div>
|
||||||
|
<hr/>
|
||||||
<div className={"experience-date"}>
|
<div className={"experience-date"}>
|
||||||
<h3>{props.from}</h3>
|
<h3>{props.from}</h3>
|
||||||
{props.to && <h3>{props.to}</h3>}
|
{props.to && <h3>{props.to}</h3>}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="experience-info">
|
|
||||||
{props.longName && <div className={"experience-logname"}>{props.longName}</div>}
|
|
||||||
<div className={"experience-location"}>{props.location}</div>
|
|
||||||
</div>
|
|
||||||
<div className={"experience-description"}>{props.description}</div>
|
|
||||||
</div>
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user