Created project sections front end with dummy images and text for now. Not mobile compatible yet.
This commit is contained in:
@@ -33,14 +33,6 @@ section#curriculumvitae .timeline {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/*section#curriculumvitae .timeline#edu {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
section#curriculumvitae .timeline#work {
|
||||
margin-left: auto;
|
||||
}*/
|
||||
|
||||
section#curriculumvitae #work {
|
||||
margin: 0 auto 0 8rem;
|
||||
}
|
||||
@@ -50,7 +42,6 @@ section#curriculumvitae .timeline:before {
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
border: 4px var(--timelineItemBrdr) solid;
|
||||
/*border-bottom: 4;*/
|
||||
right: 194px;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
+5
-2
@@ -2,10 +2,11 @@
|
||||
@import "/node_modules/normalize.css/normalize.css";
|
||||
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Share+Tech+Mono&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap");
|
||||
/*local imports*/
|
||||
@import "templateStyles.css";
|
||||
@import "nav.css";
|
||||
@import "about.css";
|
||||
@import "cv.css";
|
||||
@import "templateStyles.css";
|
||||
@import "projects.css";
|
||||
|
||||
/****** Root Style ******/
|
||||
:root {
|
||||
@@ -18,7 +19,9 @@
|
||||
--timelineItemBrdr: hsla(var(--mainHue), var(--mainSat), calc(var(--mainLight) - 20%), 1);
|
||||
--errorDefault: hsla(0, var(--mainSat), var(--mainLight), 1);
|
||||
--grey: hsla(0, 0%, 39%, 1);
|
||||
--mutedGrey: hsla(0, 0%, 67%, 0.58);
|
||||
--notAvailableDefault: hsla(0, 0%, 39%, 1);
|
||||
--notAvailableHover: hsla(0, 0%,32%, 1);
|
||||
--mutedGrey: hsla(0, 0%, 78%, 1);
|
||||
--mutedBlack: hsla(0, 0%, 0%, 0.25);
|
||||
--navBack: hsla(0, 0%, 30%, 1);
|
||||
|
||||
|
||||
+1
-1
@@ -86,7 +86,7 @@ header div button {
|
||||
}
|
||||
|
||||
i.fa-chevron-down {
|
||||
color: var(--mutedGrey);
|
||||
color: hsla(0, 0%, 67%, 0.58);
|
||||
font-size: 3.75em;
|
||||
margin: 1.5rem 0;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,94 @@
|
||||
/*** Projects Styles ****/
|
||||
|
||||
section#projects {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
padding: 0 2.5rem;
|
||||
border-bottom: 2px solid var(--mutedGrey);
|
||||
}
|
||||
|
||||
section#projects .mainProj, section#projects .otherProj {
|
||||
width: 50%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 1em;
|
||||
}
|
||||
|
||||
|
||||
section#projects .mainProj {
|
||||
justify-content: center;
|
||||
border-right: 2px solid var(--mutedGrey);
|
||||
padding: 0 2.5em 5em 0;
|
||||
}
|
||||
|
||||
section#projects .mainProj img, section#projects .otherProj .oProjItem img {
|
||||
|
||||
-webkit-border-radius: 10px;
|
||||
-moz-border-radius: 10px;
|
||||
border-radius: 10px;
|
||||
display: block;
|
||||
margin: 1em auto;
|
||||
}
|
||||
|
||||
section#projects .mainProj img {
|
||||
max-width: 30rem;
|
||||
}
|
||||
|
||||
section#projects .mainProj .flexRow {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 4em;
|
||||
}
|
||||
|
||||
section#projects .mainProj .flexCol {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2.5em;
|
||||
}
|
||||
|
||||
section#projects .otherProj > a{
|
||||
margin: 5rem 0;
|
||||
}
|
||||
|
||||
section#projects .otherProj > div{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2em;
|
||||
}
|
||||
|
||||
section#projects .otherProj > div .oProjItem {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
margin: 0 auto;
|
||||
width: 90%;
|
||||
border: 1px solid var(--grey);
|
||||
gap: 1em;
|
||||
box-shadow: 0 6px 4px 0 var(--mutedBlack);
|
||||
-webkit-border-radius: 10px;
|
||||
-moz-border-radius: 10px;
|
||||
border-radius: 10px;
|
||||
padding: 0 1em;
|
||||
}
|
||||
|
||||
section#projects .otherProj > div .oProjItem:nth-child(2) {
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
|
||||
section#projects .otherProj .oProjItem img {
|
||||
max-width: 10rem;
|
||||
}
|
||||
|
||||
section#projects .oProjItem .flexCol div:nth-child(2) {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: flex-start;
|
||||
gap: 3em;
|
||||
margin-left: 2em;
|
||||
}
|
||||
|
||||
section#projects .flexCol div:nth-child(2) .btn {
|
||||
padding: 0.25em 0.5em;
|
||||
}
|
||||
@@ -56,6 +56,17 @@ a.btnOutline {
|
||||
color: var(--primaryDefault);
|
||||
}
|
||||
|
||||
a.btnPrimary[disabled] {
|
||||
pointer-events: none;
|
||||
background: var(--notAvailableDefault);
|
||||
border: 0.3215em solid var(--notAvailableDefault);
|
||||
}
|
||||
|
||||
a.btnPrimary[disabled]:hover {
|
||||
background: var(--notAvailableHover);
|
||||
border: 0.3215em solid var(--notAvailableHover);
|
||||
}
|
||||
|
||||
a.btnPrimary:hover, form input[type="submit"]:hover {
|
||||
background: var(--primaryHover);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user