diff --git a/css/style.css b/css/style.css index 5710aad..96835a0 100644 --- a/css/style.css +++ b/css/style.css @@ -229,7 +229,8 @@ body { border-radius: 5px; overflow: hidden; box-shadow: 1px 1px 3px #ddd; - background: white; } + background: white; + margin-bottom: 20px; } .slide div .project .cover { height: 15em; background-position: center center; @@ -237,6 +238,9 @@ body { background-repeat: no-repeat; margin: 0px; padding: 1em; } + .slide div .project .cover video { + height: 100%; + width: 100%; } .slide div .project .details { padding: 1em 1em 0 1em; } .slide div .project .details h2 { diff --git a/images/scroll.mp4 b/images/scroll.mp4 new file mode 100644 index 0000000..086e206 Binary files /dev/null and b/images/scroll.mp4 differ diff --git a/index.html b/index.html index 31672f8..e94c8f1 100644 --- a/index.html +++ b/index.html @@ -6,7 +6,6 @@ Chuck Dries - @@ -28,7 +27,9 @@

Chuck Dries

Chuck Dries -

Programmer / Student / Friendly dude +

Programmer + / Student + / Friendly dude

About Me / @@ -36,9 +37,14 @@ Projects

-

Digital Developer, The State Press

-

Computer Science Student, Arizona State University

-

chuck@chuckdries.com / 602.618.0414

+

Digital Developer, + The State Press +

+

Computer Science Student, + Arizona State University +

+

+ chuck@chuckdries.com / 602.618.0414

Github/ LinkedIn / @@ -57,7 +63,9 @@

-

About Me Why I rock 🎶

+

About Me + Why I rock 🎶 +

A brief history of Chuck & tech

I'm a computer science student with experience in photography, digital and print graphic design, teaching, and leading. I've been "into computers" my whole life, but I didn't really get into the technical stuff until middle school, @@ -71,7 +79,9 @@

-
Show skills table +
+ Show skills table

Projects & Experience

More projects coming. For now, check my github or email me.

-
+
@@ -147,7 +159,9 @@

A VR typing game.

The idea started as something of a joke, but after prototyping we realized that we stumbled upon a killer feature: when you're wearing the headset, you can't see your keyboard.

-

View on Devpost

+

+ View on Devpost +

Unity C# Virtual Reality @@ -171,7 +185,9 @@ problems they face. The Lost Our Home pet rescue needed a better way to track volunteers and encourage volunteers to keep coming back. Our solution revolved around easy to access scheduling and volunteer-hour leaderboards to encourage first time volunteers to return.

-

View on GitHub

+

+ View on GitHub +

NodeJS @@ -182,91 +198,124 @@ Hackathon projects
+
+
+ +
+
+

Firebird Robotics Website

+

My First Real Website

+

I was on my high school's robotics team, and we needed a website. This is where I really learned CSS + in depth, I handled the photography and wrote the entire site by hand fresh every year. I no longer + control the content of the site, so instead of linking it directly, I'm linking it as it existed + in two different school years while I was still in charge.

+

+ 2014 School Year +

+

+ 2015 School Year +

+ + + Web +
+
+

© Chuck Dries 2017

+
+
-

© Chuck Dries 2017

-
- -
- + + + \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 5038fdc..53182c6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4646,6 +4646,12 @@ "limiter": "1.1.2" } }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + }, "string-width": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", @@ -4657,12 +4663,6 @@ "strip-ansi": "3.0.1" } }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true - }, "stringstream": { "version": "0.0.5", "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", diff --git a/sass/style.scss b/sass/style.scss index 08aa93e..bbdc525 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -137,6 +137,7 @@ body { div { @extend .widthCenter; /* Project bits */ + //TODO: un-nest this stuff .project { width: $width/2 - 10; padding: 0 0 1em 0; @@ -145,6 +146,7 @@ body { overflow: hidden; box-shadow: 1px 1px 3px #ddd; background: white; + margin-bottom: 20px; .cover { height: 15em; background-position: center center; @@ -152,6 +154,10 @@ body { background-repeat: no-repeat; margin: 0px; padding: 1em; + video { + height: 100%; + width: 100%; + } } .details { padding: 1em 1em 0 1em; @@ -243,6 +249,9 @@ body { font-style: italic; // font-weight: 700; margin-top: 1.7em; } + .grid { + // columns: 2 auto; + } @include textElements() { @extend .widthCenter; } @@ -266,6 +275,9 @@ body { // margin-right: .8em; // margin-left: .8em; } + .grid { + // columns: 1 auto; + } } }