This commit is contained in:
bchiang7
2016-12-09 22:01:39 -05:00
parent f33979af1c
commit 91c02ad92c
9 changed files with 31 additions and 51 deletions

View File

@@ -11,4 +11,4 @@ title: 404
<a href="http://brittanychiang.com">Back to Earth &nbsp;🚀</a> <a href="http://brittanychiang.com">Back to Earth &nbsp;🚀</a>
</div> </div>
</div> </div>
<div class="count-particles"> <span class="js-count-particles">--</span> particles </div> <div class="count-particles"><span class="js-count-particles">--</span> particles </div>

View File

@@ -1,21 +1,9 @@
exclude:
- "Gemfile"
- "Gemfile.lock"
- "README.md"
- "*.gemspec"
- "node_modules"
keep_files:
- "CNAME"
- ".git"
- ".gitignore"
# Site settings # Site settings
baseurl: ""
name: Brittany Chiang name: Brittany Chiang
title: Brittany Chiang | Front End Software Engineer title: Brittany Chiang | Front End Software Engineer
description: Design-minded, detail oriented software engineer passionate about combining beautiful code with beautiful design. description: Design-minded, detail oriented software engineer passionate about combining beautiful code with beautiful design.
url: http://brittanychiang.com # the base hostname & protocol for your site url: http://brittanychiang.com
baseurl: ""
email: brittany.chiang@gmail.com email: brittany.chiang@gmail.com
cover: http://brittanychiang.com/img/og.jpg cover: http://brittanychiang.com/img/og.jpg
logo: http://brittanychiang.com/img/logo-black.png logo: http://brittanychiang.com/img/logo-black.png
@@ -37,5 +25,19 @@ social:
# Build settings # Build settings
markdown: kramdown markdown: kramdown
exclude:
- "Gemfile"
- "Gemfile.lock"
- "*.gemspec"
- "README.md"
- "node_modules"
- "gulpfile.js"
- "package.json"
keep_files:
- "CNAME"
- ".git"
- ".gitignore"
gems: gems:
- jekyll-minifier - jekyll-minifier

View File

@@ -2,11 +2,11 @@ development:
- item: JavaScript - item: JavaScript
- item: HTML5 - item: HTML5
- item: CSS3 - item: CSS3
- item: Sass
- item: NodeJS
- item: Handlebars - item: Handlebars
- item: Backbone - item: Backbone
- item: MongoDB - item: NodeJS
- item: Jekyll
- item: React
- item: Python - item: Python
design: design:

View File

@@ -1,14 +1,14 @@
- position: Northeastern University - position: Northeastern University
company: NU College of Computer &amp; Information Science company: NU College of Computer &amp; Information Science
url: http://www.ccis.northeastern.edu/program/information-science-bs/ url: http://www.ccis.northeastern.edu/program/information-science-bs/
description: Candidate for Bachelor of Science in Information Science with a concentration in Human Computer Interaction (HCI) and a minor in Interaction Design.<br>Expected graduation May 2018 description: Candidate for Bachelor of Science in Information Science with a concentration in Human Computer Interaction (HCI) and a minor in Interaction Design. <strong>Graduating in May 2018.</strong>
sprite: university sprite: university
date: 2013 - Present date: 2013 - Present
- position: HCI Research Assistant - position: HCI Research Assistant
company: NU College of Computer &amp; Information Science company: NU College of Computer &amp; Information Science
url: http://www.ccis.northeastern.edu/ url: http://www.ccis.northeastern.edu/
description: CAssisted a computer science PhD student in the development of a software prototype built with HTML, CSS, JavaScript, and jQuery to facilitate better understanding of parent-child communication preferences in low-SES (Socio-Economic Status) families. Developed remotely to meet weekly deadlines and project checkpoints. description: Assisted a computer science PhD student in the development of a software prototype built with HTML, CSS, JavaScript, and jQuery to facilitate better understanding of parent-child communication preferences in low-SES (Socio-Economic Status) families. Developed remotely to meet weekly deadlines and project checkpoints.
sprite: research sprite: research
date: Mar - May 2015 date: Mar - May 2015

View File

@@ -1,24 +0,0 @@
---
layout: post
title: "Welcome to Jekyll!"
date: 2014-04-20 09:11:03
categories: jekyll update
---
You'll find this post in your `_posts` directory - edit this post and re-build (or run with the `-w` switch) to see your changes!
To add new posts, simply add a file in the `_posts` directory that follows the convention: YYYY-MM-DD-name-of-post.ext.
Jekyll also offers powerful support for code snippets:
{% highlight ruby %}
def print_hi(name)
puts "Hi, #{name}"
end
print_hi('Tom')
#=> prints 'Hi, Tom' to STDOUT.
{% endhighlight %}
Check out the [Jekyll docs][jekyll] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll's GitHub repo][jekyll-gh].
[jekyll-gh]: https://github.com/mojombo/jekyll
[jekyll]: http://jekyllrb.com

View File

@@ -173,9 +173,12 @@
@include MQ(S660) { @include MQ(S660) {
font-size: 14px; font-size: 14px;
padding: 7px 10px; padding: 7px 10px;
position: relative;
top: -5px;
} }
@include MQ(S600) { @include MQ(S600) {
margin: 0 10px 30px 0; margin: 0 10px 30px 0;
top: 0px;
} }
&:hover { &:hover {
background: $blue; background: $blue;

View File

@@ -1381,10 +1381,13 @@
@media only screen and (max-width: 660px) { @media only screen and (max-width: 660px) {
#portfolio-section .portfolio-row .description-title-container .description-buttons a { #portfolio-section .portfolio-row .description-title-container .description-buttons a {
font-size: 14px; font-size: 14px;
padding: 7px 10px; } } padding: 7px 10px;
position: relative;
top: -5px; } }
@media only screen and (max-width: 600px) { @media only screen and (max-width: 600px) {
#portfolio-section .portfolio-row .description-title-container .description-buttons a { #portfolio-section .portfolio-row .description-title-container .description-buttons a {
margin: 0 10px 30px 0; } } margin: 0 10px 30px 0;
top: 0px; } }
#portfolio-section .portfolio-row .description-title-container .description-buttons a:hover { #portfolio-section .portfolio-row .description-title-container .description-buttons a:hover {
background: #00b7c7; background: #00b7c7;
color: #f2f2f2; } color: #f2f2f2; }

View File

@@ -63,7 +63,7 @@ gulp.task('scripts', function() {
gulp.task('watch', function () { gulp.task('watch', function () {
gulp.watch(['_scss/**/*.scss','_scss/*.scss'], ['styles']); gulp.watch(['_scss/**/*.scss','_scss/*.scss'], ['styles']);
gulp.watch(['js/*.js'], ['scripts']); gulp.watch(['js/*.js'], ['scripts']);
gulp.watch(['index.html', '404.html', '_layouts/*.html', '_posts/*', '_includes/*.html', '_drafts/*', '**/*.html'], ['jekyll-rebuild']); gulp.watch(['index.html', '404.html', '_layouts/*.html', '_includes/*.html', '_data/*.yml', '_posts/*', '_drafts/*', '**/*.html'], ['jekyll-rebuild']);
}); });
// ============================= PROD ============================== // // ============================= PROD ============================== //

View File

@@ -10,13 +10,9 @@
"gulp": "^3.8.8", "gulp": "^3.8.8",
"gulp-autoprefixer": "3.1.1", "gulp-autoprefixer": "3.1.1",
"gulp-babel": "^6.1.2", "gulp-babel": "^6.1.2",
"gulp-clean-css": "^2.1.1",
"gulp-cssnano": "^2.1.2",
"gulp-htmlmin": "^3.0.0",
"gulp-imagemin": "^3.1.1", "gulp-imagemin": "^3.1.1",
"gulp-jshint": "^2.0.4", "gulp-jshint": "^2.0.4",
"gulp-sass": "^2.1.0", "gulp-sass": "^2.1.0",
"gulp-uglify": "^2.0.0",
"jshint": "^2.9.4" "jshint": "^2.9.4"
}, },
"repository": { "repository": {