Skip to content

Commit

Permalink
update portfolio
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoBreaux committed Aug 3, 2023
1 parent 64e4e96 commit a0f68f1
Show file tree
Hide file tree
Showing 11 changed files with 369 additions and 293 deletions.
Binary file removed assets/Example Resume.pdf
Binary file not shown.
Binary file removed assets/breatzke.jpg
Binary file not shown.
Binary file added assets/godutch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/guessthecountry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/nutrigoaltracker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/react.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/savetheuniverse.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/theo-resume.pdf
Binary file not shown.
File renamed without changes
613 changes: 341 additions & 272 deletions index.html

Large diffs are not rendered by default.

49 changes: 28 additions & 21 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;800&display=swap");

* {
font-family: Lato;
font-family: "Roboto Slab", serif;
padding: 0;
margin: 0;
box-sizing: border-box;
Expand Down Expand Up @@ -37,11 +39,11 @@ i:hover {
}

.link__hover-effect:after {
content:"";
content: "";
position: absolute;
height: 3px;
width: 0;
bottom: -3px;
bottom: -3px;
right: 0;
transition: all 300ms ease;
}
Expand All @@ -59,7 +61,6 @@ i:hover {
background-color: black;
}


li {
list-style-type: none;
}
Expand Down Expand Up @@ -93,13 +94,15 @@ h1 {

section:nth-child(even) {
background-color: #f8f8f8;
;
}

.section__title {
margin-bottom: 20px;
}

#react {
height: 110px;
}

/* NAVIGATION BAR */
nav {
Expand All @@ -110,7 +113,7 @@ nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 12px ;
padding: 0 12px;
}

.nav__link--list {
Expand Down Expand Up @@ -178,7 +181,7 @@ nav {
transform: scale(0);
}
80% {
transform: scale(1.1) ;
transform: scale(1.1);
}

100% {
Expand All @@ -195,8 +198,9 @@ nav {
animation: fade-up 650ms 400ms backwards;
}

.about-me__info--para {
font-size: 20px;
.about-me-para {
text-align: justify;
font-size: 15px;
margin-bottom: 28px;
animation: fade-up 650ms 600ms backwards;
}
Expand Down Expand Up @@ -308,25 +312,24 @@ nav {
opacity: 1;
}


/* PROJECTS */

.project {
margin-bottom: 135px;
margin-bottom: 30px;
}

.project:last-child {
margin-bottom: 40px;
}


.project__img {
.project-img {
width: 100%;
transition: all 500ms ease;
}

.project__wrapper {
.project-wrapper {
display: flex;
justify-content: center;
box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
border-radius: 20px;
overflow: hidden;
Expand Down Expand Up @@ -356,11 +359,15 @@ nav {
}

.project:hover .project__description {
border-radius: 20px;
background-color: var(--van-gray-5);
padding: 5px;
border: 5px double black;
opacity: 1;
color: whitesmoke;
transform: translateY(-50%);
}


.project__list {
padding-top: 40px;
}
Expand All @@ -376,8 +383,10 @@ nav {
transition: transform 450ms, opacity 300ms;
}

.project__description--title {
.project-description-title {
font-size: 40px;
color: #6030b1;
text-align: left;
}

.project__description--link {
Expand All @@ -390,14 +399,13 @@ nav {
}

.project__description--title,
.project__description--sub-title,
.project-description-subtitle,
.project__description--para,
.project__description--link {
text-align: left;
color: white;
color: black;
}


/* FOOTER */
footer {
background-color: #242424;
Expand Down Expand Up @@ -427,7 +435,7 @@ footer {
.footer__social--link,
.footer__copyright,
.footer__logo--popper {
color: #fff
color: #fff;
}

.footer__logo--popper {
Expand Down Expand Up @@ -509,4 +517,3 @@ footer {
margin: 12px 0;
}
}

0 comments on commit a0f68f1

Please sign in to comment.