Skip to content

Commit

Permalink
work grid spacing, blog spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
abbeyperini committed Mar 4, 2021
1 parent 1221d93 commit 3e2de1d
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

## Videos and Screenshots

![gif walkthrough of abbeyperini.dev](/portfolio.gif)
![gif walkthrough of abbeyperini.dev](/portfolioWalkthrough.gif)
![gif walkthrough of mobile abbeyperini.dev](/portfolioMobile.gif)

## Getting Started
Expand Down
Binary file removed portfolio.gif
Binary file not shown.
2 changes: 1 addition & 1 deletion portfolio/src/components/subwork/ThisSite.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { ReactComponent as Github } from '../../images/github.svg';

function ThisSite() {
return (
<div id="this" className="subWork">
<div id="this" className="this-subWork">
<h2 className="subwork_title--primary">AbbeyPerini.dev</h2>
<h3 className="subwork_title--secondary">Professional Website</h3>
<p className="subwork_text">I wasn't happy with my professional portfolio being a template attached to the static personal site
Expand Down
47 changes: 44 additions & 3 deletions portfolio/src/styles/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -162,14 +162,30 @@ nav {
"pic"
"icons"
"text";
grid-template-rows: .25fr .25fr .25fr .25fr 1fr;
grid-template-rows: .1fr .1fr .1fr .1fr 1fr;
place-items: center;
color: var(--dark-text);
background: var(--accent);
box-shadow: 0 8px 32px 0 rgba(0,0,0,.37);
border-radius: 10px;
}

.this-subWork {
display: grid;
grid-template-areas:
"title"
"type"
"icons"
"text";
grid-template-rows: .1fr .1fr .1fr 1fr;
place-items: center;
color: var(--dark-text);
background: var(--accent);
box-shadow: 0 8px 32px 0 rgba(0,0,0,.37);
border-radius: 10px;
margin: 10px 0px 10px 0px;
}

.subwork_title--primary {
grid-area: title;
}
Expand Down Expand Up @@ -305,6 +321,7 @@ nav {
border-radius: 10px;
margin: 10px 0px 10px 0px;
box-shadow: 0 8px 32px 0 rgba(0,0,0,.37);
width: 100%;
}

.blog-preview {
Expand Down Expand Up @@ -522,7 +539,7 @@ a:hover, a:focus {
max-width: 300px;
}

.subWork, .subAbout, .scroll-cropper {
.subWork, .subAbout, .scroll-cropper, .this-subWork {
margin: 10px;
}

Expand Down Expand Up @@ -552,6 +569,10 @@ a:hover, a:focus {
pre {
max-width: 300px;
}

.scroll-cropper {
width: 95%;
}
}

@media screen and (min-width: 525px) {
Expand Down Expand Up @@ -592,12 +613,22 @@ a:hover, a:focus {
margin: 20px;
}

.this-subWork {
grid-template-areas:
"title text"
"type text"
"icons text";
grid-template-rows: .5fr .1fr 1fr;
grid-template-columns: .25fr 1fr;
margin: 20px;
}

.subAbout, .subContact, .blog {
margin: 20px;
}

.scroll-cropper {
width: 98%;
width: 95%;
margin: 20px;
}

Expand Down Expand Up @@ -643,4 +674,14 @@ a:hover, a:focus {
.subContact {
width: 98%
}

.scroll-cropper {
width: 96%;
}
}

@media screen and (min-width: 1200px) {
.scroll-cropper {
width: 98%;
}
}
Binary file added portfolioWalkthrough.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3e2de1d

Please sign in to comment.