├── _sass
├── _tables.scss
├── _buttons.scss
├── _pagination.scss
├── _placeholders.scss
├── _forms.scss
├── _images.scss
├── _colors.scss
├── _skins.scss
├── _spacing.scss
├── _vars.scss
├── _grid.scss
├── i.scss
├── _links.scss
├── _code.scss
├── _lists.scss
├── _nav.scss
├── _type.scss
├── _syntax.scss
└── _normalize.scss
├── CNAME
├── img
├── city.jpg
├── jkl.jpg
└── photo.jpg
├── archives
└── index.html
├── _layouts
├── default.html
└── post.html
├── README.md
├── _includes
├── _navigation.html
├── _archives.html
├── _google_analytics.html
├── _related_posts.html
├── _head.html
├── _footer.html
└── _navigation_social.html
├── about
└── index.html
├── Rakefile
├── .htaccess
├── index.html
├── _config.yml
├── _posts
├── 2015-01-01-unicode.html
├── 2013-05-06-design-tools.md
├── css
├── 2013-05-20-front-end-vim-commands.md
├── 2013-05-01-essential-vim-plugins.md
├── 2015-manage-vim-2.html
└── 2015-01-01-managing-vim.md
└── css
└── i.css
/_sass/_tables.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/_sass/_buttons.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/_sass/_pagination.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/CNAME:
--------------------------------------------------------------------------------
1 | http://xn--h4hg.ws
2 |
--------------------------------------------------------------------------------
/_sass/_placeholders.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/_sass/_forms.scss:
--------------------------------------------------------------------------------
1 | // None here.
2 |
--------------------------------------------------------------------------------
/_sass/_images.scss:
--------------------------------------------------------------------------------
1 | img {
2 | width:100%;
3 | margin:1em 0;
4 | }
5 |
--------------------------------------------------------------------------------
/img/city.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonlong/x--x/master/img/city.jpg
--------------------------------------------------------------------------------
/img/jkl.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonlong/x--x/master/img/jkl.jpg
--------------------------------------------------------------------------------
/img/photo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonlong/x--x/master/img/photo.jpg
--------------------------------------------------------------------------------
/_sass/_colors.scss:
--------------------------------------------------------------------------------
1 | $grey-dark:#222;
2 | $grey-medium:#777;
3 | $grey-light:#eee;
4 |
5 | $orange:#FF5335;
6 |
--------------------------------------------------------------------------------
/_sass/_skins.scss:
--------------------------------------------------------------------------------
1 | .bb {
2 | border-bottom:1px dotted $grey-light;
3 | }
4 |
5 | .bg-dark {
6 | color:#222;
7 | }
8 |
9 |
--------------------------------------------------------------------------------
/archives/index.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 |