├── .gitignore ├── .sass-cache ├── 3c05df192cd9eed22c41a35ef2fe64824c491777 │ ├── _button.scssc │ ├── _clearfix.scssc │ ├── _directional-values.scssc │ ├── _ellipsis.scssc │ ├── _font-family.scssc │ ├── _hide-text.scssc │ ├── _html5-input-types.scssc │ ├── _position.scssc │ ├── _prefixer.scssc │ ├── _retina-image.scssc │ ├── _size.scssc │ ├── _timing-functions.scssc │ ├── _triangle.scssc │ └── _word-wrap.scssc ├── 67af458907897dc99674f068c84fafbf2d18544e │ ├── _assign.scssc │ ├── _color-lightness.scssc │ ├── _flex-grid.scssc │ ├── _golden-ratio.scssc │ ├── _grid-width.scssc │ ├── _modular-scale.scssc │ ├── _px-to-em.scssc │ ├── _px-to-rem.scssc │ ├── _strip-units.scssc │ ├── _tint-shade.scssc │ ├── _transition-property-name.scssc │ └── _unpack.scssc ├── 683ea3a02a9f9e1aca42715627269602ce5ec214 │ ├── friends.scssc │ ├── global.scssc │ ├── grid.scssc │ ├── media-queries.scssc │ ├── reset.scssc │ ├── variables.scssc │ └── vno.scssc ├── 841f3856813626e85bc1ef55a5fcad6db541edfe │ ├── _convert-units.scssc │ ├── _gradient-positions-parser.scssc │ ├── _is-num.scssc │ ├── _linear-angle-parser.scssc │ ├── _linear-gradient-parser.scssc │ ├── _linear-positions-parser.scssc │ ├── _linear-side-corner-parser.scssc │ ├── _radial-arg-parser.scssc │ ├── _radial-gradient-parser.scssc │ ├── _radial-positions-parser.scssc │ ├── _render-gradients.scssc │ ├── _shape-size-stripper.scssc │ └── _str-to-num.scssc ├── b82c9139cfc252b426416a3dbe74bee9bb818e8c │ ├── _bourbon-deprecated-upcoming.scssc │ └── _bourbon.scssc ├── cdfb7d3dda1d6ea04d753725b6e4351d14bc6f0d │ ├── _prefixer.scssc │ └── _px-to-em.scssc ├── d0606740439d243ee481ece639b54f441301e022 │ ├── _buttons.scssc │ ├── _forms.scssc │ ├── _google-search.scssc │ ├── _icons.scssc │ ├── _navigation.scssc │ ├── _pagination.scssc │ ├── _panels.scssc │ ├── _post-list.scssc │ ├── _read-more.scssc │ └── _time-line.scssc ├── d22f3e582b1888677479f5d59a3c9fa0dc35d393 │ ├── _animation.scssc │ ├── _appearance.scssc │ ├── _backface-visibility.scssc │ ├── _background-image.scssc │ ├── _background.scssc │ ├── _border-image.scssc │ ├── _border-radius.scssc │ ├── _box-sizing.scssc │ ├── _calc.scssc │ ├── _columns.scssc │ ├── _filter.scssc │ ├── _flex-box.scssc │ ├── _font-face.scssc │ ├── _font-feature-settings.scssc │ ├── _hidpi-media-query.scssc │ ├── _hyphens.scssc │ ├── _image-rendering.scssc │ ├── _keyframes.scssc │ ├── _linear-gradient.scssc │ ├── _perspective.scssc │ ├── _placeholder.scssc │ ├── _radial-gradient.scssc │ ├── _transform.scssc │ ├── _transition.scssc │ └── _user-select.scssc └── e37b2b010b477d9961efba047c22cde72282259b │ └── _post.scssc ├── 404.md ├── Gemfile ├── README.md ├── _config.yml ├── _includes ├── comments.html ├── contribute.html ├── external.html ├── footer.html ├── head.html ├── pagination.html ├── read-more.html ├── side-panel.html └── social.html ├── _layouts ├── default.html ├── page.html └── post.html ├── _posts └── 1970-01-01-about.md ├── _sass ├── _base.scss ├── _layout.scss ├── bourbon │ ├── _bourbon-deprecated-upcoming.scss │ ├── _bourbon.scss │ ├── addons │ │ ├── _button.scss │ │ ├── _clearfix.scss │ │ ├── _directional-values.scss │ │ ├── _ellipsis.scss │ │ ├── _font-family.scss │ │ ├── _hide-text.scss │ │ ├── _html5-input-types.scss │ │ ├── _position.scss │ │ ├── _prefixer.scss │ │ ├── _retina-image.scss │ │ ├── _size.scss │ │ ├── _timing-functions.scss │ │ ├── _triangle.scss │ │ └── _word-wrap.scss │ ├── css3 │ │ ├── _animation.scss │ │ ├── _appearance.scss │ │ ├── _backface-visibility.scss │ │ ├── _background-image.scss │ │ ├── _background.scss │ │ ├── _border-image.scss │ │ ├── _border-radius.scss │ │ ├── _box-sizing.scss │ │ ├── _calc.scss │ │ ├── _columns.scss │ │ ├── _filter.scss │ │ ├── _flex-box.scss │ │ ├── _font-face.scss │ │ ├── _font-feature-settings.scss │ │ ├── _hidpi-media-query.scss │ │ ├── _hyphens.scss │ │ ├── _image-rendering.scss │ │ ├── _keyframes.scss │ │ ├── _linear-gradient.scss │ │ ├── _perspective.scss │ │ ├── _placeholder.scss │ │ ├── _radial-gradient.scss │ │ ├── _transform.scss │ │ ├── _transition.scss │ │ └── _user-select.scss │ ├── functions │ │ ├── _assign.scss │ │ ├── _color-lightness.scss │ │ ├── _flex-grid.scss │ │ ├── _golden-ratio.scss │ │ ├── _grid-width.scss │ │ ├── _modular-scale.scss │ │ ├── _px-to-em.scss │ │ ├── _px-to-rem.scss │ │ ├── _strip-units.scss │ │ ├── _tint-shade.scss │ │ ├── _transition-property-name.scss │ │ └── _unpack.scss │ ├── helpers │ │ ├── _convert-units.scss │ │ ├── _gradient-positions-parser.scss │ │ ├── _is-num.scss │ │ ├── _linear-angle-parser.scss │ │ ├── _linear-gradient-parser.scss │ │ ├── _linear-positions-parser.scss │ │ ├── _linear-side-corner-parser.scss │ │ ├── _radial-arg-parser.scss │ │ ├── _radial-gradient-parser.scss │ │ ├── _radial-positions-parser.scss │ │ ├── _render-gradients.scss │ │ ├── _shape-size-stripper.scss │ │ └── _str-to-num.scss │ └── settings │ │ ├── _prefixer.scss │ │ └── _px-to-em.scss ├── components │ ├── _buttons.scss │ ├── _forms.scss │ ├── _google-search.scss │ ├── _icons.scss │ ├── _navigation.scss │ ├── _pagination.scss │ ├── _panels.scss │ ├── _post-list.scss │ ├── _read-more.scss │ └── _time-line.scss ├── friends.scss ├── global.scss ├── grid.scss ├── media-queries.scss ├── reset.scss ├── sections │ └── _post.scss ├── variables.scss └── vno.scss ├── assets ├── images │ ├── alipay.png │ └── wechat.png └── siteinfo │ ├── 404.png │ ├── avatar.jpg │ ├── background-cover.jpg │ ├── favicon.png │ └── search_bg.png ├── atom.xml ├── crossdomain.xml ├── css ├── animate.css ├── main.scss └── tomorrow.css ├── feed.xml ├── index.html ├── js ├── highlight.pack.js └── main.js ├── openserve └── timeline.html /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | /_site/* 3 | /.sass-cache/* -------------------------------------------------------------------------------- /.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_button.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_button.scssc -------------------------------------------------------------------------------- /.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_clearfix.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_clearfix.scssc -------------------------------------------------------------------------------- /.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_directional-values.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_directional-values.scssc -------------------------------------------------------------------------------- /.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_ellipsis.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_ellipsis.scssc -------------------------------------------------------------------------------- /.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_font-family.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_font-family.scssc -------------------------------------------------------------------------------- /.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_hide-text.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_hide-text.scssc -------------------------------------------------------------------------------- /.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_html5-input-types.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_html5-input-types.scssc -------------------------------------------------------------------------------- /.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_position.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_position.scssc -------------------------------------------------------------------------------- /.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_prefixer.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_prefixer.scssc -------------------------------------------------------------------------------- /.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_retina-image.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_retina-image.scssc -------------------------------------------------------------------------------- /.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_size.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_size.scssc -------------------------------------------------------------------------------- /.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_timing-functions.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_timing-functions.scssc -------------------------------------------------------------------------------- /.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_triangle.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_triangle.scssc -------------------------------------------------------------------------------- /.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_word-wrap.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/3c05df192cd9eed22c41a35ef2fe64824c491777/_word-wrap.scssc -------------------------------------------------------------------------------- /.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_assign.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_assign.scssc -------------------------------------------------------------------------------- /.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_color-lightness.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_color-lightness.scssc -------------------------------------------------------------------------------- /.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_flex-grid.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_flex-grid.scssc -------------------------------------------------------------------------------- /.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_golden-ratio.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_golden-ratio.scssc -------------------------------------------------------------------------------- /.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_grid-width.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_grid-width.scssc -------------------------------------------------------------------------------- /.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_modular-scale.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_modular-scale.scssc -------------------------------------------------------------------------------- /.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_px-to-em.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_px-to-em.scssc -------------------------------------------------------------------------------- /.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_px-to-rem.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_px-to-rem.scssc -------------------------------------------------------------------------------- /.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_strip-units.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_strip-units.scssc -------------------------------------------------------------------------------- /.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_tint-shade.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_tint-shade.scssc -------------------------------------------------------------------------------- /.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_transition-property-name.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_transition-property-name.scssc -------------------------------------------------------------------------------- /.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_unpack.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/67af458907897dc99674f068c84fafbf2d18544e/_unpack.scssc -------------------------------------------------------------------------------- /.sass-cache/683ea3a02a9f9e1aca42715627269602ce5ec214/friends.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/683ea3a02a9f9e1aca42715627269602ce5ec214/friends.scssc -------------------------------------------------------------------------------- /.sass-cache/683ea3a02a9f9e1aca42715627269602ce5ec214/global.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/683ea3a02a9f9e1aca42715627269602ce5ec214/global.scssc -------------------------------------------------------------------------------- /.sass-cache/683ea3a02a9f9e1aca42715627269602ce5ec214/grid.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/683ea3a02a9f9e1aca42715627269602ce5ec214/grid.scssc -------------------------------------------------------------------------------- /.sass-cache/683ea3a02a9f9e1aca42715627269602ce5ec214/media-queries.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/683ea3a02a9f9e1aca42715627269602ce5ec214/media-queries.scssc -------------------------------------------------------------------------------- /.sass-cache/683ea3a02a9f9e1aca42715627269602ce5ec214/reset.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/683ea3a02a9f9e1aca42715627269602ce5ec214/reset.scssc -------------------------------------------------------------------------------- /.sass-cache/683ea3a02a9f9e1aca42715627269602ce5ec214/variables.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/683ea3a02a9f9e1aca42715627269602ce5ec214/variables.scssc -------------------------------------------------------------------------------- /.sass-cache/683ea3a02a9f9e1aca42715627269602ce5ec214/vno.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/683ea3a02a9f9e1aca42715627269602ce5ec214/vno.scssc -------------------------------------------------------------------------------- /.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_convert-units.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_convert-units.scssc -------------------------------------------------------------------------------- /.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_gradient-positions-parser.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_gradient-positions-parser.scssc -------------------------------------------------------------------------------- /.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_is-num.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_is-num.scssc -------------------------------------------------------------------------------- /.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_linear-angle-parser.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_linear-angle-parser.scssc -------------------------------------------------------------------------------- /.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_linear-gradient-parser.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_linear-gradient-parser.scssc -------------------------------------------------------------------------------- /.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_linear-positions-parser.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_linear-positions-parser.scssc -------------------------------------------------------------------------------- /.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_linear-side-corner-parser.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_linear-side-corner-parser.scssc -------------------------------------------------------------------------------- /.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_radial-arg-parser.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_radial-arg-parser.scssc -------------------------------------------------------------------------------- /.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_radial-gradient-parser.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_radial-gradient-parser.scssc -------------------------------------------------------------------------------- /.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_radial-positions-parser.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_radial-positions-parser.scssc -------------------------------------------------------------------------------- /.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_render-gradients.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_render-gradients.scssc -------------------------------------------------------------------------------- /.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_shape-size-stripper.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_shape-size-stripper.scssc -------------------------------------------------------------------------------- /.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_str-to-num.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/841f3856813626e85bc1ef55a5fcad6db541edfe/_str-to-num.scssc -------------------------------------------------------------------------------- /.sass-cache/b82c9139cfc252b426416a3dbe74bee9bb818e8c/_bourbon-deprecated-upcoming.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/b82c9139cfc252b426416a3dbe74bee9bb818e8c/_bourbon-deprecated-upcoming.scssc -------------------------------------------------------------------------------- /.sass-cache/b82c9139cfc252b426416a3dbe74bee9bb818e8c/_bourbon.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/b82c9139cfc252b426416a3dbe74bee9bb818e8c/_bourbon.scssc -------------------------------------------------------------------------------- /.sass-cache/cdfb7d3dda1d6ea04d753725b6e4351d14bc6f0d/_prefixer.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/cdfb7d3dda1d6ea04d753725b6e4351d14bc6f0d/_prefixer.scssc -------------------------------------------------------------------------------- /.sass-cache/cdfb7d3dda1d6ea04d753725b6e4351d14bc6f0d/_px-to-em.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/cdfb7d3dda1d6ea04d753725b6e4351d14bc6f0d/_px-to-em.scssc -------------------------------------------------------------------------------- /.sass-cache/d0606740439d243ee481ece639b54f441301e022/_buttons.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d0606740439d243ee481ece639b54f441301e022/_buttons.scssc -------------------------------------------------------------------------------- /.sass-cache/d0606740439d243ee481ece639b54f441301e022/_forms.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d0606740439d243ee481ece639b54f441301e022/_forms.scssc -------------------------------------------------------------------------------- /.sass-cache/d0606740439d243ee481ece639b54f441301e022/_google-search.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d0606740439d243ee481ece639b54f441301e022/_google-search.scssc -------------------------------------------------------------------------------- /.sass-cache/d0606740439d243ee481ece639b54f441301e022/_icons.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d0606740439d243ee481ece639b54f441301e022/_icons.scssc -------------------------------------------------------------------------------- /.sass-cache/d0606740439d243ee481ece639b54f441301e022/_navigation.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d0606740439d243ee481ece639b54f441301e022/_navigation.scssc -------------------------------------------------------------------------------- /.sass-cache/d0606740439d243ee481ece639b54f441301e022/_pagination.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d0606740439d243ee481ece639b54f441301e022/_pagination.scssc -------------------------------------------------------------------------------- /.sass-cache/d0606740439d243ee481ece639b54f441301e022/_panels.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d0606740439d243ee481ece639b54f441301e022/_panels.scssc -------------------------------------------------------------------------------- /.sass-cache/d0606740439d243ee481ece639b54f441301e022/_post-list.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d0606740439d243ee481ece639b54f441301e022/_post-list.scssc -------------------------------------------------------------------------------- /.sass-cache/d0606740439d243ee481ece639b54f441301e022/_read-more.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d0606740439d243ee481ece639b54f441301e022/_read-more.scssc -------------------------------------------------------------------------------- /.sass-cache/d0606740439d243ee481ece639b54f441301e022/_time-line.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d0606740439d243ee481ece639b54f441301e022/_time-line.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_animation.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_animation.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_appearance.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_appearance.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_backface-visibility.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_backface-visibility.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_background-image.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_background-image.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_background.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_background.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_border-image.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_border-image.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_border-radius.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_border-radius.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_box-sizing.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_box-sizing.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_calc.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_calc.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_columns.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_columns.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_filter.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_filter.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_flex-box.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_flex-box.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_font-face.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_font-face.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_font-feature-settings.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_font-feature-settings.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_hidpi-media-query.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_hidpi-media-query.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_hyphens.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_hyphens.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_image-rendering.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_image-rendering.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_keyframes.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_keyframes.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_linear-gradient.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_linear-gradient.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_perspective.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_perspective.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_placeholder.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_placeholder.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_radial-gradient.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_radial-gradient.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_transform.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_transform.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_transition.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_transition.scssc -------------------------------------------------------------------------------- /.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_user-select.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/d22f3e582b1888677479f5d59a3c9fa0dc35d393/_user-select.scssc -------------------------------------------------------------------------------- /.sass-cache/e37b2b010b477d9961efba047c22cde72282259b/_post.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/.sass-cache/e37b2b010b477d9961efba047c22cde72282259b/_post.scssc -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/404.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/comments.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/contribute.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/external.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_includes/external.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_includes/pagination.html -------------------------------------------------------------------------------- /_includes/read-more.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_includes/read-more.html -------------------------------------------------------------------------------- /_includes/side-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_includes/side-panel.html -------------------------------------------------------------------------------- /_includes/social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_includes/social.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_posts/1970-01-01-about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_posts/1970-01-01-about.md -------------------------------------------------------------------------------- /_sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/_base.scss -------------------------------------------------------------------------------- /_sass/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/_layout.scss -------------------------------------------------------------------------------- /_sass/bourbon/_bourbon-deprecated-upcoming.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/_bourbon-deprecated-upcoming.scss -------------------------------------------------------------------------------- /_sass/bourbon/_bourbon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/_bourbon.scss -------------------------------------------------------------------------------- /_sass/bourbon/addons/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/addons/_button.scss -------------------------------------------------------------------------------- /_sass/bourbon/addons/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/addons/_clearfix.scss -------------------------------------------------------------------------------- /_sass/bourbon/addons/_directional-values.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/addons/_directional-values.scss -------------------------------------------------------------------------------- /_sass/bourbon/addons/_ellipsis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/addons/_ellipsis.scss -------------------------------------------------------------------------------- /_sass/bourbon/addons/_font-family.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/addons/_font-family.scss -------------------------------------------------------------------------------- /_sass/bourbon/addons/_hide-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/addons/_hide-text.scss -------------------------------------------------------------------------------- /_sass/bourbon/addons/_html5-input-types.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/addons/_html5-input-types.scss -------------------------------------------------------------------------------- /_sass/bourbon/addons/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/addons/_position.scss -------------------------------------------------------------------------------- /_sass/bourbon/addons/_prefixer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/addons/_prefixer.scss -------------------------------------------------------------------------------- /_sass/bourbon/addons/_retina-image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/addons/_retina-image.scss -------------------------------------------------------------------------------- /_sass/bourbon/addons/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/addons/_size.scss -------------------------------------------------------------------------------- /_sass/bourbon/addons/_timing-functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/addons/_timing-functions.scss -------------------------------------------------------------------------------- /_sass/bourbon/addons/_triangle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/addons/_triangle.scss -------------------------------------------------------------------------------- /_sass/bourbon/addons/_word-wrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/addons/_word-wrap.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_animation.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_appearance.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_appearance.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_backface-visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_backface-visibility.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_background-image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_background-image.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_background.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_border-image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_border-image.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_border-radius.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_box-sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_box-sizing.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_calc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_calc.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_columns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_columns.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_filter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_filter.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_flex-box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_flex-box.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_font-face.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_font-face.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_font-feature-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_font-feature-settings.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_hidpi-media-query.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_hidpi-media-query.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_hyphens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_hyphens.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_image-rendering.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_image-rendering.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_keyframes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_keyframes.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_linear-gradient.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_linear-gradient.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_perspective.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_perspective.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_placeholder.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_placeholder.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_radial-gradient.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_radial-gradient.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_transform.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_transform.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_transition.scss -------------------------------------------------------------------------------- /_sass/bourbon/css3/_user-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/css3/_user-select.scss -------------------------------------------------------------------------------- /_sass/bourbon/functions/_assign.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/functions/_assign.scss -------------------------------------------------------------------------------- /_sass/bourbon/functions/_color-lightness.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/functions/_color-lightness.scss -------------------------------------------------------------------------------- /_sass/bourbon/functions/_flex-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/functions/_flex-grid.scss -------------------------------------------------------------------------------- /_sass/bourbon/functions/_golden-ratio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/functions/_golden-ratio.scss -------------------------------------------------------------------------------- /_sass/bourbon/functions/_grid-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/functions/_grid-width.scss -------------------------------------------------------------------------------- /_sass/bourbon/functions/_modular-scale.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/functions/_modular-scale.scss -------------------------------------------------------------------------------- /_sass/bourbon/functions/_px-to-em.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/functions/_px-to-em.scss -------------------------------------------------------------------------------- /_sass/bourbon/functions/_px-to-rem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/functions/_px-to-rem.scss -------------------------------------------------------------------------------- /_sass/bourbon/functions/_strip-units.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/functions/_strip-units.scss -------------------------------------------------------------------------------- /_sass/bourbon/functions/_tint-shade.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/functions/_tint-shade.scss -------------------------------------------------------------------------------- /_sass/bourbon/functions/_transition-property-name.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/functions/_transition-property-name.scss -------------------------------------------------------------------------------- /_sass/bourbon/functions/_unpack.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/functions/_unpack.scss -------------------------------------------------------------------------------- /_sass/bourbon/helpers/_convert-units.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/helpers/_convert-units.scss -------------------------------------------------------------------------------- /_sass/bourbon/helpers/_gradient-positions-parser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/helpers/_gradient-positions-parser.scss -------------------------------------------------------------------------------- /_sass/bourbon/helpers/_is-num.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/helpers/_is-num.scss -------------------------------------------------------------------------------- /_sass/bourbon/helpers/_linear-angle-parser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/helpers/_linear-angle-parser.scss -------------------------------------------------------------------------------- /_sass/bourbon/helpers/_linear-gradient-parser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/helpers/_linear-gradient-parser.scss -------------------------------------------------------------------------------- /_sass/bourbon/helpers/_linear-positions-parser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/helpers/_linear-positions-parser.scss -------------------------------------------------------------------------------- /_sass/bourbon/helpers/_linear-side-corner-parser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/helpers/_linear-side-corner-parser.scss -------------------------------------------------------------------------------- /_sass/bourbon/helpers/_radial-arg-parser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/helpers/_radial-arg-parser.scss -------------------------------------------------------------------------------- /_sass/bourbon/helpers/_radial-gradient-parser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/helpers/_radial-gradient-parser.scss -------------------------------------------------------------------------------- /_sass/bourbon/helpers/_radial-positions-parser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/helpers/_radial-positions-parser.scss -------------------------------------------------------------------------------- /_sass/bourbon/helpers/_render-gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/helpers/_render-gradients.scss -------------------------------------------------------------------------------- /_sass/bourbon/helpers/_shape-size-stripper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/helpers/_shape-size-stripper.scss -------------------------------------------------------------------------------- /_sass/bourbon/helpers/_str-to-num.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/helpers/_str-to-num.scss -------------------------------------------------------------------------------- /_sass/bourbon/settings/_prefixer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/bourbon/settings/_prefixer.scss -------------------------------------------------------------------------------- /_sass/bourbon/settings/_px-to-em.scss: -------------------------------------------------------------------------------- 1 | $em-base: 16px !default; 2 | -------------------------------------------------------------------------------- /_sass/components/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/components/_buttons.scss -------------------------------------------------------------------------------- /_sass/components/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/components/_forms.scss -------------------------------------------------------------------------------- /_sass/components/_google-search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/components/_google-search.scss -------------------------------------------------------------------------------- /_sass/components/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/components/_icons.scss -------------------------------------------------------------------------------- /_sass/components/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/components/_navigation.scss -------------------------------------------------------------------------------- /_sass/components/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/components/_pagination.scss -------------------------------------------------------------------------------- /_sass/components/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/components/_panels.scss -------------------------------------------------------------------------------- /_sass/components/_post-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/components/_post-list.scss -------------------------------------------------------------------------------- /_sass/components/_read-more.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/components/_read-more.scss -------------------------------------------------------------------------------- /_sass/components/_time-line.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/components/_time-line.scss -------------------------------------------------------------------------------- /_sass/friends.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/friends.scss -------------------------------------------------------------------------------- /_sass/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/global.scss -------------------------------------------------------------------------------- /_sass/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/grid.scss -------------------------------------------------------------------------------- /_sass/media-queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/media-queries.scss -------------------------------------------------------------------------------- /_sass/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/reset.scss -------------------------------------------------------------------------------- /_sass/sections/_post.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/sections/_post.scss -------------------------------------------------------------------------------- /_sass/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/variables.scss -------------------------------------------------------------------------------- /_sass/vno.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/_sass/vno.scss -------------------------------------------------------------------------------- /assets/images/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/assets/images/alipay.png -------------------------------------------------------------------------------- /assets/images/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/assets/images/wechat.png -------------------------------------------------------------------------------- /assets/siteinfo/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/assets/siteinfo/404.png -------------------------------------------------------------------------------- /assets/siteinfo/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/assets/siteinfo/avatar.jpg -------------------------------------------------------------------------------- /assets/siteinfo/background-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/assets/siteinfo/background-cover.jpg -------------------------------------------------------------------------------- /assets/siteinfo/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/assets/siteinfo/favicon.png -------------------------------------------------------------------------------- /assets/siteinfo/search_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/assets/siteinfo/search_bg.png -------------------------------------------------------------------------------- /atom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/atom.xml -------------------------------------------------------------------------------- /crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/crossdomain.xml -------------------------------------------------------------------------------- /css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/css/animate.css -------------------------------------------------------------------------------- /css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/css/main.scss -------------------------------------------------------------------------------- /css/tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/css/tomorrow.css -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/feed.xml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/index.html -------------------------------------------------------------------------------- /js/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/js/highlight.pack.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/js/main.js -------------------------------------------------------------------------------- /openserve: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | jekyll serve -------------------------------------------------------------------------------- /timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GcsSloop/Gcs-Vno-Jekyll/HEAD/timeline.html --------------------------------------------------------------------------------