Skip to content

Commit 7364228

Browse files
committed
Modified version of end2end
1 parent 1c0ccc5 commit 7364228

File tree

155 files changed

+209
-30
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

155 files changed

+209
-30
lines changed

Gemfile.lock

100644100755
File mode changed.

LICENSE

100644100755
File mode changed.

README.md

100644100755
File mode changed.

Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ require "bundler/setup"
55
require "jekyll"
66

77
# Change your GitHub reponame
8-
GITHUB_REPONAME = "nandomoreirame/end2end"
9-
GITHUB_REPO_BRANCH = "gh-pages"
8+
GITHUB_REPONAME = "liuyang1520/liuyang1520.github.io"
9+
GITHUB_REPO_BRANCH = "master"
1010

1111
SOURCE = "source/"
1212
DEST = "_site"

_config.yml

100644100755
+22-22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build settings
2-
permalink : /blog/:year/:title/
2+
permalink : /:categories/:year/:month/:day/:title/
33
markdown : kramdown
44
highlighter : pygments
55

@@ -14,39 +14,39 @@ sass:
1414
style: compressed # expanded
1515

1616
# SEO settings
17-
title: end2end
18-
description: "A free Jekyll theme for download"
19-
keywords: "Jekyll, theme, free, download, SEO, blog, web"
20-
url: http://nandomoreira.me
21-
baseurl: "/end2end"
17+
# title: end2end
18+
# description: "A free Jekyll theme for download"
19+
# keywords: "Jekyll, theme, free, download, SEO, blog, web"
20+
# url: http://nandomoreira.me
21+
# baseurl: "/end2end"
2222
# baseurl: ""
2323

2424
# google_analytics: UA-52446115-1
25-
repo: http://github.com/nandomoreirame/end2end
26-
disqus_shortname: "fernandomoreira"
27-
disqus_site_shortname: "fernandomoreira"
25+
repo: http://github.com/liuyang1520/liuyang1520.github.io
26+
disqus_shortname: "liuyang1520"
27+
disqus_site_shortname: "liuyang1520"
2828

2929
# Author settings
3030
author:
31-
name : Fernando Moreira
32-
job : Frontend Engineer
33-
bio : "Enthusiast performance, responsive design and usability, always looking for the best project and good coffee."
31+
name : Marvin Liu
32+
job : free programmer
33+
bio : "Eliminate mediocrity, effectuate jocularity." #enumerate, effectuate
3434
thumb : /images/author.jpg
35-
email : nandomoreira.me@gmail.com
36-
url : http://nandomoreira.me
37-
github : http://github.com/nandomoreirame
38-
twitter : http://twitter.com/nandomoreirame
39-
facebook : http://facebook.com/fernando.dev
40-
linkedin : http://linkedin.com/in/nandomoreirame
35+
email : liuyang1520@gmail.com
36+
url : http://liuyang1520.github.io
37+
github : https://github.com/liuyang1520
38+
twitter : http://twitter.com/liuyang1520
39+
facebook : http://facebook.com/liuyang1520
40+
linkedin : http://linkedin.com/in/liuyang1520
4141

4242
# navbar pages
4343
navbar:
4444
- slug: about
4545
title: About
46-
# - slug: resume
47-
# title: Resume
48-
# - slug: skills
49-
# title: Skills
46+
- slug: resume
47+
title: Resume
48+
- slug: skills
49+
title: Skills
5050
- slug: blog
5151
title: Blog
5252

deploy.sh

100644100755
File mode changed.

screenshot.png

100644100755
File mode changed.

source/404.html

100644100755
File mode changed.

source/_includes/article.html

100644100755
File mode changed.

source/_includes/footer.html

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="container">
33
{% include social.html %}
44
<p class="txt-medium-gray">
5-
<small>&copy;{{ site.time | date: '%Y' }} All rights reserved. Made with <a href="http://jekyllrb.com/" target="_blank">Jekyll</a> and ♥</small>
5+
<small>&copy;{{ site.time | date: '%Y' }} All rights reserved. Made with <a href="http://jekyllrb.com/" target="_blank">Jekyll</a></small>
66
</p>
77
</div>
88
</footer>

source/_includes/github-corner.html

100644100755
File mode changed.

source/_includes/head.html

100644100755
File mode changed.

source/_includes/header.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<header class="site-header">
22
<div class="container">
3-
<h1><a href="{{ "/" | prepend: site.baseurl }}">end2<span>end</span></a></h1>
3+
<h1><a href="{{ "/" | prepend: site.baseurl }}">Arkdemic - Marvin Liu</a></h1>
44

55
<button type="button" class="sliding-panel-button">
66
<span></span>
@@ -13,7 +13,7 @@ <h1><a href="{{ "/" | prepend: site.baseurl }}">end2<span>end</span></a></h1>
1313
{% for item in site.navbar %}
1414
<li><a href="{{ '/' | prepend: site.baseurl }}{{ item.slug }}" title="{{ item.title }}">{{ item.title }}</a></li>
1515
{% endfor %}
16-
<li><a href="{{ site.repo }}/archive/master.zip" title="Download">Download</a></li>
16+
<!-- <li><a href="{{ site.repo }}/archive/master.zip" title="Download">Download</a></li> -->
1717
<li><a href="{{ "/feed.xml" | prepend: site.baseurl }}" target="_blank"><i class="icon icon-feed"></i></a></li>
1818
</ul>
1919
</nav>

source/_includes/social.html

100644100755
File mode changed.

source/_layouts/default.html

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
{% include footer.html %}
1313

14-
{% include github-corner.html %}
14+
<!-- {% include github-corner.html %} -->
1515

1616
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
1717
<script>

source/_layouts/home.html

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
{% include head.html %}
44
<body class="home">
55
{{ content }}
6-
{% include github-corner.html %}
6+
<!-- {% include github-corner.html %} -->
77
</body>
88
</html>

source/_layouts/page.html

100644100755
File mode changed.

source/_layouts/post.html

100644100755
File mode changed.

source/_posts/2015-11-12-a-wonderful-serenity-has-taken-possession-of-my-entire-soul.md

100644100755
File mode changed.

source/_posts/2015-11-12-far-far-away-behind-the-word-mountains-far-from-the-countries-vokalia-and-consonantia.md

100644100755
File mode changed.

source/_posts/2015-11-12-lorem-ipsum-dolor-sit-amet-consectetuer-adipiscing-elit.md

100644100755
File mode changed.

source/_posts/2015-11-12-lorem.markdown

100644100755
File mode changed.

source/_posts/2015-11-12-the-quick-brown-fox-jumps-over-a-lazy-dog.md

100644100755
File mode changed.

source/_posts/2015-11-26-lorem-ipsum-dolor-sit.markdown

100644100755
File mode changed.

source/_posts/2015-11-26-welcome-to-jekyll.markdown

100644100755
File mode changed.

source/_scss/_grid-settings (1).scss

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Neat Overrides
2+
// $column: 90px;
3+
// $gutter: 30px;
4+
// $grid-columns: 12;
5+
$max-width: 800px;
6+
7+
// Neat Breakpoints
8+
$mobile-screen: 480px;
9+
$medium-screen: 600px;
10+
$large-screen: 800px;
11+
12+
$mobile: new-breakpoint(max-width $mobile-screen 4);
13+
$mobile-up: new-breakpoint(min-width $mobile-screen 4);
14+
15+
$tablet: new-breakpoint(max-width $medium-screen 4);
16+
$tablet-up: new-breakpoint(min-width $medium-screen 4);
17+
18+
$desktop-up: new-breakpoint(min-width $large-screen 8);
19+
20+
%clearfix {
21+
@include clearfix;
22+
}

source/_scss/_grid-settings.scss

100644100755
File mode changed.

source/_scss/_icons (1).scss

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
$icons-family: 'end2end-icons';
2+
$icons-path: '../fonts/';
3+
$icon-home: "\e900";
4+
$icon-comments: "\e902";
5+
$icon-comment-o: "\e903";
6+
$icon-comments-o: "\e904";
7+
$icon-search: "\e906";
8+
$icon-share: "\e909";
9+
$icon-google-plus: "\e901";
10+
$icon-facebook: "\e90a";
11+
$icon-facebook-rounded: "\e90b";
12+
$icon-twitter: "\e90c";
13+
$icon-twitter-rounded: "\e90d";
14+
$icon-feed: "\e90e";
15+
$icon-github: "\e90f";
16+
$icon-linkedin: "\e905";
17+
18+
@font-face {
19+
font-family: $icons-family;
20+
src:url('#{$icons-path}#{$icons-family}.eot?vs69d0');
21+
src:url('#{$icons-path}#{$icons-family}.eot?vs69d0#iefix') format('embedded-opentype'),
22+
url('#{$icons-path}#{$icons-family}.ttf?vs69d0') format('truetype'),
23+
url('#{$icons-path}#{$icons-family}.woff?vs69d0') format('woff'),
24+
url('#{$icons-path}#{$icons-family}.svg?vs69d0#end2end-icons') format('svg');
25+
font-weight: normal;
26+
font-style: normal;
27+
}
28+
29+
.icon {
30+
font-family: $icons-family !important;
31+
speak: none;
32+
font-style: normal;
33+
font-weight: normal;
34+
font-variant: normal;
35+
text-transform: none;
36+
line-height: 1;
37+
-webkit-font-smoothing: antialiased;
38+
-moz-osx-font-smoothing: grayscale;
39+
}
40+
41+
.icon-home:before { content: $icon-home; }
42+
.icon-comments:before { content: $icon-comments; }
43+
.icon-comment-o:before { content: $icon-comment-o; }
44+
.icon-comments-o:before { content: $icon-comments-o; }
45+
.icon-search:before { content: $icon-search; }
46+
.icon-share:before { content: $icon-share; }
47+
.icon-google-plus:before { content: $icon-google-plus; }
48+
.icon-facebook:before { content: $icon-facebook; }
49+
.icon-facebook-rounded:before { content: $icon-facebook-rounded; }
50+
.icon-twitter:before { content: $icon-twitter; }
51+
.icon-twitter-rounded:before { content: $icon-twitter-rounded; }
52+
.icon-feed:before { content: $icon-feed; }
53+
.icon-github:before { content: $icon-github; }
54+
.icon-linkedin:before { content: $icon-linkedin; }
55+

source/_scss/_icons.scss

100644100755
File mode changed.

source/_scss/_layout.scss

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ body {
5353
}
5454

5555
h1, a {
56-
text-transform: lowercase;
56+
text-transform: uppercase;
5757
}
5858

5959
.navbar {

source/_scss/_syntax (1).scss

+102
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
.highlight {
2+
@extend %clearfix;
3+
padding: 0;
4+
margin: {
5+
top: 1.2em;
6+
bottom: 1.2em;
7+
};
8+
9+
&, .hll, pre, code {
10+
background-color: #272822 !important;
11+
border: none;
12+
}
13+
14+
pre {
15+
margin: 0;
16+
padding: 1.3em;
17+
white-space: pre;
18+
line-height: 23px;
19+
overflow-x: auto;
20+
margin-bottom: 0;
21+
word-break: inherit;
22+
word-wrap: inherit;
23+
24+
&, code {
25+
color: #eeffdd;
26+
}
27+
28+
code {
29+
white-space: pre;
30+
padding: 0 !important;
31+
32+
* {
33+
white-space: nowrap; // this sets all children inside to nowrap
34+
}
35+
}
36+
}
37+
38+
39+
.c { color: #75715e } /* Comment */
40+
.err { color: #f2f1f2 } /* Error */
41+
.k { color: #66d9ef } /* Keyword */
42+
.l { color: #ae81ff } /* Literal */
43+
.n { color: #f8f8f2 } /* Name */
44+
.o { color: #f92672 } /* Operator */
45+
.p { color: #f8f8f2 } /* Punctuation */
46+
.cm { color: #75715e } /* Comment.Multiline */
47+
.cp { color: #75715e } /* Comment.Preproc */
48+
.c1 { color: #75715e } /* Comment.Single */
49+
.cs { color: #75715e } /* Comment.Special */
50+
.ge { font-style: italic } /* Generic.Emph */
51+
.gs { font-weight: bold } /* Generic.Strong */
52+
.kc { color: #66d9ef } /* Keyword.Constant */
53+
.kd { color: #66d9ef } /* Keyword.Declaration */
54+
.kn { color: #f92672 } /* Keyword.Namespace */
55+
.kp { color: #66d9ef } /* Keyword.Pseudo */
56+
.kr { color: #66d9ef } /* Keyword.Reserved */
57+
.kt { color: #66d9ef } /* Keyword.Type */
58+
.ld { color: #e6db74 } /* Literal.Date */
59+
.m { color: #ae81ff } /* Literal.Number */
60+
.s { color: #e6db74 } /* Literal.String */
61+
.na { color: #a6e22e } /* Name.Attribute */
62+
.nb { color: #f8f8f2 } /* Name.Builtin */
63+
.nc { color: #a6e22e } /* Name.Class */
64+
.no { color: #66d9ef } /* Name.Constant */
65+
.nd { color: #a6e22e } /* Name.Decorator */
66+
.ni { color: #f8f8f2 } /* Name.Entity */
67+
.ne { color: #a6e22e } /* Name.Exception */
68+
.nf { color: #a6e22e } /* Name.Function */
69+
.nl { color: #f8f8f2 } /* Name.Label */
70+
.nn { color: #f8f8f2 } /* Name.Namespace */
71+
.nx { color: #a6e22e } /* Name.Other */
72+
.py { color: #f8f8f2 } /* Name.Property */
73+
.nt { color: #f92672 } /* Name.Tag */
74+
.nv { color: #f8f8f2 } /* Name.Variable */
75+
.ow { color: #f92672 } /* Operator.Word */
76+
.w { color: #f8f8f2 } /* Text.Whitespace */
77+
.mf { color: #ae81ff } /* Literal.Number.Float */
78+
.mh { color: #ae81ff } /* Literal.Number.Hex */
79+
.mi { color: #ae81ff } /* Literal.Number.Integer */
80+
.mo { color: #ae81ff } /* Literal.Number.Oct */
81+
.sb { color: #e6db74 } /* Literal.String.Backtick */
82+
.sc { color: #e6db74 } /* Literal.String.Char */
83+
.sd { color: #e6db74 } /* Literal.String.Doc */
84+
.s2 { color: #e6db74 } /* Literal.String.Double */
85+
.se { color: #ae81ff } /* Literal.String.Escape */
86+
.sh { color: #e6db74 } /* Literal.String.Heredoc */
87+
.si { color: #e6db74 } /* Literal.String.Interpol */
88+
.sx { color: #e6db74 } /* Literal.String.Other */
89+
.sr { color: #e6db74 } /* Literal.String.Regex */
90+
.s1 { color: #e6db74 } /* Literal.String.Single */
91+
.ss { color: #e6db74 } /* Literal.String.Symbol */
92+
.bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
93+
.vc { color: #f8f8f2 } /* Name.Variable.Class */
94+
.vg { color: #f8f8f2 } /* Name.Variable.Global */
95+
.vi { color: #f8f8f2 } /* Name.Variable.Instance */
96+
.il { color: #ae81ff } /* Literal.Number.Integer.Long */
97+
98+
// .gh { } /* Generic Heading & Diff Header */
99+
.gu { color: #75715e; } /* Generic.Subheading & Diff Unified/Comment? */
100+
.gd { color: #f92672; } /* Generic.Deleted & Diff Deleted */
101+
.gi { color: #a6e22e; } /* Generic.Inserted & Diff Inserted */
102+
}

source/_scss/_syntax.scss

100644100755
File mode changed.

source/_scss/_variables.scss

100644100755
File mode changed.

source/_scss/base/_base.scss

100644100755
File mode changed.

source/_scss/base/_blockquotes.scss

100644100755
File mode changed.

source/_scss/base/_buttons.scss

100644100755
File mode changed.

source/_scss/base/_forms.scss

100644100755
File mode changed.

source/_scss/base/_helpers.scss

100644100755
File mode changed.

source/_scss/base/_lists.scss

100644100755
File mode changed.

source/_scss/base/_reset.bak.scss

100644100755
File mode changed.

source/_scss/base/_reset.scss

100644100755
File mode changed.

source/_scss/base/_tables.scss

100644100755
File mode changed.

source/_scss/base/_typography.scss

100644100755
File mode changed.

source/_scss/bourbon/_bourbon-deprecated-upcoming.scss

100644100755
File mode changed.

source/_scss/bourbon/_bourbon.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_border-color.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_border-radius.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_border-style.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_border-width.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_buttons.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_clearfix.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_ellipsis.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_font-stacks.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_hide-text.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_margin.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_padding.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_position.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_prefixer.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_retina-image.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_size.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_text-inputs.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_timing-functions.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_triangle.scss

100644100755
File mode changed.

source/_scss/bourbon/addons/_word-wrap.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_animation.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_appearance.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_backface-visibility.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_background-image.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_background.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_border-image.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_calc.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_columns.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_filter.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_flex-box.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_font-face.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_font-feature-settings.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_hidpi-media-query.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_hyphens.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_image-rendering.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_keyframes.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_linear-gradient.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_perspective.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_placeholder.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_radial-gradient.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_selection.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_text-decoration.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_transform.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_transition.scss

100644100755
File mode changed.

source/_scss/bourbon/css3/_user-select.scss

100644100755
File mode changed.

source/_scss/bourbon/functions/_assign-inputs.scss

100644100755
File mode changed.

source/_scss/bourbon/functions/_contains-falsy.scss

100644100755
File mode changed.

source/_scss/bourbon/functions/_contains.scss

100644100755
File mode changed.

source/_scss/bourbon/functions/_is-length.scss

100644100755
File mode changed.

source/_scss/bourbon/functions/_is-light.scss

100644100755
File mode changed.

source/_scss/bourbon/functions/_is-number.scss

100644100755
File mode changed.

source/_scss/bourbon/functions/_is-size.scss

100644100755
File mode changed.

source/_scss/bourbon/functions/_modular-scale.scss

100644100755
File mode changed.

source/_scss/bourbon/functions/_px-to-em.scss

100644100755
File mode changed.

source/_scss/bourbon/functions/_px-to-rem.scss

100644100755
File mode changed.

source/_scss/bourbon/functions/_shade.scss

100644100755
File mode changed.

source/_scss/bourbon/functions/_strip-units.scss

100644100755
File mode changed.

source/_scss/bourbon/functions/_tint.scss

100644100755
File mode changed.

source/_scss/bourbon/functions/_transition-property-name.scss

100644100755
File mode changed.

source/_scss/bourbon/functions/_unpack.scss

100644100755
File mode changed.

source/_scss/bourbon/helpers/_convert-units.scss

100644100755
File mode changed.

source/_scss/bourbon/helpers/_directional-values.scss

100644100755
File mode changed.

source/_scss/bourbon/helpers/_font-source-declaration.scss

100644100755
File mode changed.

source/_scss/bourbon/helpers/_gradient-positions-parser.scss

100644100755
File mode changed.

source/_scss/bourbon/helpers/_linear-angle-parser.scss

100644100755
File mode changed.

source/_scss/bourbon/helpers/_linear-gradient-parser.scss

100644100755
File mode changed.

source/_scss/bourbon/helpers/_linear-positions-parser.scss

100644100755
File mode changed.

source/_scss/bourbon/helpers/_linear-side-corner-parser.scss

100644100755
File mode changed.

source/_scss/bourbon/helpers/_radial-arg-parser.scss

100644100755
File mode changed.

source/_scss/bourbon/helpers/_radial-gradient-parser.scss

100644100755
File mode changed.

source/_scss/bourbon/helpers/_radial-positions-parser.scss

100644100755
File mode changed.

source/_scss/bourbon/helpers/_render-gradients.scss

100644100755
File mode changed.

source/_scss/bourbon/helpers/_shape-size-stripper.scss

100644100755
File mode changed.

source/_scss/bourbon/helpers/_str-to-num.scss

100644100755
File mode changed.

source/_scss/bourbon/settings/_asset-pipeline.scss

100644100755
File mode changed.

source/_scss/bourbon/settings/_prefixer.scss

100644100755
File mode changed.

source/_scss/bourbon/settings/_px-to-em.scss

100644100755
File mode changed.

source/_scss/main.scss

100644100755
File mode changed.

source/_scss/neat/_neat-helpers.scss

100644100755
File mode changed.

source/_scss/neat/_neat.scss

100644100755
File mode changed.

source/_scss/neat/functions/_new-breakpoint.scss

100644100755
File mode changed.

source/_scss/neat/functions/_private.scss

100644100755
File mode changed.

source/_scss/neat/grid/_box-sizing.scss

100644100755
File mode changed.

source/_scss/neat/grid/_direction-context.scss

100644100755
File mode changed.

source/_scss/neat/grid/_display-context.scss

100644100755
File mode changed.

source/_scss/neat/grid/_fill-parent.scss

100644100755
File mode changed.

source/_scss/neat/grid/_media.scss

100644100755
File mode changed.

source/_scss/neat/grid/_omega.scss

100644100755
File mode changed.

source/_scss/neat/grid/_outer-container.scss

100644100755
File mode changed.

source/_scss/neat/grid/_pad.scss

100644100755
File mode changed.

source/_scss/neat/grid/_private.scss

100644100755
File mode changed.

source/_scss/neat/grid/_row.scss

100644100755
File mode changed.

source/_scss/neat/grid/_shift.scss

100644100755
File mode changed.

source/_scss/neat/grid/_span-columns.scss

100644100755
File mode changed.

source/_scss/neat/grid/_to-deprecate.scss

100644100755
File mode changed.

source/_scss/neat/grid/_visual-grid.scss

100644100755
File mode changed.

source/_scss/neat/settings/_disable-warnings.scss

100644100755
File mode changed.

source/_scss/neat/settings/_grid.scss

100644100755
File mode changed.

source/_scss/neat/settings/_visual-grid.scss

100644100755
File mode changed.

source/about.md

100644100755
File mode changed.

source/blog/index.html

100644100755
File mode changed.

source/feed.xml

100644100755
File mode changed.

source/fonts/end2end-icons.eot

100644100755
File mode changed.

source/fonts/end2end-icons.svg

100644100755
File mode changed.

source/fonts/end2end-icons.ttf

100644100755
File mode changed.

source/fonts/end2end-icons.woff

100644100755
File mode changed.

source/images/author.jpg

100755100644
-15 KB

source/images/bg-pattern.png

100644100755
File mode changed.

source/index.html

100644100755
File mode changed.

source/resume.html

100644100755
File mode changed.

travisGemfile

100644100755
File mode changed.

0 commit comments

Comments
 (0)