Skip to content

Commit

Permalink
remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanwiemer committed Jan 17, 2018
1 parent ec33cea commit 8363179
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 43 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "rw",
"description": "Digital portfolio for Ryan Wiemer",
"version": "0.0.1",
"version": "1.0.0",
"repository": "https://github.com/ryanwiemer/rw",
"author": "Ryan Wiemer <ryan@ryanwiemer.com>",
"dependencies": {
Expand Down
6 changes: 3 additions & 3 deletions src/layouts/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ const TemplateWrapper = ({ children, location }) => (
<link rel="icon" href={favicon} />
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
<meta name="description" content="RW" />
<meta property="og:title" content="RW" />
<meta name="description" content="Ryan Wiemer is an account manager based in Oakland, CA working in the web industry." />
<meta property="og:title" content="Ryan Wiemer" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="RW" />
<meta property="og:site_name" content="Ryan Wiemer" />
<meta property="og:url" content="https://www.ryanwiemer.com" />
</Helmet>

Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const IndexPage = ({data}) => {
</div>

<div className="bio__container cell cell--two-thirds">
<h2>Hi. <span className="emoji emoji--hand">👋</span></h2>
<h2>Hi. <span>👋</span></h2>
<div className="bio__text cell" dangerouslySetInnerHTML={{ __html: page.bio.childMarkdownRemark.html }}/>
<ul className="bio__social">
<li><a target="_blank" href="https://github.com/ryanwiemer">GitHub</a></li>
Expand Down
5 changes: 0 additions & 5 deletions src/stylesheets/base/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,6 @@
box-shadow: none;
}

::-webkit-input-placeholder {color: gray;} /* Chrome/Opera/Safari */
::-moz-placeholder {color: gray; opacity: 1;} /* Firefox 19+ */
:-ms-input-placeholder {color: gray;} /* IE 10+ */
:-moz-placeholder {color: gray; opacity: 1;} /* Firefox 18- */

.btn {
font-size: 1em;
text-transform: capitalize;
Expand Down
14 changes: 0 additions & 14 deletions src/stylesheets/base/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,13 @@
align-items: flex-start;
}

.grid--container {
max-width: $max;
margin: 0 auto;
padding: 1em;
@include bp(medium) {
padding: 2em;
}
}

.grid--wrap {
&:after {
content: "";
flex: auto;
}
}

.grid--stretch {
align-items: stretch !important; /* align items in Cross Axis */
align-content: stretch !important; /* Extra space in Cross Axis */
}

.grid--center {
justify-content: center !important;
flex-flow: column !important;
Expand Down
10 changes: 10 additions & 0 deletions src/stylesheets/base/_main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,20 @@ body {
}
}

//Text Selection Color
::-moz-selection {
background-color: lighten(gray, 5%);
}

::selection {
background-color: lighten(gray, 5%);
}

//Progress Bar
#nprogress .peg {
display: none !important; //Removes glow effect
}

#nprogress .bar {
height: 4px !important; //Increases the height of the bar itself
}
11 changes: 1 addition & 10 deletions src/stylesheets/base/_paragraphs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,7 @@

.container p {
font-size: 1em;
line-height: 1.65;
line-height: 1.6;
max-width: 600px;
margin: 0 0 2em 0;
}

.container .strike {
text-decoration: line-through;
color: gray;
}

.container strong, .container em {
font-weight: bold;
}
2 changes: 1 addition & 1 deletion src/stylesheets/objects/_404.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

.error {
text-align: center;
min-height: 400px;
min-height: 570px;
@include bp(medium) {
min-height: calc(100vh - 16em);
}
Expand Down
8 changes: 0 additions & 8 deletions src/stylesheets/objects/_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
* Project *
* --------- */

.project {

}

.project__cover {
position: relative;
margin: 0 0 2em 0;
Expand Down Expand Up @@ -57,10 +53,6 @@
}
}

.project__links {

}

.project__links a {
margin: 0 1em 0 0;
@include bp(medium) {
Expand Down

0 comments on commit 8363179

Please sign in to comment.