├── public ├── favicon.ico ├── images │ ├── about.jpg │ ├── blog-1.jpg │ ├── blog-2.jpg │ ├── blog-3.jpg │ ├── blog-4.jpg │ ├── img-1.jpg │ ├── img-2.jpg │ ├── img-3.jpg │ ├── img-4.jpg │ ├── img-5.jpg │ ├── img-6.jpg │ └── img_bg.jpg ├── fonts │ ├── icomoon │ │ ├── icomoon.eot │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── sass │ ├── bootstrap │ │ ├── mixins │ │ │ ├── _center-block.scss │ │ │ ├── _opacity.scss │ │ │ ├── _size.scss │ │ │ ├── _text-overflow.scss │ │ │ ├── _tab-focus.scss │ │ │ ├── _resize.scss │ │ │ ├── _labels.scss │ │ │ ├── _progress-bar.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _reset-filter.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _alerts.scss │ │ │ ├── _nav-vertical-align.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _pagination.scss │ │ │ ├── _responsive-visibility.scss │ │ │ ├── _panels.scss │ │ │ ├── _hide-text.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _list-group.scss │ │ │ ├── _table-row.scss │ │ │ ├── _image.scss │ │ │ ├── _buttons.scss │ │ │ ├── _grid-framework.scss │ │ │ └── _forms.scss │ │ ├── _wells.scss │ │ ├── _breadcrumbs.scss │ │ ├── _responsive-embed.scss │ │ ├── _close.scss │ │ ├── _component-animations.scss │ │ ├── _utilities.scss │ │ ├── _thumbnails.scss │ │ ├── _pager.scss │ │ ├── _mixins.scss │ │ ├── _media.scss │ │ ├── _jumbotron.scss │ │ ├── _labels.scss │ │ ├── _badges.scss │ │ ├── _code.scss │ │ ├── _grid.scss │ │ ├── _alerts.scss │ │ ├── _progress-bars.scss │ │ ├── _pagination.scss │ │ └── _print.scss │ ├── _bootstrap-sprockets.scss │ ├── _bootstrap-compass.scss │ ├── _bootstrap-mincer.scss │ └── bootstrap.scss ├── manifest.json ├── css │ └── owl.theme.default.min.css ├── index.html └── js │ └── google_map.js ├── .gitattributes ├── template └── jackson │ ├── images │ ├── loc.png │ ├── about.jpg │ ├── blog-1.jpg │ ├── blog-2.jpg │ ├── blog-3.jpg │ ├── blog-4.jpg │ ├── img-1.jpg │ ├── img-2.jpg │ ├── img-3.jpg │ ├── img-4.jpg │ ├── img-5.jpg │ ├── img-6.jpg │ ├── img_bg_1.jpg │ ├── img_bg_2.jpg │ ├── img_bg_3.jpg │ └── cover_bg_1.jpg │ ├── fonts │ ├── icomoon │ │ ├── icomoon.eot │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── .sass-cache │ ├── 2722f109f69056be553b2b68afe598daeebb4db4 │ │ ├── _close.scssc │ │ ├── _code.scssc │ │ ├── _forms.scssc │ │ ├── _grid.scssc │ │ ├── _media.scssc │ │ ├── _navs.scssc │ │ ├── _pager.scssc │ │ ├── _print.scssc │ │ ├── _type.scssc │ │ ├── _wells.scssc │ │ ├── _alerts.scssc │ │ ├── _badges.scssc │ │ ├── _buttons.scssc │ │ ├── _labels.scssc │ │ ├── _mixins.scssc │ │ ├── _modals.scssc │ │ ├── _navbar.scssc │ │ ├── _panels.scssc │ │ ├── _tables.scssc │ │ ├── _tooltip.scssc │ │ ├── _carousel.scssc │ │ ├── _dropdowns.scssc │ │ ├── _jumbotron.scssc │ │ ├── _list-group.scssc │ │ ├── _normalize.scssc │ │ ├── _pagination.scssc │ │ ├── _popovers.scssc │ │ ├── _thumbnails.scssc │ │ ├── _utilities.scssc │ │ ├── _variables.scssc │ │ ├── _breadcrumbs.scssc │ │ ├── _input-groups.scssc │ │ ├── _scaffolding.scssc │ │ ├── _button-groups.scssc │ │ ├── _progress-bars.scssc │ │ ├── _responsive-embed.scssc │ │ ├── _component-animations.scssc │ │ └── _responsive-utilities.scssc │ ├── 4c530804770d6947d8d9b3be2b263f881811e6ec │ │ ├── _forms.scssc │ │ ├── _grid.scssc │ │ ├── _image.scssc │ │ ├── _size.scssc │ │ ├── _alerts.scssc │ │ ├── _buttons.scssc │ │ ├── _labels.scssc │ │ ├── _opacity.scssc │ │ ├── _panels.scssc │ │ ├── _resize.scssc │ │ ├── _clearfix.scssc │ │ ├── _gradients.scssc │ │ ├── _list-group.scssc │ │ ├── _pagination.scssc │ │ ├── _reset-text.scssc │ │ ├── _tab-focus.scssc │ │ ├── _table-row.scssc │ │ ├── _nav-divider.scssc │ │ ├── _progress-bar.scssc │ │ ├── _reset-filter.scssc │ │ ├── _border-radius.scssc │ │ ├── _grid-framework.scssc │ │ ├── _text-emphasis.scssc │ │ ├── _text-overflow.scssc │ │ ├── _vendor-prefixes.scssc │ │ ├── _background-variant.scssc │ │ ├── _nav-vertical-align.scssc │ │ ├── _responsive-visibility.scssc │ │ └── _center-block.scssc │ ├── 4c70a636372d70e6d55a7b4ea2b55da857d3381f │ │ ├── _close.scssc │ │ ├── _code.scssc │ │ ├── _forms.scssc │ │ ├── _grid.scssc │ │ ├── _media.scssc │ │ ├── _navs.scssc │ │ ├── _pager.scssc │ │ ├── _print.scssc │ │ ├── _type.scssc │ │ ├── _wells.scssc │ │ ├── _alerts.scssc │ │ ├── _badges.scssc │ │ ├── _buttons.scssc │ │ ├── _labels.scssc │ │ ├── _mixins.scssc │ │ ├── _modals.scssc │ │ ├── _navbar.scssc │ │ ├── _panels.scssc │ │ ├── _tables.scssc │ │ ├── _tooltip.scssc │ │ ├── _carousel.scssc │ │ ├── _dropdowns.scssc │ │ ├── _jumbotron.scssc │ │ ├── _list-group.scssc │ │ ├── _normalize.scssc │ │ ├── _pagination.scssc │ │ ├── _popovers.scssc │ │ ├── _thumbnails.scssc │ │ ├── _utilities.scssc │ │ ├── _variables.scssc │ │ ├── _breadcrumbs.scssc │ │ ├── _input-groups.scssc │ │ ├── _scaffolding.scssc │ │ ├── _button-groups.scssc │ │ ├── _progress-bars.scssc │ │ ├── _responsive-embed.scssc │ │ ├── _component-animations.scssc │ │ └── _responsive-utilities.scssc │ ├── 622bee1680e77a88a09c5bb8c2729ad5564df547 │ │ ├── _forms.scssc │ │ ├── _grid.scssc │ │ ├── _image.scssc │ │ ├── _size.scssc │ │ ├── _alerts.scssc │ │ ├── _buttons.scssc │ │ ├── _labels.scssc │ │ ├── _opacity.scssc │ │ ├── _panels.scssc │ │ ├── _resize.scssc │ │ ├── _clearfix.scssc │ │ ├── _gradients.scssc │ │ ├── _list-group.scssc │ │ ├── _pagination.scssc │ │ ├── _reset-text.scssc │ │ ├── _tab-focus.scssc │ │ ├── _table-row.scssc │ │ ├── _nav-divider.scssc │ │ ├── _progress-bar.scssc │ │ ├── _reset-filter.scssc │ │ ├── _border-radius.scssc │ │ ├── _grid-framework.scssc │ │ ├── _text-emphasis.scssc │ │ ├── _text-overflow.scssc │ │ ├── _vendor-prefixes.scssc │ │ ├── _background-variant.scssc │ │ ├── _nav-vertical-align.scssc │ │ ├── _responsive-visibility.scssc │ │ └── _center-block.scssc │ ├── 6ba3269dc359f109f415edd45b5a5117f51926bf │ │ ├── style.scssc │ │ └── bootstrap.scssc │ ├── 997c313c0c939f4e2270747dfd014c0ef42411f7 │ │ ├── style.scssc │ │ └── bootstrap.scssc │ ├── afd9e85c4f3cba1c674cc86d57bef7f1e06bd242 │ │ ├── style.scssc │ │ └── bootstrap.scssc │ ├── b372c61865b131a75989798ec9ffa624fda3c99f │ │ ├── _close.scssc │ │ ├── _code.scssc │ │ ├── _forms.scssc │ │ ├── _grid.scssc │ │ ├── _media.scssc │ │ ├── _navs.scssc │ │ ├── _pager.scssc │ │ ├── _print.scssc │ │ ├── _type.scssc │ │ ├── _wells.scssc │ │ ├── _alerts.scssc │ │ ├── _badges.scssc │ │ ├── _buttons.scssc │ │ ├── _labels.scssc │ │ ├── _mixins.scssc │ │ ├── _modals.scssc │ │ ├── _navbar.scssc │ │ ├── _panels.scssc │ │ ├── _tables.scssc │ │ ├── _tooltip.scssc │ │ ├── _carousel.scssc │ │ ├── _dropdowns.scssc │ │ ├── _jumbotron.scssc │ │ ├── _list-group.scssc │ │ ├── _normalize.scssc │ │ ├── _pagination.scssc │ │ ├── _popovers.scssc │ │ ├── _thumbnails.scssc │ │ ├── _utilities.scssc │ │ ├── _variables.scssc │ │ ├── _breadcrumbs.scssc │ │ ├── _input-groups.scssc │ │ ├── _scaffolding.scssc │ │ ├── _button-groups.scssc │ │ ├── _progress-bars.scssc │ │ ├── _responsive-embed.scssc │ │ ├── _component-animations.scssc │ │ └── _responsive-utilities.scssc │ └── e3f0abe5a50a2c3ad008c358edf35823ae2707ca │ │ ├── _forms.scssc │ │ ├── _grid.scssc │ │ ├── _image.scssc │ │ ├── _size.scssc │ │ ├── _alerts.scssc │ │ ├── _buttons.scssc │ │ ├── _labels.scssc │ │ ├── _opacity.scssc │ │ ├── _panels.scssc │ │ ├── _resize.scssc │ │ ├── _clearfix.scssc │ │ ├── _gradients.scssc │ │ ├── _list-group.scssc │ │ ├── _pagination.scssc │ │ ├── _reset-text.scssc │ │ ├── _tab-focus.scssc │ │ ├── _table-row.scssc │ │ ├── _nav-divider.scssc │ │ ├── _progress-bar.scssc │ │ ├── _reset-filter.scssc │ │ ├── _border-radius.scssc │ │ ├── _grid-framework.scssc │ │ ├── _text-emphasis.scssc │ │ ├── _text-overflow.scssc │ │ ├── _vendor-prefixes.scssc │ │ ├── _background-variant.scssc │ │ ├── _nav-vertical-align.scssc │ │ ├── _responsive-visibility.scssc │ │ └── _center-block.scssc │ ├── sass │ ├── bootstrap │ │ ├── mixins │ │ │ ├── _center-block.scss │ │ │ ├── _opacity.scss │ │ │ ├── _size.scss │ │ │ ├── _text-overflow.scss │ │ │ ├── _tab-focus.scss │ │ │ ├── _resize.scss │ │ │ ├── _labels.scss │ │ │ ├── _progress-bar.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _reset-filter.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _alerts.scss │ │ │ ├── _nav-vertical-align.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _pagination.scss │ │ │ ├── _responsive-visibility.scss │ │ │ ├── _panels.scss │ │ │ ├── _hide-text.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _list-group.scss │ │ │ ├── _table-row.scss │ │ │ ├── _image.scss │ │ │ ├── _buttons.scss │ │ │ └── _grid-framework.scss │ │ ├── _wells.scss │ │ ├── _breadcrumbs.scss │ │ ├── _responsive-embed.scss │ │ ├── _close.scss │ │ ├── _component-animations.scss │ │ ├── _utilities.scss │ │ ├── _thumbnails.scss │ │ ├── _pager.scss │ │ ├── _mixins.scss │ │ ├── _media.scss │ │ ├── _jumbotron.scss │ │ ├── _labels.scss │ │ ├── _badges.scss │ │ ├── _code.scss │ │ ├── _grid.scss │ │ ├── _alerts.scss │ │ ├── _progress-bars.scss │ │ ├── _pagination.scss │ │ └── _print.scss │ ├── _bootstrap-sprockets.scss │ ├── _bootstrap-compass.scss │ ├── _bootstrap-mincer.scss │ └── bootstrap.scss │ ├── css │ └── owl.theme.default.min.css │ └── js │ └── google_map.js ├── .travis.yml ├── src ├── App.test.js ├── index.css ├── index.js ├── App.css ├── App.js ├── logo.svg └── components │ ├── blog.jsx │ └── sidebar.jsx ├── .gitignore ├── README.md ├── package.json └── LICENSE /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/images/about.jpg -------------------------------------------------------------------------------- /public/images/blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/images/blog-1.jpg -------------------------------------------------------------------------------- /public/images/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/images/blog-2.jpg -------------------------------------------------------------------------------- /public/images/blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/images/blog-3.jpg -------------------------------------------------------------------------------- /public/images/blog-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/images/blog-4.jpg -------------------------------------------------------------------------------- /public/images/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/images/img-1.jpg -------------------------------------------------------------------------------- /public/images/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/images/img-2.jpg -------------------------------------------------------------------------------- /public/images/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/images/img-3.jpg -------------------------------------------------------------------------------- /public/images/img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/images/img-4.jpg -------------------------------------------------------------------------------- /public/images/img-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/images/img-5.jpg -------------------------------------------------------------------------------- /public/images/img-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/images/img-6.jpg -------------------------------------------------------------------------------- /public/images/img_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/images/img_bg.jpg -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | template/jackson/*.css linguist-vendored 2 | template/* linguist-vendored 3 | *.css 4 | -------------------------------------------------------------------------------- /public/fonts/icomoon/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/fonts/icomoon/icomoon.eot -------------------------------------------------------------------------------- /public/fonts/icomoon/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/fonts/icomoon/icomoon.ttf -------------------------------------------------------------------------------- /template/jackson/images/loc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/images/loc.png -------------------------------------------------------------------------------- /public/fonts/icomoon/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/fonts/icomoon/icomoon.woff -------------------------------------------------------------------------------- /template/jackson/images/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/images/about.jpg -------------------------------------------------------------------------------- /template/jackson/images/blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/images/blog-1.jpg -------------------------------------------------------------------------------- /template/jackson/images/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/images/blog-2.jpg -------------------------------------------------------------------------------- /template/jackson/images/blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/images/blog-3.jpg -------------------------------------------------------------------------------- /template/jackson/images/blog-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/images/blog-4.jpg -------------------------------------------------------------------------------- /template/jackson/images/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/images/img-1.jpg -------------------------------------------------------------------------------- /template/jackson/images/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/images/img-2.jpg -------------------------------------------------------------------------------- /template/jackson/images/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/images/img-3.jpg -------------------------------------------------------------------------------- /template/jackson/images/img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/images/img-4.jpg -------------------------------------------------------------------------------- /template/jackson/images/img-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/images/img-5.jpg -------------------------------------------------------------------------------- /template/jackson/images/img-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/images/img-6.jpg -------------------------------------------------------------------------------- /template/jackson/images/img_bg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/images/img_bg_1.jpg -------------------------------------------------------------------------------- /template/jackson/images/img_bg_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/images/img_bg_2.jpg -------------------------------------------------------------------------------- /template/jackson/images/img_bg_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/images/img_bg_3.jpg -------------------------------------------------------------------------------- /template/jackson/images/cover_bg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/images/cover_bg_1.jpg -------------------------------------------------------------------------------- /template/jackson/fonts/icomoon/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/fonts/icomoon/icomoon.eot -------------------------------------------------------------------------------- /template/jackson/fonts/icomoon/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/fonts/icomoon/icomoon.ttf -------------------------------------------------------------------------------- /template/jackson/fonts/icomoon/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/fonts/icomoon/icomoon.woff -------------------------------------------------------------------------------- /public/fonts/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/fonts/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/fonts/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/fonts/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/public/fonts/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /template/jackson/fonts/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/fonts/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /template/jackson/fonts/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/fonts/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /template/jackson/fonts/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/fonts/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /template/jackson/fonts/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/fonts/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_center-block.scss: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | @mixin center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_close.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_close.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_code.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_code.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_forms.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_forms.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_grid.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_grid.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_media.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_media.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_navs.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_navs.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_pager.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_pager.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_print.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_print.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_type.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_type.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_wells.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_wells.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_forms.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_forms.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_grid.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_grid.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_image.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_image.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_size.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_size.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_close.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_close.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_code.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_code.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_forms.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_forms.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_grid.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_grid.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_media.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_media.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_navs.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_navs.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_pager.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_pager.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_print.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_print.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_type.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_type.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_wells.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_wells.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_forms.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_forms.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_grid.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_grid.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_image.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_image.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_size.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_size.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/6ba3269dc359f109f415edd45b5a5117f51926bf/style.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/6ba3269dc359f109f415edd45b5a5117f51926bf/style.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/997c313c0c939f4e2270747dfd014c0ef42411f7/style.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/997c313c0c939f4e2270747dfd014c0ef42411f7/style.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/afd9e85c4f3cba1c674cc86d57bef7f1e06bd242/style.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/afd9e85c4f3cba1c674cc86d57bef7f1e06bd242/style.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_close.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_close.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_code.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_code.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_forms.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_forms.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_grid.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_grid.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_media.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_media.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_navs.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_navs.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_pager.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_pager.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_print.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_print.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_type.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_type.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_wells.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_wells.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_forms.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_forms.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_grid.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_grid.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_image.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_image.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_size.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_size.scssc -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_center-block.scss: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | @mixin center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_alerts.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_alerts.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_badges.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_badges.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_buttons.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_buttons.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_labels.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_labels.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_mixins.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_mixins.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_modals.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_modals.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_navbar.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_navbar.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_panels.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_panels.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_tables.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_tables.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_tooltip.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_tooltip.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_alerts.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_alerts.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_buttons.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_buttons.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_labels.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_labels.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_opacity.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_opacity.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_panels.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_panels.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_resize.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_resize.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_alerts.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_alerts.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_badges.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_badges.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_buttons.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_buttons.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_labels.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_labels.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_mixins.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_mixins.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_modals.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_modals.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_navbar.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_navbar.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_panels.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_panels.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_tables.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_tables.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_tooltip.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_tooltip.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_alerts.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_alerts.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_buttons.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_buttons.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_labels.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_labels.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_opacity.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_opacity.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_panels.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_panels.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_resize.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_resize.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_alerts.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_alerts.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_badges.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_badges.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_buttons.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_buttons.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_labels.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_labels.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_mixins.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_mixins.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_modals.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_modals.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_navbar.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_navbar.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_panels.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_panels.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_tables.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_tables.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_tooltip.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_tooltip.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_alerts.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_alerts.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_buttons.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_buttons.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_labels.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_labels.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_opacity.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_opacity.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_panels.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_panels.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_resize.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_resize.scssc -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_opacity.scss: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | @mixin opacity($opacity) { 4 | opacity: $opacity; 5 | // IE8 filter 6 | $opacity-ie: ($opacity * 100); 7 | filter: alpha(opacity=$opacity-ie); 8 | } 9 | -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_carousel.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_carousel.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_dropdowns.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_dropdowns.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_jumbotron.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_jumbotron.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_list-group.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_list-group.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_normalize.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_normalize.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_pagination.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_pagination.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_popovers.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_popovers.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_thumbnails.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_thumbnails.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_utilities.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_utilities.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_variables.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_variables.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_clearfix.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_clearfix.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_gradients.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_gradients.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_list-group.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_list-group.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_pagination.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_pagination.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_reset-text.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_reset-text.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_tab-focus.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_tab-focus.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_table-row.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_table-row.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_carousel.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_carousel.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_dropdowns.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_dropdowns.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_jumbotron.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_jumbotron.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_list-group.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_list-group.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_normalize.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_normalize.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_pagination.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_pagination.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_popovers.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_popovers.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_thumbnails.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_thumbnails.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_utilities.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_utilities.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_variables.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_variables.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_clearfix.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_clearfix.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_gradients.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_gradients.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_list-group.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_list-group.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_pagination.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_pagination.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_reset-text.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_reset-text.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_tab-focus.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_tab-focus.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_table-row.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_table-row.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/6ba3269dc359f109f415edd45b5a5117f51926bf/bootstrap.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/6ba3269dc359f109f415edd45b5a5117f51926bf/bootstrap.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/997c313c0c939f4e2270747dfd014c0ef42411f7/bootstrap.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/997c313c0c939f4e2270747dfd014c0ef42411f7/bootstrap.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/afd9e85c4f3cba1c674cc86d57bef7f1e06bd242/bootstrap.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/afd9e85c4f3cba1c674cc86d57bef7f1e06bd242/bootstrap.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_carousel.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_carousel.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_dropdowns.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_dropdowns.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_jumbotron.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_jumbotron.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_list-group.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_list-group.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_normalize.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_normalize.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_pagination.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_pagination.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_popovers.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_popovers.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_thumbnails.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_thumbnails.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_utilities.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_utilities.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_variables.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_variables.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_clearfix.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_clearfix.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_gradients.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_gradients.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_list-group.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_list-group.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_pagination.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_pagination.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_reset-text.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_reset-text.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_tab-focus.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_tab-focus.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_table-row.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_table-row.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_breadcrumbs.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_breadcrumbs.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_input-groups.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_input-groups.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_scaffolding.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_scaffolding.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_nav-divider.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_nav-divider.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_progress-bar.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_progress-bar.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_reset-filter.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_reset-filter.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_breadcrumbs.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_breadcrumbs.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_input-groups.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_input-groups.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_scaffolding.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_scaffolding.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_nav-divider.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_nav-divider.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_progress-bar.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_progress-bar.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_reset-filter.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_reset-filter.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_breadcrumbs.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_breadcrumbs.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_input-groups.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_input-groups.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_scaffolding.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_scaffolding.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_nav-divider.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_nav-divider.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_progress-bar.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_progress-bar.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_reset-filter.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_reset-filter.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_button-groups.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_button-groups.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_progress-bars.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_progress-bars.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_border-radius.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_border-radius.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_grid-framework.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_grid-framework.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_text-emphasis.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_text-emphasis.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_text-overflow.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_text-overflow.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_vendor-prefixes.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_vendor-prefixes.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_button-groups.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_button-groups.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_progress-bars.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_progress-bars.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_border-radius.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_border-radius.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_grid-framework.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_grid-framework.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_text-emphasis.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_text-emphasis.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_text-overflow.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_text-overflow.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_vendor-prefixes.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_vendor-prefixes.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_button-groups.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_button-groups.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_progress-bars.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_progress-bars.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_border-radius.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_border-radius.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_grid-framework.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_grid-framework.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_text-emphasis.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_text-emphasis.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_text-overflow.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_text-overflow.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_vendor-prefixes.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_vendor-prefixes.scssc -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_opacity.scss: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | @mixin opacity($opacity) { 4 | opacity: $opacity; 5 | // IE8 filter 6 | $opacity-ie: ($opacity * 100); 7 | filter: alpha(opacity=$opacity-ie); 8 | } 9 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height) { 4 | width: $width; 5 | height: $height; 6 | } 7 | 8 | @mixin square($size) { 9 | @include size($size, $size); 10 | } 11 | -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_responsive-embed.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_responsive-embed.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_responsive-embed.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_responsive-embed.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_responsive-embed.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_responsive-embed.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_component-animations.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_component-animations.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_responsive-utilities.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/2722f109f69056be553b2b68afe598daeebb4db4/_responsive-utilities.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_background-variant.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_background-variant.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_nav-vertical-align.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_nav-vertical-align.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_component-animations.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_component-animations.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_responsive-utilities.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c70a636372d70e6d55a7b4ea2b55da857d3381f/_responsive-utilities.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_background-variant.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_background-variant.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_nav-vertical-align.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_nav-vertical-align.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_component-animations.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_component-animations.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_responsive-utilities.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/b372c61865b131a75989798ec9ffa624fda3c99f/_responsive-utilities.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_background-variant.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_background-variant.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_nav-vertical-align.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_nav-vertical-align.scssc -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_text-overflow.scss: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_responsive-visibility.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_responsive-visibility.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_responsive-visibility.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_responsive-visibility.scssc -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_responsive-visibility.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarochiya/me/HEAD/template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_responsive-visibility.scssc -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height) { 4 | width: $width; 5 | height: $height; 6 | } 7 | 8 | @mixin square($size) { 9 | @include size($size, $size); 10 | } 11 | -------------------------------------------------------------------------------- /public/sass/_bootstrap-sprockets.scss: -------------------------------------------------------------------------------- 1 | @function twbs-font-path($path) { 2 | @return font-path($path); 3 | } 4 | 5 | @function twbs-image-path($path) { 6 | @return image-path($path); 7 | } 8 | 9 | $bootstrap-sass-asset-helper: true; 10 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_tab-focus.scss: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | @mixin tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_text-overflow.scss: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /public/sass/_bootstrap-compass.scss: -------------------------------------------------------------------------------- 1 | @function twbs-font-path($path) { 2 | @return font-url($path, true); 3 | } 4 | 5 | @function twbs-image-path($path) { 6 | @return image-url($path, true); 7 | } 8 | 9 | $bootstrap-sass-asset-helper: true; 10 | -------------------------------------------------------------------------------- /template/jackson/sass/_bootstrap-sprockets.scss: -------------------------------------------------------------------------------- 1 | @function twbs-font-path($path) { 2 | @return font-path($path); 3 | } 4 | 5 | @function twbs-image-path($path) { 6 | @return image-path($path); 7 | } 8 | 9 | $bootstrap-sass-asset-helper: true; 10 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | resize: $direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_tab-focus.scss: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | @mixin tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_labels.scss: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | @mixin label-variant($color) { 4 | background-color: $color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken($color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /template/jackson/sass/_bootstrap-compass.scss: -------------------------------------------------------------------------------- 1 | @function twbs-font-path($path) { 2 | @return font-url($path, true); 3 | } 4 | 5 | @function twbs-image-path($path) { 6 | @return image-url($path, true); 7 | } 8 | 9 | $bootstrap-sass-asset-helper: true; 10 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | resize: $direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_labels.scss: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | @mixin label-variant($color) { 4 | background-color: $color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken($color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_progress-bar.scss: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | @mixin progress-bar-variant($color) { 4 | background-color: $color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | @include gradient-striped; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "stable" 4 | cache: 5 | directories: 6 | - node_modules 7 | script: 8 | - npm run build 9 | deploy: 10 | provider: pages 11 | skip_cleanup: true 12 | github_token: $github_token 13 | local_dir: build 14 | on: 15 | branch: master -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_progress-bar.scss: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | @mixin progress-bar-variant($color) { 4 | background-color: $color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | @include gradient-striped; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import App from './App'; 4 | 5 | it('renders without crashing', () => { 6 | const div = document.createElement('div'); 7 | ReactDOM.render(, div); 8 | ReactDOM.unmountComponentAtNode(div); 9 | }); 10 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | // [converter] $parent hack 4 | @mixin text-emphasis-variant($parent, $color) { 5 | #{$parent} { 6 | color: $color; 7 | } 8 | a#{$parent}:hover, 9 | a#{$parent}:focus { 10 | color: darken($color, 10%); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_reset-filter.scss: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | @mixin reset-filter() { 7 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 8 | } 9 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | // [converter] $parent hack 4 | @mixin text-emphasis-variant($parent, $color) { 5 | #{$parent} { 6 | color: $color; 7 | } 8 | a#{$parent}:hover, 9 | a#{$parent}:focus { 10 | color: darken($color, 10%); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | @mixin nav-divider($color: #e5e5e5) { 6 | height: 1px; 7 | margin: (($line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: $color; 10 | } 11 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_reset-filter.scss: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | @mixin reset-filter() { 7 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 8 | } 9 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_background-variant.scss: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | // [converter] $parent hack 4 | @mixin bg-variant($parent, $color) { 5 | #{$parent} { 6 | background-color: $color; 7 | } 8 | a#{$parent}:hover, 9 | a#{$parent}:focus { 10 | background-color: darken($color, 10%); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | @mixin nav-divider($color: #e5e5e5) { 6 | height: 1px; 7 | margin: (($line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: $color; 10 | } 11 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_background-variant.scss: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | // [converter] $parent hack 4 | @mixin bg-variant($parent, $color) { 5 | #{$parent} { 6 | background-color: $color; 7 | } 8 | a#{$parent}:hover, 9 | a#{$parent}:focus { 10 | background-color: darken($color, 10%); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_alerts.scss: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | @mixin alert-variant($background, $border, $text-color) { 4 | background-color: $background; 5 | border-color: $border; 6 | color: $text-color; 7 | 8 | hr { 9 | border-top-color: darken($border, 5%); 10 | } 11 | .alert-link { 12 | color: darken($text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_alerts.scss: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | @mixin alert-variant($background, $border, $text-color) { 4 | background-color: $background; 5 | border-color: $border; 6 | color: $text-color; 7 | 8 | hr { 9 | border-top-color: darken($border, 5%); 10 | } 11 | .alert-link { 12 | color: darken($text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "Portfolio app", 3 | "name": "Portfolio app made with react as part of 'weekend projects' initiative", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | } 10 | ], 11 | "start_url": ".", 12 | "display": "standalone", 13 | "theme_color": "#000000", 14 | "background_color": "#ffffff" 15 | } 16 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | padding: 0; 4 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", 5 | "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", 6 | sans-serif; 7 | -webkit-font-smoothing: antialiased; 8 | -moz-osx-font-smoothing: grayscale; 9 | } 10 | 11 | code { 12 | font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", 13 | monospace; 14 | } 15 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_nav-vertical-align.scss: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | @mixin navbar-vertical-align($element-height) { 7 | margin-top: (($navbar-height - $element-height) / 2); 8 | margin-bottom: (($navbar-height - $element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_nav-vertical-align.scss: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | @mixin navbar-vertical-align($element-height) { 7 | margin-top: (($navbar-height - $element-height) / 2); 8 | margin-bottom: (($navbar-height - $element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import './index.css'; 4 | import App from './App'; 5 | import * as serviceWorker from './serviceWorker'; 6 | 7 | ReactDOM.render(, document.getElementById('root')); 8 | 9 | // If you want your app to work offline and load faster, you can change 10 | // unregister() to register() below. Note this comes with some pitfalls. 11 | // Learn more about service workers: http://bit.ly/CRA-PWA 12 | serviceWorker.unregister(); 13 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- 1 | @mixin reset-text() { 2 | font-family: $font-family-base; 3 | // We deliberately do NOT reset font-size. 4 | font-style: normal; 5 | font-weight: normal; 6 | letter-spacing: normal; 7 | line-break: auto; 8 | line-height: $line-height-base; 9 | text-align: left; // Fallback for where `start` is not supported 10 | text-align: start; 11 | text-decoration: none; 12 | text-shadow: none; 13 | text-transform: none; 14 | white-space: normal; 15 | word-break: normal; 16 | word-spacing: normal; 17 | word-wrap: normal; 18 | } 19 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- 1 | @mixin reset-text() { 2 | font-family: $font-family-base; 3 | // We deliberately do NOT reset font-size. 4 | font-style: normal; 5 | font-weight: normal; 6 | letter-spacing: normal; 7 | line-break: auto; 8 | line-height: $line-height-base; 9 | text-align: left; // Fallback for where `start` is not supported 10 | text-align: start; 11 | text-decoration: none; 12 | text-shadow: none; 13 | text-transform: none; 14 | white-space: normal; 15 | word-break: normal; 16 | word-spacing: normal; 17 | word-wrap: normal; 18 | } 19 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | @mixin border-top-radius($radius) { 4 | border-top-right-radius: $radius; 5 | border-top-left-radius: $radius; 6 | } 7 | @mixin border-right-radius($radius) { 8 | border-bottom-right-radius: $radius; 9 | border-top-right-radius: $radius; 10 | } 11 | @mixin border-bottom-radius($radius) { 12 | border-bottom-right-radius: $radius; 13 | border-bottom-left-radius: $radius; 14 | } 15 | @mixin border-left-radius($radius) { 16 | border-bottom-left-radius: $radius; 17 | border-top-left-radius: $radius; 18 | } 19 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | @mixin border-top-radius($radius) { 4 | border-top-right-radius: $radius; 5 | border-top-left-radius: $radius; 6 | } 7 | @mixin border-right-radius($radius) { 8 | border-bottom-right-radius: $radius; 9 | border-top-right-radius: $radius; 10 | } 11 | @mixin border-bottom-radius($radius) { 12 | border-bottom-right-radius: $radius; 13 | border-bottom-left-radius: $radius; 14 | } 15 | @mixin border-left-radius($radius) { 16 | border-bottom-left-radius: $radius; 17 | border-top-left-radius: $radius; 18 | } 19 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PORTFOLIO-APP 2 | [![Build Status](https://travis-ci.org/dbarochiya/me.svg?branch=master)](https://travis-ci.org/dbarochiya/me) 3 | 4 | This is the implementaion code for the blog I have written '[How to create your portfolio website using React.js](https://medium.freecodecamp.org/portfolio-app-using-react-618814e35843)' 5 | - To run this project follow these steps , 6 | - clone the repo using `git clone` 7 | - navigate to folder `portfolio-app` 8 | - run `npm install` to instal node modules 9 | - run `npm start` to start the service on `localhost:3000` 10 | 11 | ##### deployed app : https://dbarochiya.github.io/me/ 12 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | @mixin pagination-size($padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) { 4 | > li { 5 | > a, 6 | > span { 7 | padding: $padding-vertical $padding-horizontal; 8 | font-size: $font-size; 9 | line-height: $line-height; 10 | } 11 | &:first-child { 12 | > a, 13 | > span { 14 | @include border-left-radius($border-radius); 15 | } 16 | } 17 | &:last-child { 18 | > a, 19 | > span { 20 | @include border-right-radius($border-radius); 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | 5 | .App-logo { 6 | animation: App-logo-spin infinite 20s linear; 7 | height: 40vmin; 8 | pointer-events: none; 9 | } 10 | 11 | .App-header { 12 | background-color: #282c34; 13 | min-height: 100vh; 14 | display: flex; 15 | flex-direction: column; 16 | align-items: center; 17 | justify-content: center; 18 | font-size: calc(10px + 2vmin); 19 | color: white; 20 | } 21 | 22 | .App-link { 23 | color: #61dafb; 24 | } 25 | 26 | @keyframes App-logo-spin { 27 | from { 28 | transform: rotate(0deg); 29 | } 30 | to { 31 | transform: rotate(360deg); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_responsive-visibility.scss: -------------------------------------------------------------------------------- 1 | // Responsive utilities 2 | 3 | // 4 | // More easily include all the states for responsive-utilities.less. 5 | // [converter] $parent hack 6 | @mixin responsive-visibility($parent) { 7 | #{$parent} { 8 | display: block !important; 9 | } 10 | table#{$parent} { display: table !important; } 11 | tr#{$parent} { display: table-row !important; } 12 | th#{$parent}, 13 | td#{$parent} { display: table-cell !important; } 14 | } 15 | 16 | // [converter] $parent hack 17 | @mixin responsive-invisibility($parent) { 18 | #{$parent} { 19 | display: none !important; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | @mixin pagination-size($padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) { 4 | > li { 5 | > a, 6 | > span { 7 | padding: $padding-vertical $padding-horizontal; 8 | font-size: $font-size; 9 | line-height: $line-height; 10 | } 11 | &:first-child { 12 | > a, 13 | > span { 14 | @include border-left-radius($border-radius); 15 | } 16 | } 17 | &:last-child { 18 | > a, 19 | > span { 20 | @include border-right-radius($border-radius); 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_responsive-visibility.scss: -------------------------------------------------------------------------------- 1 | // Responsive utilities 2 | 3 | // 4 | // More easily include all the states for responsive-utilities.less. 5 | // [converter] $parent hack 6 | @mixin responsive-visibility($parent) { 7 | #{$parent} { 8 | display: block !important; 9 | } 10 | table#{$parent} { display: table !important; } 11 | tr#{$parent} { display: table-row !important; } 12 | th#{$parent}, 13 | td#{$parent} { display: table-cell !important; } 14 | } 15 | 16 | // [converter] $parent hack 17 | @mixin responsive-invisibility($parent) { 18 | #{$parent} { 19 | display: none !important; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_panels.scss: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | @mixin panel-variant($border, $heading-text-color, $heading-bg-color, $heading-border) { 4 | border-color: $border; 5 | 6 | & > .panel-heading { 7 | color: $heading-text-color; 8 | background-color: $heading-bg-color; 9 | border-color: $heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: $border; 13 | } 14 | .badge { 15 | color: $heading-bg-color; 16 | background-color: $heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: $border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_wells.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: $well-bg; 12 | border: 1px solid $well-border; 13 | border-radius: $border-radius-base; 14 | @include box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: $border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: $border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_panels.scss: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | @mixin panel-variant($border, $heading-text-color, $heading-bg-color, $heading-border) { 4 | border-color: $border; 5 | 6 | & > .panel-heading { 7 | color: $heading-text-color; 8 | background-color: $heading-bg-color; 9 | border-color: $heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: $border; 13 | } 14 | .badge { 15 | color: $heading-bg-color; 16 | background-color: $heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: $border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import './App.css'; 3 | import Sidebar from './components/sidebar' 4 | import Introduction from './components/introduction' 5 | import About from './components/about' 6 | import Timeline from './components/timeline' 7 | 8 | class App extends Component { 9 | render() { 10 | return ( 11 |
12 |
13 | 14 |
15 | 16 | 17 | 18 |
19 |
20 |
21 | ); 22 | } 23 | } 24 | 25 | export default App; 26 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_wells.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: $well-bg; 12 | border: 1px solid $well-border; 13 | border-radius: $border-radius-base; 14 | @include box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: $border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: $border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_hide-text.scss: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | // 3 | // Heads up! v3 launched with only `.hide-text()`, but per our pattern for 4 | // mixins being reused as classes with the same name, this doesn't hold up. As 5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 6 | // 7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 | 9 | // Deprecated as of v3.0.1 (will be removed in v4) 10 | @mixin hide-text() { 11 | font: 0/0 a; 12 | color: transparent; 13 | text-shadow: none; 14 | background-color: transparent; 15 | border: 0; 16 | } 17 | 18 | // New mixin to use as of v3.0.1 19 | @mixin text-hide() { 20 | @include hide-text; 21 | } 22 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_hide-text.scss: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | // 3 | // Heads up! v3 launched with only `.hide-text()`, but per our pattern for 4 | // mixins being reused as classes with the same name, this doesn't hold up. As 5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 6 | // 7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 | 9 | // Deprecated as of v3.0.1 (will be removed in v4) 10 | @mixin hide-text() { 11 | font: 0/0 a; 12 | color: transparent; 13 | text-shadow: none; 14 | background-color: transparent; 15 | border: 0; 16 | } 17 | 18 | // New mixin to use as of v3.0.1 19 | @mixin text-hide() { 20 | @include hide-text; 21 | } 22 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_breadcrumbs.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: $breadcrumb-padding-vertical $breadcrumb-padding-horizontal; 8 | margin-bottom: $line-height-computed; 9 | list-style: none; 10 | background-color: $breadcrumb-bg; 11 | border-radius: $border-radius-base; 12 | 13 | > li { 14 | display: inline-block; 15 | 16 | + li:before { 17 | content: "#{$breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space 18 | padding: 0 5px; 19 | color: $breadcrumb-color; 20 | } 21 | } 22 | 23 | > .active { 24 | color: $breadcrumb-active-color; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_responsive-embed.scss: -------------------------------------------------------------------------------- 1 | // Embeds responsive 2 | // 3 | // Credit: Nicolas Gallagher and SUIT CSS. 4 | 5 | .embed-responsive { 6 | position: relative; 7 | display: block; 8 | height: 0; 9 | padding: 0; 10 | overflow: hidden; 11 | 12 | .embed-responsive-item, 13 | iframe, 14 | embed, 15 | object, 16 | video { 17 | position: absolute; 18 | top: 0; 19 | left: 0; 20 | bottom: 0; 21 | height: 100%; 22 | width: 100%; 23 | border: 0; 24 | } 25 | } 26 | 27 | // Modifier class for 16:9 aspect ratio 28 | .embed-responsive-16by9 { 29 | padding-bottom: 56.25%; 30 | } 31 | 32 | // Modifier class for 4:3 aspect ratio 33 | .embed-responsive-4by3 { 34 | padding-bottom: 75%; 35 | } 36 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | // Clearfix 2 | // 3 | // For modern browsers 4 | // 1. The space content is one way to avoid an Opera bug when the 5 | // contenteditable attribute is included anywhere else in the document. 6 | // Otherwise it causes space to appear at the top and bottom of elements 7 | // that are clearfixed. 8 | // 2. The use of `table` rather than `block` is only necessary if using 9 | // `:before` to contain the top-margins of child elements. 10 | // 11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/ 12 | 13 | @mixin clearfix() { 14 | &:before, 15 | &:after { 16 | content: " "; // 1 17 | display: table; // 2 18 | } 19 | &:after { 20 | clear: both; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_breadcrumbs.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: $breadcrumb-padding-vertical $breadcrumb-padding-horizontal; 8 | margin-bottom: $line-height-computed; 9 | list-style: none; 10 | background-color: $breadcrumb-bg; 11 | border-radius: $border-radius-base; 12 | 13 | > li { 14 | display: inline-block; 15 | 16 | + li:before { 17 | content: "#{$breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space 18 | padding: 0 5px; 19 | color: $breadcrumb-color; 20 | } 21 | } 22 | 23 | > .active { 24 | color: $breadcrumb-active-color; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_responsive-embed.scss: -------------------------------------------------------------------------------- 1 | // Embeds responsive 2 | // 3 | // Credit: Nicolas Gallagher and SUIT CSS. 4 | 5 | .embed-responsive { 6 | position: relative; 7 | display: block; 8 | height: 0; 9 | padding: 0; 10 | overflow: hidden; 11 | 12 | .embed-responsive-item, 13 | iframe, 14 | embed, 15 | object, 16 | video { 17 | position: absolute; 18 | top: 0; 19 | left: 0; 20 | bottom: 0; 21 | height: 100%; 22 | width: 100%; 23 | border: 0; 24 | } 25 | } 26 | 27 | // Modifier class for 16:9 aspect ratio 28 | .embed-responsive-16by9 { 29 | padding-bottom: 56.25%; 30 | } 31 | 32 | // Modifier class for 4:3 aspect ratio 33 | .embed-responsive-4by3 { 34 | padding-bottom: 75%; 35 | } 36 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | // Clearfix 2 | // 3 | // For modern browsers 4 | // 1. The space content is one way to avoid an Opera bug when the 5 | // contenteditable attribute is included anywhere else in the document. 6 | // Otherwise it causes space to appear at the top and bottom of elements 7 | // that are clearfixed. 8 | // 2. The use of `table` rather than `block` is only necessary if using 9 | // `:before` to contain the top-margins of child elements. 10 | // 11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/ 12 | 13 | @mixin clearfix() { 14 | &:before, 15 | &:after { 16 | content: " "; // 1 17 | display: table; // 2 18 | } 19 | &:after { 20 | clear: both; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "portfolio-app", 3 | "version": "0.1.0", 4 | "private": true, 5 | "homepage": "https://dbarochiya.github.io/me", 6 | "dependencies": { 7 | "gh-pages": "^2.0.1", 8 | "react": "^16.8.3", 9 | "react-dom": "^16.8.3", 10 | "react-scripts": "2.1.5", 11 | "travis": "^0.1.1", 12 | "yarn": "^1.13.0" 13 | }, 14 | "scripts": { 15 | "start": "react-scripts start", 16 | "build": "react-scripts build", 17 | "predeploy": "yarn run build", 18 | "deploy": "gh-pages -d build", 19 | "test": "react-scripts test", 20 | "eject": "react-scripts eject" 21 | }, 22 | "eslintConfig": { 23 | "extends": "react-app" 24 | }, 25 | "browserslist": [ 26 | ">0.2%", 27 | "not dead", 28 | "not ie <= 11", 29 | "not op_mini all" 30 | ] 31 | } 32 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | @mixin list-group-item-variant($state, $background, $color) { 4 | .list-group-item-#{$state} { 5 | color: $color; 6 | background-color: $background; 7 | 8 | // [converter] extracted a&, button& to a.list-group-item-#{$state}, button.list-group-item-#{$state} 9 | } 10 | 11 | a.list-group-item-#{$state}, 12 | button.list-group-item-#{$state} { 13 | color: $color; 14 | 15 | .list-group-item-heading { 16 | color: inherit; 17 | } 18 | 19 | &:hover, 20 | &:focus { 21 | color: $color; 22 | background-color: darken($background, 5%); 23 | } 24 | &.active, 25 | &.active:hover, 26 | &.active:focus { 27 | color: #fff; 28 | background-color: $color; 29 | border-color: $color; 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /public/sass/_bootstrap-mincer.scss: -------------------------------------------------------------------------------- 1 | // Mincer asset helper functions 2 | // 3 | // This must be imported into a .css.ejs.scss file. 4 | // Then, <% %>-interpolations will be parsed as strings by Sass, and evaluated by EJS after Sass compilation. 5 | 6 | 7 | @function twbs-font-path($path) { 8 | // do something like following 9 | // from "path/to/font.ext#suffix" to "<%- asset_path(path/to/font.ext)) + #suffix %>" 10 | // from "path/to/font.ext?#suffix" to "<%- asset_path(path/to/font.ext)) + ?#suffix %>" 11 | // or from "path/to/font.ext" just "<%- asset_path(path/to/font.ext)) %>" 12 | @return "<%- asset_path('#{$path}'.replace(/[#?].*$/, '')) + '#{$path}'.replace(/(^[^#?]*)([#?]?.*$)/, '$2') %>"; 13 | } 14 | 15 | @function twbs-image-path($file) { 16 | @return "<%- asset_path('#{$file}') %>"; 17 | } 18 | 19 | $bootstrap-sass-asset-helper: true; 20 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | @mixin list-group-item-variant($state, $background, $color) { 4 | .list-group-item-#{$state} { 5 | color: $color; 6 | background-color: $background; 7 | 8 | // [converter] extracted a&, button& to a.list-group-item-#{$state}, button.list-group-item-#{$state} 9 | } 10 | 11 | a.list-group-item-#{$state}, 12 | button.list-group-item-#{$state} { 13 | color: $color; 14 | 15 | .list-group-item-heading { 16 | color: inherit; 17 | } 18 | 19 | &:hover, 20 | &:focus { 21 | color: $color; 22 | background-color: darken($background, 5%); 23 | } 24 | &.active, 25 | &.active:hover, 26 | &.active:focus { 27 | color: #fff; 28 | background-color: $color; 29 | border-color: $color; 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /template/jackson/sass/_bootstrap-mincer.scss: -------------------------------------------------------------------------------- 1 | // Mincer asset helper functions 2 | // 3 | // This must be imported into a .css.ejs.scss file. 4 | // Then, <% %>-interpolations will be parsed as strings by Sass, and evaluated by EJS after Sass compilation. 5 | 6 | 7 | @function twbs-font-path($path) { 8 | // do something like following 9 | // from "path/to/font.ext#suffix" to "<%- asset_path(path/to/font.ext)) + #suffix %>" 10 | // from "path/to/font.ext?#suffix" to "<%- asset_path(path/to/font.ext)) + ?#suffix %>" 11 | // or from "path/to/font.ext" just "<%- asset_path(path/to/font.ext)) %>" 12 | @return "<%- asset_path('#{$path}'.replace(/[#?].*$/, '')) + '#{$path}'.replace(/(^[^#?]*)([#?]?.*$)/, '$2') %>"; 13 | } 14 | 15 | @function twbs-image-path($file) { 16 | @return "<%- asset_path('#{$file}') %>"; 17 | } 18 | 19 | $bootstrap-sass-asset-helper: true; 20 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_table-row.scss: -------------------------------------------------------------------------------- 1 | // Tables 2 | 3 | @mixin table-row-variant($state, $background) { 4 | // Exact selectors below required to override `.table-striped` and prevent 5 | // inheritance to nested tables. 6 | .table > thead > tr, 7 | .table > tbody > tr, 8 | .table > tfoot > tr { 9 | > td.#{$state}, 10 | > th.#{$state}, 11 | &.#{$state} > td, 12 | &.#{$state} > th { 13 | background-color: $background; 14 | } 15 | } 16 | 17 | // Hover states for `.table-hover` 18 | // Note: this is not available for cells or rows within `thead` or `tfoot`. 19 | .table-hover > tbody > tr { 20 | > td.#{$state}:hover, 21 | > th.#{$state}:hover, 22 | &.#{$state}:hover > td, 23 | &:hover > .#{$state}, 24 | &.#{$state}:hover > th { 25 | background-color: darken($background, 5%); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_table-row.scss: -------------------------------------------------------------------------------- 1 | // Tables 2 | 3 | @mixin table-row-variant($state, $background) { 4 | // Exact selectors below required to override `.table-striped` and prevent 5 | // inheritance to nested tables. 6 | .table > thead > tr, 7 | .table > tbody > tr, 8 | .table > tfoot > tr { 9 | > td.#{$state}, 10 | > th.#{$state}, 11 | &.#{$state} > td, 12 | &.#{$state} > th { 13 | background-color: $background; 14 | } 15 | } 16 | 17 | // Hover states for `.table-hover` 18 | // Note: this is not available for cells or rows within `thead` or `tfoot`. 19 | .table-hover > tbody > tr { 20 | > td.#{$state}:hover, 21 | > th.#{$state}:hover, 22 | &.#{$state}:hover > td, 23 | &:hover > .#{$state}, 24 | &.#{$state}:hover > th { 25 | background-color: darken($background, 5%); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_close.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Close icons 3 | // -------------------------------------------------- 4 | 5 | 6 | .close { 7 | float: right; 8 | font-size: ($font-size-base * 1.5); 9 | font-weight: $close-font-weight; 10 | line-height: 1; 11 | color: $close-color; 12 | text-shadow: $close-text-shadow; 13 | @include opacity(.2); 14 | 15 | &:hover, 16 | &:focus { 17 | color: $close-color; 18 | text-decoration: none; 19 | cursor: pointer; 20 | @include opacity(.5); 21 | } 22 | 23 | // [converter] extracted button& to button.close 24 | } 25 | 26 | // Additional properties for button version 27 | // iOS requires the button element instead of an anchor tag. 28 | // If you want the anchor version, it requires `href="#"`. 29 | // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile 30 | button.close { 31 | padding: 0; 32 | cursor: pointer; 33 | background: transparent; 34 | border: 0; 35 | -webkit-appearance: none; 36 | } 37 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_close.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Close icons 3 | // -------------------------------------------------- 4 | 5 | 6 | .close { 7 | float: right; 8 | font-size: ($font-size-base * 1.5); 9 | font-weight: $close-font-weight; 10 | line-height: 1; 11 | color: $close-color; 12 | text-shadow: $close-text-shadow; 13 | @include opacity(.2); 14 | 15 | &:hover, 16 | &:focus { 17 | color: $close-color; 18 | text-decoration: none; 19 | cursor: pointer; 20 | @include opacity(.5); 21 | } 22 | 23 | // [converter] extracted button& to button.close 24 | } 25 | 26 | // Additional properties for button version 27 | // iOS requires the button element instead of an anchor tag. 28 | // If you want the anchor version, it requires `href="#"`. 29 | // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile 30 | button.close { 31 | padding: 0; 32 | cursor: pointer; 33 | background: transparent; 34 | border: 0; 35 | -webkit-appearance: none; 36 | } 37 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_component-animations.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Component animations 3 | // -------------------------------------------------- 4 | 5 | // Heads up! 6 | // 7 | // We don't use the `.opacity()` mixin here since it causes a bug with text 8 | // fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552. 9 | 10 | .fade { 11 | opacity: 0; 12 | @include transition(opacity .15s linear); 13 | &.in { 14 | opacity: 1; 15 | } 16 | } 17 | 18 | .collapse { 19 | display: none; 20 | 21 | &.in { display: block; } 22 | // [converter] extracted tr&.in to tr.collapse.in 23 | // [converter] extracted tbody&.in to tbody.collapse.in 24 | } 25 | 26 | tr.collapse.in { display: table-row; } 27 | 28 | tbody.collapse.in { display: table-row-group; } 29 | 30 | .collapsing { 31 | position: relative; 32 | height: 0; 33 | overflow: hidden; 34 | @include transition-property(height, visibility); 35 | @include transition-duration(.35s); 36 | @include transition-timing-function(ease); 37 | } 38 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_component-animations.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Component animations 3 | // -------------------------------------------------- 4 | 5 | // Heads up! 6 | // 7 | // We don't use the `.opacity()` mixin here since it causes a bug with text 8 | // fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552. 9 | 10 | .fade { 11 | opacity: 0; 12 | @include transition(opacity .15s linear); 13 | &.in { 14 | opacity: 1; 15 | } 16 | } 17 | 18 | .collapse { 19 | display: none; 20 | 21 | &.in { display: block; } 22 | // [converter] extracted tr&.in to tr.collapse.in 23 | // [converter] extracted tbody&.in to tbody.collapse.in 24 | } 25 | 26 | tr.collapse.in { display: table-row; } 27 | 28 | tbody.collapse.in { display: table-row-group; } 29 | 30 | .collapsing { 31 | position: relative; 32 | height: 0; 33 | overflow: hidden; 34 | @include transition-property(height, visibility); 35 | @include transition-duration(.35s); 36 | @include transition-timing-function(ease); 37 | } 38 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Utility classes 3 | // -------------------------------------------------- 4 | 5 | 6 | // Floats 7 | // ------------------------- 8 | 9 | .clearfix { 10 | @include clearfix; 11 | } 12 | .center-block { 13 | @include center-block; 14 | } 15 | .pull-right { 16 | float: right !important; 17 | } 18 | .pull-left { 19 | float: left !important; 20 | } 21 | 22 | 23 | // Toggling content 24 | // ------------------------- 25 | 26 | // Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1 27 | .hide { 28 | display: none !important; 29 | } 30 | .show { 31 | display: block !important; 32 | } 33 | .invisible { 34 | visibility: hidden; 35 | } 36 | .text-hide { 37 | @include text-hide; 38 | } 39 | 40 | 41 | // Hide from screenreaders and browsers 42 | // 43 | // Credit: HTML5 Boilerplate 44 | 45 | .hidden { 46 | display: none !important; 47 | } 48 | 49 | 50 | // For Affix plugin 51 | // ------------------------- 52 | 53 | .affix { 54 | position: fixed; 55 | } 56 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Utility classes 3 | // -------------------------------------------------- 4 | 5 | 6 | // Floats 7 | // ------------------------- 8 | 9 | .clearfix { 10 | @include clearfix; 11 | } 12 | .center-block { 13 | @include center-block; 14 | } 15 | .pull-right { 16 | float: right !important; 17 | } 18 | .pull-left { 19 | float: left !important; 20 | } 21 | 22 | 23 | // Toggling content 24 | // ------------------------- 25 | 26 | // Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1 27 | .hide { 28 | display: none !important; 29 | } 30 | .show { 31 | display: block !important; 32 | } 33 | .invisible { 34 | visibility: hidden; 35 | } 36 | .text-hide { 37 | @include text-hide; 38 | } 39 | 40 | 41 | // Hide from screenreaders and browsers 42 | // 43 | // Credit: HTML5 Boilerplate 44 | 45 | .hidden { 46 | display: none !important; 47 | } 48 | 49 | 50 | // For Affix plugin 51 | // ------------------------- 52 | 53 | .affix { 54 | position: fixed; 55 | } 56 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_thumbnails.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Thumbnails 3 | // -------------------------------------------------- 4 | 5 | 6 | // Mixin and adjust the regular image class 7 | .thumbnail { 8 | display: block; 9 | padding: $thumbnail-padding; 10 | margin-bottom: $line-height-computed; 11 | line-height: $line-height-base; 12 | background-color: $thumbnail-bg; 13 | border: 1px solid $thumbnail-border; 14 | border-radius: $thumbnail-border-radius; 15 | @include transition(border .2s ease-in-out); 16 | 17 | > img, 18 | a > img { 19 | @include img-responsive; 20 | margin-left: auto; 21 | margin-right: auto; 22 | } 23 | 24 | // [converter] extracted a&:hover, a&:focus, a&.active to a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active 25 | 26 | // Image captions 27 | .caption { 28 | padding: $thumbnail-caption-padding; 29 | color: $thumbnail-caption-color; 30 | } 31 | } 32 | 33 | // Add a hover state for linked versions only 34 | a.thumbnail:hover, 35 | a.thumbnail:focus, 36 | a.thumbnail.active { 37 | border-color: $link-color; 38 | } 39 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_thumbnails.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Thumbnails 3 | // -------------------------------------------------- 4 | 5 | 6 | // Mixin and adjust the regular image class 7 | .thumbnail { 8 | display: block; 9 | padding: $thumbnail-padding; 10 | margin-bottom: $line-height-computed; 11 | line-height: $line-height-base; 12 | background-color: $thumbnail-bg; 13 | border: 1px solid $thumbnail-border; 14 | border-radius: $thumbnail-border-radius; 15 | @include transition(border .2s ease-in-out); 16 | 17 | > img, 18 | a > img { 19 | @include img-responsive; 20 | margin-left: auto; 21 | margin-right: auto; 22 | } 23 | 24 | // [converter] extracted a&:hover, a&:focus, a&.active to a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active 25 | 26 | // Image captions 27 | .caption { 28 | padding: $thumbnail-caption-padding; 29 | color: $thumbnail-caption-color; 30 | } 31 | } 32 | 33 | // Add a hover state for linked versions only 34 | a.thumbnail:hover, 35 | a.thumbnail:focus, 36 | a.thumbnail.active { 37 | border-color: $link-color; 38 | } 39 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_pager.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Pager pagination 3 | // -------------------------------------------------- 4 | 5 | 6 | .pager { 7 | padding-left: 0; 8 | margin: $line-height-computed 0; 9 | list-style: none; 10 | text-align: center; 11 | @include clearfix; 12 | li { 13 | display: inline; 14 | > a, 15 | > span { 16 | display: inline-block; 17 | padding: 5px 14px; 18 | background-color: $pager-bg; 19 | border: 1px solid $pager-border; 20 | border-radius: $pager-border-radius; 21 | } 22 | 23 | > a:hover, 24 | > a:focus { 25 | text-decoration: none; 26 | background-color: $pager-hover-bg; 27 | } 28 | } 29 | 30 | .next { 31 | > a, 32 | > span { 33 | float: right; 34 | } 35 | } 36 | 37 | .previous { 38 | > a, 39 | > span { 40 | float: left; 41 | } 42 | } 43 | 44 | .disabled { 45 | > a, 46 | > a:hover, 47 | > a:focus, 48 | > span { 49 | color: $pager-disabled-color; 50 | background-color: $pager-bg; 51 | cursor: $cursor-disabled; 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_pager.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Pager pagination 3 | // -------------------------------------------------- 4 | 5 | 6 | .pager { 7 | padding-left: 0; 8 | margin: $line-height-computed 0; 9 | list-style: none; 10 | text-align: center; 11 | @include clearfix; 12 | li { 13 | display: inline; 14 | > a, 15 | > span { 16 | display: inline-block; 17 | padding: 5px 14px; 18 | background-color: $pager-bg; 19 | border: 1px solid $pager-border; 20 | border-radius: $pager-border-radius; 21 | } 22 | 23 | > a:hover, 24 | > a:focus { 25 | text-decoration: none; 26 | background-color: $pager-hover-bg; 27 | } 28 | } 29 | 30 | .next { 31 | > a, 32 | > span { 33 | float: right; 34 | } 35 | } 36 | 37 | .previous { 38 | > a, 39 | > span { 40 | float: left; 41 | } 42 | } 43 | 44 | .disabled { 45 | > a, 46 | > a:hover, 47 | > a:focus, 48 | > span { 49 | color: $pager-disabled-color; 50 | background-color: $pager-bg; 51 | cursor: $cursor-disabled; 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Dhruv 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------------------------------- 3 | 4 | // Utilities 5 | @import "mixins/hide-text"; 6 | @import "mixins/opacity"; 7 | @import "mixins/image"; 8 | @import "mixins/labels"; 9 | @import "mixins/reset-filter"; 10 | @import "mixins/resize"; 11 | @import "mixins/responsive-visibility"; 12 | @import "mixins/size"; 13 | @import "mixins/tab-focus"; 14 | @import "mixins/reset-text"; 15 | @import "mixins/text-emphasis"; 16 | @import "mixins/text-overflow"; 17 | @import "mixins/vendor-prefixes"; 18 | 19 | // Components 20 | @import "mixins/alerts"; 21 | @import "mixins/buttons"; 22 | @import "mixins/panels"; 23 | @import "mixins/pagination"; 24 | @import "mixins/list-group"; 25 | @import "mixins/nav-divider"; 26 | @import "mixins/forms"; 27 | @import "mixins/progress-bar"; 28 | @import "mixins/table-row"; 29 | 30 | // Skins 31 | @import "mixins/background-variant"; 32 | @import "mixins/border-radius"; 33 | @import "mixins/gradients"; 34 | 35 | // Layout 36 | @import "mixins/clearfix"; 37 | @import "mixins/center-block"; 38 | @import "mixins/nav-vertical-align"; 39 | @import "mixins/grid-framework"; 40 | @import "mixins/grid"; 41 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------------------------------- 3 | 4 | // Utilities 5 | @import "mixins/hide-text"; 6 | @import "mixins/opacity"; 7 | @import "mixins/image"; 8 | @import "mixins/labels"; 9 | @import "mixins/reset-filter"; 10 | @import "mixins/resize"; 11 | @import "mixins/responsive-visibility"; 12 | @import "mixins/size"; 13 | @import "mixins/tab-focus"; 14 | @import "mixins/reset-text"; 15 | @import "mixins/text-emphasis"; 16 | @import "mixins/text-overflow"; 17 | @import "mixins/vendor-prefixes"; 18 | 19 | // Components 20 | @import "mixins/alerts"; 21 | @import "mixins/buttons"; 22 | @import "mixins/panels"; 23 | @import "mixins/pagination"; 24 | @import "mixins/list-group"; 25 | @import "mixins/nav-divider"; 26 | @import "mixins/forms"; 27 | @import "mixins/progress-bar"; 28 | @import "mixins/table-row"; 29 | 30 | // Skins 31 | @import "mixins/background-variant"; 32 | @import "mixins/border-radius"; 33 | @import "mixins/gradients"; 34 | 35 | // Layout 36 | @import "mixins/clearfix"; 37 | @import "mixins/center-block"; 38 | @import "mixins/nav-vertical-align"; 39 | @import "mixins/grid-framework"; 40 | @import "mixins/grid"; 41 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_media.scss: -------------------------------------------------------------------------------- 1 | .media { 2 | // Proper spacing between instances of .media 3 | margin-top: 15px; 4 | 5 | &:first-child { 6 | margin-top: 0; 7 | } 8 | } 9 | 10 | .media, 11 | .media-body { 12 | zoom: 1; 13 | overflow: hidden; 14 | } 15 | 16 | .media-body { 17 | width: 10000px; 18 | } 19 | 20 | .media-object { 21 | display: block; 22 | 23 | // Fix collapse in webkit from max-width: 100% and display: table-cell. 24 | &.img-thumbnail { 25 | max-width: none; 26 | } 27 | } 28 | 29 | .media-right, 30 | .media > .pull-right { 31 | padding-left: 10px; 32 | } 33 | 34 | .media-left, 35 | .media > .pull-left { 36 | padding-right: 10px; 37 | } 38 | 39 | .media-left, 40 | .media-right, 41 | .media-body { 42 | display: table-cell; 43 | vertical-align: top; 44 | } 45 | 46 | .media-middle { 47 | vertical-align: middle; 48 | } 49 | 50 | .media-bottom { 51 | vertical-align: bottom; 52 | } 53 | 54 | // Reset margins on headings for tighter default spacing 55 | .media-heading { 56 | margin-top: 0; 57 | margin-bottom: 5px; 58 | } 59 | 60 | // Media list variation 61 | // 62 | // Undo default ul/ol styles 63 | .media-list { 64 | padding-left: 0; 65 | list-style: none; 66 | } 67 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_media.scss: -------------------------------------------------------------------------------- 1 | .media { 2 | // Proper spacing between instances of .media 3 | margin-top: 15px; 4 | 5 | &:first-child { 6 | margin-top: 0; 7 | } 8 | } 9 | 10 | .media, 11 | .media-body { 12 | zoom: 1; 13 | overflow: hidden; 14 | } 15 | 16 | .media-body { 17 | width: 10000px; 18 | } 19 | 20 | .media-object { 21 | display: block; 22 | 23 | // Fix collapse in webkit from max-width: 100% and display: table-cell. 24 | &.img-thumbnail { 25 | max-width: none; 26 | } 27 | } 28 | 29 | .media-right, 30 | .media > .pull-right { 31 | padding-left: 10px; 32 | } 33 | 34 | .media-left, 35 | .media > .pull-left { 36 | padding-right: 10px; 37 | } 38 | 39 | .media-left, 40 | .media-right, 41 | .media-body { 42 | display: table-cell; 43 | vertical-align: top; 44 | } 45 | 46 | .media-middle { 47 | vertical-align: middle; 48 | } 49 | 50 | .media-bottom { 51 | vertical-align: bottom; 52 | } 53 | 54 | // Reset margins on headings for tighter default spacing 55 | .media-heading { 56 | margin-top: 0; 57 | margin-bottom: 5px; 58 | } 59 | 60 | // Media list variation 61 | // 62 | // Undo default ul/ol styles 63 | .media-list { 64 | padding-left: 0; 65 | list-style: none; 66 | } 67 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Jumbotron 3 | // -------------------------------------------------- 4 | 5 | 6 | .jumbotron { 7 | padding-top: $jumbotron-padding; 8 | padding-bottom: $jumbotron-padding; 9 | margin-bottom: $jumbotron-padding; 10 | color: $jumbotron-color; 11 | background-color: $jumbotron-bg; 12 | 13 | h1, 14 | .h1 { 15 | color: $jumbotron-heading-color; 16 | } 17 | 18 | p { 19 | margin-bottom: ($jumbotron-padding / 2); 20 | font-size: $jumbotron-font-size; 21 | font-weight: 200; 22 | } 23 | 24 | > hr { 25 | border-top-color: darken($jumbotron-bg, 10%); 26 | } 27 | 28 | .container &, 29 | .container-fluid & { 30 | border-radius: $border-radius-large; // Only round corners at higher resolutions if contained in a container 31 | } 32 | 33 | .container { 34 | max-width: 100%; 35 | } 36 | 37 | @media screen and (min-width: $screen-sm-min) { 38 | padding-top: ($jumbotron-padding * 1.6); 39 | padding-bottom: ($jumbotron-padding * 1.6); 40 | 41 | .container &, 42 | .container-fluid & { 43 | padding-left: ($jumbotron-padding * 2); 44 | padding-right: ($jumbotron-padding * 2); 45 | } 46 | 47 | h1, 48 | .h1 { 49 | font-size: $jumbotron-heading-font-size; 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Jumbotron 3 | // -------------------------------------------------- 4 | 5 | 6 | .jumbotron { 7 | padding-top: $jumbotron-padding; 8 | padding-bottom: $jumbotron-padding; 9 | margin-bottom: $jumbotron-padding; 10 | color: $jumbotron-color; 11 | background-color: $jumbotron-bg; 12 | 13 | h1, 14 | .h1 { 15 | color: $jumbotron-heading-color; 16 | } 17 | 18 | p { 19 | margin-bottom: ($jumbotron-padding / 2); 20 | font-size: $jumbotron-font-size; 21 | font-weight: 200; 22 | } 23 | 24 | > hr { 25 | border-top-color: darken($jumbotron-bg, 10%); 26 | } 27 | 28 | .container &, 29 | .container-fluid & { 30 | border-radius: $border-radius-large; // Only round corners at higher resolutions if contained in a container 31 | } 32 | 33 | .container { 34 | max-width: 100%; 35 | } 36 | 37 | @media screen and (min-width: $screen-sm-min) { 38 | padding-top: ($jumbotron-padding * 1.6); 39 | padding-bottom: ($jumbotron-padding * 1.6); 40 | 41 | .container &, 42 | .container-fluid & { 43 | padding-left: ($jumbotron-padding * 2); 44 | padding-right: ($jumbotron-padding * 2); 45 | } 46 | 47 | h1, 48 | .h1 { 49 | font-size: $jumbotron-heading-font-size; 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- 1 | // Image Mixins 2 | // - Responsive image 3 | // - Retina image 4 | 5 | 6 | // Responsive image 7 | // 8 | // Keep images from scaling beyond the width of their parents. 9 | @mixin img-responsive($display: block) { 10 | display: $display; 11 | max-width: 100%; // Part 1: Set a maximum relative to the parent 12 | height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching 13 | } 14 | 15 | 16 | // Retina image 17 | // 18 | // Short retina mixin for setting background-image and -size. Note that the 19 | // spelling of `min--moz-device-pixel-ratio` is intentional. 20 | @mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) { 21 | background-image: url(if($bootstrap-sass-asset-helper, twbs-image-path("#{$file-1x}"), "#{$file-1x}")); 22 | 23 | @media 24 | only screen and (-webkit-min-device-pixel-ratio: 2), 25 | only screen and ( min--moz-device-pixel-ratio: 2), 26 | only screen and ( -o-min-device-pixel-ratio: 2/1), 27 | only screen and ( min-device-pixel-ratio: 2), 28 | only screen and ( min-resolution: 192dpi), 29 | only screen and ( min-resolution: 2dppx) { 30 | background-image: url(if($bootstrap-sass-asset-helper, twbs-image-path("#{$file-2x}"), "#{$file-2x}")); 31 | background-size: $width-1x $height-1x; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- 1 | // Image Mixins 2 | // - Responsive image 3 | // - Retina image 4 | 5 | 6 | // Responsive image 7 | // 8 | // Keep images from scaling beyond the width of their parents. 9 | @mixin img-responsive($display: block) { 10 | display: $display; 11 | max-width: 100%; // Part 1: Set a maximum relative to the parent 12 | height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching 13 | } 14 | 15 | 16 | // Retina image 17 | // 18 | // Short retina mixin for setting background-image and -size. Note that the 19 | // spelling of `min--moz-device-pixel-ratio` is intentional. 20 | @mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) { 21 | background-image: url(if($bootstrap-sass-asset-helper, twbs-image-path("#{$file-1x}"), "#{$file-1x}")); 22 | 23 | @media 24 | only screen and (-webkit-min-device-pixel-ratio: 2), 25 | only screen and ( min--moz-device-pixel-ratio: 2), 26 | only screen and ( -o-min-device-pixel-ratio: 2/1), 27 | only screen and ( min-device-pixel-ratio: 2), 28 | only screen and ( min-resolution: 192dpi), 29 | only screen and ( min-resolution: 2dppx) { 30 | background-image: url(if($bootstrap-sass-asset-helper, twbs-image-path("#{$file-2x}"), "#{$file-2x}")); 31 | background-size: $width-1x $height-1x; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_labels.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Labels 3 | // -------------------------------------------------- 4 | 5 | .label { 6 | display: inline; 7 | padding: .2em .6em .3em; 8 | font-size: 75%; 9 | font-weight: bold; 10 | line-height: 1; 11 | color: $label-color; 12 | text-align: center; 13 | white-space: nowrap; 14 | vertical-align: baseline; 15 | border-radius: .25em; 16 | 17 | // [converter] extracted a& to a.label 18 | 19 | // Empty labels collapse automatically (not available in IE8) 20 | &:empty { 21 | display: none; 22 | } 23 | 24 | // Quick fix for labels in buttons 25 | .btn & { 26 | position: relative; 27 | top: -1px; 28 | } 29 | } 30 | 31 | // Add hover effects, but only for links 32 | a.label { 33 | &:hover, 34 | &:focus { 35 | color: $label-link-hover-color; 36 | text-decoration: none; 37 | cursor: pointer; 38 | } 39 | } 40 | 41 | // Colors 42 | // Contextual variations (linked labels get darker on :hover) 43 | 44 | .label-default { 45 | @include label-variant($label-default-bg); 46 | } 47 | 48 | .label-primary { 49 | @include label-variant($label-primary-bg); 50 | } 51 | 52 | .label-success { 53 | @include label-variant($label-success-bg); 54 | } 55 | 56 | .label-info { 57 | @include label-variant($label-info-bg); 58 | } 59 | 60 | .label-warning { 61 | @include label-variant($label-warning-bg); 62 | } 63 | 64 | .label-danger { 65 | @include label-variant($label-danger-bg); 66 | } 67 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_labels.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Labels 3 | // -------------------------------------------------- 4 | 5 | .label { 6 | display: inline; 7 | padding: .2em .6em .3em; 8 | font-size: 75%; 9 | font-weight: bold; 10 | line-height: 1; 11 | color: $label-color; 12 | text-align: center; 13 | white-space: nowrap; 14 | vertical-align: baseline; 15 | border-radius: .25em; 16 | 17 | // [converter] extracted a& to a.label 18 | 19 | // Empty labels collapse automatically (not available in IE8) 20 | &:empty { 21 | display: none; 22 | } 23 | 24 | // Quick fix for labels in buttons 25 | .btn & { 26 | position: relative; 27 | top: -1px; 28 | } 29 | } 30 | 31 | // Add hover effects, but only for links 32 | a.label { 33 | &:hover, 34 | &:focus { 35 | color: $label-link-hover-color; 36 | text-decoration: none; 37 | cursor: pointer; 38 | } 39 | } 40 | 41 | // Colors 42 | // Contextual variations (linked labels get darker on :hover) 43 | 44 | .label-default { 45 | @include label-variant($label-default-bg); 46 | } 47 | 48 | .label-primary { 49 | @include label-variant($label-primary-bg); 50 | } 51 | 52 | .label-success { 53 | @include label-variant($label-success-bg); 54 | } 55 | 56 | .label-info { 57 | @include label-variant($label-info-bg); 58 | } 59 | 60 | .label-warning { 61 | @include label-variant($label-warning-bg); 62 | } 63 | 64 | .label-danger { 65 | @include label-variant($label-danger-bg); 66 | } 67 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_badges.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Badges 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .badge { 8 | display: inline-block; 9 | min-width: 10px; 10 | padding: 3px 7px; 11 | font-size: $font-size-small; 12 | font-weight: $badge-font-weight; 13 | color: $badge-color; 14 | line-height: $badge-line-height; 15 | vertical-align: middle; 16 | white-space: nowrap; 17 | text-align: center; 18 | background-color: $badge-bg; 19 | border-radius: $badge-border-radius; 20 | 21 | // Empty badges collapse automatically (not available in IE8) 22 | &:empty { 23 | display: none; 24 | } 25 | 26 | // Quick fix for badges in buttons 27 | .btn & { 28 | position: relative; 29 | top: -1px; 30 | } 31 | 32 | .btn-xs &, 33 | .btn-group-xs > .btn & { 34 | top: 0; 35 | padding: 1px 5px; 36 | } 37 | 38 | // [converter] extracted a& to a.badge 39 | 40 | // Account for badges in navs 41 | .list-group-item.active > &, 42 | .nav-pills > .active > a > & { 43 | color: $badge-active-color; 44 | background-color: $badge-active-bg; 45 | } 46 | 47 | .list-group-item > & { 48 | float: right; 49 | } 50 | 51 | .list-group-item > & + & { 52 | margin-right: 5px; 53 | } 54 | 55 | .nav-pills > li > a > & { 56 | margin-left: 3px; 57 | } 58 | } 59 | 60 | // Hover state, but only for links 61 | a.badge { 62 | &:hover, 63 | &:focus { 64 | color: $badge-link-hover-color; 65 | text-decoration: none; 66 | cursor: pointer; 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_badges.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Badges 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .badge { 8 | display: inline-block; 9 | min-width: 10px; 10 | padding: 3px 7px; 11 | font-size: $font-size-small; 12 | font-weight: $badge-font-weight; 13 | color: $badge-color; 14 | line-height: $badge-line-height; 15 | vertical-align: middle; 16 | white-space: nowrap; 17 | text-align: center; 18 | background-color: $badge-bg; 19 | border-radius: $badge-border-radius; 20 | 21 | // Empty badges collapse automatically (not available in IE8) 22 | &:empty { 23 | display: none; 24 | } 25 | 26 | // Quick fix for badges in buttons 27 | .btn & { 28 | position: relative; 29 | top: -1px; 30 | } 31 | 32 | .btn-xs &, 33 | .btn-group-xs > .btn & { 34 | top: 0; 35 | padding: 1px 5px; 36 | } 37 | 38 | // [converter] extracted a& to a.badge 39 | 40 | // Account for badges in navs 41 | .list-group-item.active > &, 42 | .nav-pills > .active > a > & { 43 | color: $badge-active-color; 44 | background-color: $badge-active-bg; 45 | } 46 | 47 | .list-group-item > & { 48 | float: right; 49 | } 50 | 51 | .list-group-item > & + & { 52 | margin-right: 5px; 53 | } 54 | 55 | .nav-pills > li > a > & { 56 | margin-left: 3px; 57 | } 58 | } 59 | 60 | // Hover state, but only for links 61 | a.badge { 62 | &:hover, 63 | &:focus { 64 | color: $badge-link-hover-color; 65 | text-decoration: none; 66 | cursor: pointer; 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_code.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Code (inline and block) 3 | // -------------------------------------------------- 4 | 5 | 6 | // Inline and block code styles 7 | code, 8 | kbd, 9 | pre, 10 | samp { 11 | font-family: $font-family-monospace; 12 | } 13 | 14 | // Inline code 15 | code { 16 | padding: 2px 4px; 17 | font-size: 90%; 18 | color: $code-color; 19 | background-color: $code-bg; 20 | border-radius: $border-radius-base; 21 | } 22 | 23 | // User input typically entered via keyboard 24 | kbd { 25 | padding: 2px 4px; 26 | font-size: 90%; 27 | color: $kbd-color; 28 | background-color: $kbd-bg; 29 | border-radius: $border-radius-small; 30 | box-shadow: inset 0 -1px 0 rgba(0,0,0,.25); 31 | 32 | kbd { 33 | padding: 0; 34 | font-size: 100%; 35 | font-weight: bold; 36 | box-shadow: none; 37 | } 38 | } 39 | 40 | // Blocks of code 41 | pre { 42 | display: block; 43 | padding: (($line-height-computed - 1) / 2); 44 | margin: 0 0 ($line-height-computed / 2); 45 | font-size: ($font-size-base - 1); // 14px to 13px 46 | line-height: $line-height-base; 47 | word-break: break-all; 48 | word-wrap: break-word; 49 | color: $pre-color; 50 | background-color: $pre-bg; 51 | border: 1px solid $pre-border-color; 52 | border-radius: $border-radius-base; 53 | 54 | // Account for some code outputs that place code tags in pre tags 55 | code { 56 | padding: 0; 57 | font-size: inherit; 58 | color: inherit; 59 | white-space: pre-wrap; 60 | background-color: transparent; 61 | border-radius: 0; 62 | } 63 | } 64 | 65 | // Enable scrollable blocks of code 66 | .pre-scrollable { 67 | max-height: $pre-scrollable-max-height; 68 | overflow-y: scroll; 69 | } 70 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_code.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Code (inline and block) 3 | // -------------------------------------------------- 4 | 5 | 6 | // Inline and block code styles 7 | code, 8 | kbd, 9 | pre, 10 | samp { 11 | font-family: $font-family-monospace; 12 | } 13 | 14 | // Inline code 15 | code { 16 | padding: 2px 4px; 17 | font-size: 90%; 18 | color: $code-color; 19 | background-color: $code-bg; 20 | border-radius: $border-radius-base; 21 | } 22 | 23 | // User input typically entered via keyboard 24 | kbd { 25 | padding: 2px 4px; 26 | font-size: 90%; 27 | color: $kbd-color; 28 | background-color: $kbd-bg; 29 | border-radius: $border-radius-small; 30 | box-shadow: inset 0 -1px 0 rgba(0,0,0,.25); 31 | 32 | kbd { 33 | padding: 0; 34 | font-size: 100%; 35 | font-weight: bold; 36 | box-shadow: none; 37 | } 38 | } 39 | 40 | // Blocks of code 41 | pre { 42 | display: block; 43 | padding: (($line-height-computed - 1) / 2); 44 | margin: 0 0 ($line-height-computed / 2); 45 | font-size: ($font-size-base - 1); // 14px to 13px 46 | line-height: $line-height-base; 47 | word-break: break-all; 48 | word-wrap: break-word; 49 | color: $pre-color; 50 | background-color: $pre-bg; 51 | border: 1px solid $pre-border-color; 52 | border-radius: $border-radius-base; 53 | 54 | // Account for some code outputs that place code tags in pre tags 55 | code { 56 | padding: 0; 57 | font-size: inherit; 58 | color: inherit; 59 | white-space: pre-wrap; 60 | background-color: transparent; 61 | border-radius: 0; 62 | } 63 | } 64 | 65 | // Enable scrollable blocks of code 66 | .pre-scrollable { 67 | max-height: $pre-scrollable-max-height; 68 | overflow-y: scroll; 69 | } 70 | -------------------------------------------------------------------------------- /public/sass/bootstrap.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.3.5 (http://getbootstrap.com) 3 | * Copyright 2011-2015 Twitter, Inc. 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */ 6 | 7 | // Core variables and mixins 8 | @import "bootstrap/variables"; 9 | @import "bootstrap/mixins"; 10 | 11 | // Reset and dependencies 12 | @import "bootstrap/normalize"; 13 | @import "bootstrap/print"; 14 | //@import "bootstrap/glyphicons"; 15 | 16 | // Core CSS 17 | @import "bootstrap/scaffolding"; 18 | @import "bootstrap/type"; 19 | @import "bootstrap/code"; 20 | @import "bootstrap/grid"; 21 | @import "bootstrap/tables"; 22 | @import "bootstrap/forms"; 23 | @import "bootstrap/buttons"; 24 | 25 | // Components 26 | @import "bootstrap/component-animations"; 27 | @import "bootstrap/dropdowns"; 28 | @import "bootstrap/button-groups"; 29 | @import "bootstrap/input-groups"; 30 | @import "bootstrap/navs"; 31 | @import "bootstrap/navbar"; 32 | @import "bootstrap/breadcrumbs"; 33 | @import "bootstrap/pagination"; 34 | @import "bootstrap/pager"; 35 | @import "bootstrap/labels"; 36 | @import "bootstrap/badges"; 37 | @import "bootstrap/jumbotron"; 38 | @import "bootstrap/thumbnails"; 39 | @import "bootstrap/alerts"; 40 | @import "bootstrap/progress-bars"; 41 | @import "bootstrap/media"; 42 | @import "bootstrap/list-group"; 43 | @import "bootstrap/panels"; 44 | @import "bootstrap/responsive-embed"; 45 | @import "bootstrap/wells"; 46 | @import "bootstrap/close"; 47 | 48 | // Components w/ JavaScript 49 | @import "bootstrap/modals"; 50 | @import "bootstrap/tooltip"; 51 | @import "bootstrap/popovers"; 52 | @import "bootstrap/carousel"; 53 | 54 | // Utility classes 55 | @import "bootstrap/utilities"; 56 | @import "bootstrap/responsive-utilities"; 57 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.3.5 (http://getbootstrap.com) 3 | * Copyright 2011-2015 Twitter, Inc. 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */ 6 | 7 | // Core variables and mixins 8 | @import "bootstrap/variables"; 9 | @import "bootstrap/mixins"; 10 | 11 | // Reset and dependencies 12 | @import "bootstrap/normalize"; 13 | @import "bootstrap/print"; 14 | //@import "bootstrap/glyphicons"; 15 | 16 | // Core CSS 17 | @import "bootstrap/scaffolding"; 18 | @import "bootstrap/type"; 19 | @import "bootstrap/code"; 20 | @import "bootstrap/grid"; 21 | @import "bootstrap/tables"; 22 | @import "bootstrap/forms"; 23 | @import "bootstrap/buttons"; 24 | 25 | // Components 26 | @import "bootstrap/component-animations"; 27 | @import "bootstrap/dropdowns"; 28 | @import "bootstrap/button-groups"; 29 | @import "bootstrap/input-groups"; 30 | @import "bootstrap/navs"; 31 | @import "bootstrap/navbar"; 32 | @import "bootstrap/breadcrumbs"; 33 | @import "bootstrap/pagination"; 34 | @import "bootstrap/pager"; 35 | @import "bootstrap/labels"; 36 | @import "bootstrap/badges"; 37 | @import "bootstrap/jumbotron"; 38 | @import "bootstrap/thumbnails"; 39 | @import "bootstrap/alerts"; 40 | @import "bootstrap/progress-bars"; 41 | @import "bootstrap/media"; 42 | @import "bootstrap/list-group"; 43 | @import "bootstrap/panels"; 44 | @import "bootstrap/responsive-embed"; 45 | @import "bootstrap/wells"; 46 | @import "bootstrap/close"; 47 | 48 | // Components w/ JavaScript 49 | @import "bootstrap/modals"; 50 | @import "bootstrap/tooltip"; 51 | @import "bootstrap/popovers"; 52 | @import "bootstrap/carousel"; 53 | 54 | // Utility classes 55 | @import "bootstrap/utilities"; 56 | @import "bootstrap/responsive-utilities"; 57 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_buttons.scss: -------------------------------------------------------------------------------- 1 | // Button variants 2 | // 3 | // Easily pump out default styles, as well as :hover, :focus, :active, 4 | // and disabled options for all buttons 5 | 6 | @mixin button-variant($color, $background, $border) { 7 | color: $color; 8 | background-color: $background; 9 | border-color: $border; 10 | 11 | &:focus, 12 | &.focus { 13 | color: $color; 14 | background-color: darken($background, 10%); 15 | border-color: darken($border, 25%); 16 | } 17 | &:hover { 18 | color: $color; 19 | background-color: darken($background, 10%); 20 | border-color: darken($border, 12%); 21 | } 22 | &:active, 23 | &.active, 24 | .open > &.dropdown-toggle { 25 | color: $color; 26 | background-color: darken($background, 10%); 27 | border-color: darken($border, 12%); 28 | 29 | &:hover, 30 | &:focus, 31 | &.focus { 32 | color: $color; 33 | background-color: darken($background, 17%); 34 | border-color: darken($border, 25%); 35 | } 36 | } 37 | &:active, 38 | &.active, 39 | .open > &.dropdown-toggle { 40 | background-image: none; 41 | } 42 | &.disabled, 43 | &[disabled], 44 | fieldset[disabled] & { 45 | &, 46 | &:hover, 47 | &:focus, 48 | &.focus, 49 | &:active, 50 | &.active { 51 | background-color: $background; 52 | border-color: $border; 53 | } 54 | } 55 | 56 | .badge { 57 | color: $background; 58 | background-color: $color; 59 | } 60 | } 61 | 62 | // Button sizes 63 | @mixin button-size($padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) { 64 | padding: $padding-vertical $padding-horizontal; 65 | font-size: $font-size; 66 | line-height: $line-height; 67 | border-radius: $border-radius; 68 | } 69 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_buttons.scss: -------------------------------------------------------------------------------- 1 | // Button variants 2 | // 3 | // Easily pump out default styles, as well as :hover, :focus, :active, 4 | // and disabled options for all buttons 5 | 6 | @mixin button-variant($color, $background, $border) { 7 | color: $color; 8 | background-color: $background; 9 | border-color: $border; 10 | 11 | &:focus, 12 | &.focus { 13 | color: $color; 14 | background-color: darken($background, 10%); 15 | border-color: darken($border, 25%); 16 | } 17 | &:hover { 18 | color: $color; 19 | background-color: darken($background, 10%); 20 | border-color: darken($border, 12%); 21 | } 22 | &:active, 23 | &.active, 24 | .open > &.dropdown-toggle { 25 | color: $color; 26 | background-color: darken($background, 10%); 27 | border-color: darken($border, 12%); 28 | 29 | &:hover, 30 | &:focus, 31 | &.focus { 32 | color: $color; 33 | background-color: darken($background, 17%); 34 | border-color: darken($border, 25%); 35 | } 36 | } 37 | &:active, 38 | &.active, 39 | .open > &.dropdown-toggle { 40 | background-image: none; 41 | } 42 | &.disabled, 43 | &[disabled], 44 | fieldset[disabled] & { 45 | &, 46 | &:hover, 47 | &:focus, 48 | &.focus, 49 | &:active, 50 | &.active { 51 | background-color: $background; 52 | border-color: $border; 53 | } 54 | } 55 | 56 | .badge { 57 | color: $background; 58 | background-color: $color; 59 | } 60 | } 61 | 62 | // Button sizes 63 | @mixin button-size($padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) { 64 | padding: $padding-vertical $padding-horizontal; 65 | font-size: $font-size; 66 | line-height: $line-height; 67 | border-radius: $border-radius; 68 | } 69 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_grid.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Grid system 3 | // -------------------------------------------------- 4 | 5 | 6 | // Container widths 7 | // 8 | // Set the container width, and override it for fixed navbars in media queries. 9 | 10 | .container { 11 | @include container-fixed; 12 | 13 | @media (min-width: $screen-sm-min) { 14 | width: $container-sm; 15 | } 16 | @media (min-width: $screen-md-min) { 17 | width: $container-md; 18 | } 19 | @media (min-width: $screen-lg-min) { 20 | width: $container-lg; 21 | } 22 | } 23 | 24 | 25 | // Fluid container 26 | // 27 | // Utilizes the mixin meant for fixed width containers, but without any defined 28 | // width for fluid, full width layouts. 29 | 30 | .container-fluid { 31 | @include container-fixed; 32 | } 33 | 34 | 35 | // Row 36 | // 37 | // Rows contain and clear the floats of your columns. 38 | 39 | .row { 40 | @include make-row; 41 | } 42 | 43 | 44 | // Columns 45 | // 46 | // Common styles for small and large grid columns 47 | 48 | @include make-grid-columns; 49 | 50 | 51 | // Extra small grid 52 | // 53 | // Columns, offsets, pushes, and pulls for extra small devices like 54 | // smartphones. 55 | 56 | @include make-grid(xs); 57 | 58 | 59 | // Small grid 60 | // 61 | // Columns, offsets, pushes, and pulls for the small device range, from phones 62 | // to tablets. 63 | 64 | @media (min-width: $screen-sm-min) { 65 | @include make-grid(sm); 66 | } 67 | 68 | 69 | // Medium grid 70 | // 71 | // Columns, offsets, pushes, and pulls for the desktop device range. 72 | 73 | @media (min-width: $screen-md-min) { 74 | @include make-grid(md); 75 | } 76 | 77 | 78 | // Large grid 79 | // 80 | // Columns, offsets, pushes, and pulls for the large desktop device range. 81 | 82 | @media (min-width: $screen-lg-min) { 83 | @include make-grid(lg); 84 | } 85 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_grid.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Grid system 3 | // -------------------------------------------------- 4 | 5 | 6 | // Container widths 7 | // 8 | // Set the container width, and override it for fixed navbars in media queries. 9 | 10 | .container { 11 | @include container-fixed; 12 | 13 | @media (min-width: $screen-sm-min) { 14 | width: $container-sm; 15 | } 16 | @media (min-width: $screen-md-min) { 17 | width: $container-md; 18 | } 19 | @media (min-width: $screen-lg-min) { 20 | width: $container-lg; 21 | } 22 | } 23 | 24 | 25 | // Fluid container 26 | // 27 | // Utilizes the mixin meant for fixed width containers, but without any defined 28 | // width for fluid, full width layouts. 29 | 30 | .container-fluid { 31 | @include container-fixed; 32 | } 33 | 34 | 35 | // Row 36 | // 37 | // Rows contain and clear the floats of your columns. 38 | 39 | .row { 40 | @include make-row; 41 | } 42 | 43 | 44 | // Columns 45 | // 46 | // Common styles for small and large grid columns 47 | 48 | @include make-grid-columns; 49 | 50 | 51 | // Extra small grid 52 | // 53 | // Columns, offsets, pushes, and pulls for extra small devices like 54 | // smartphones. 55 | 56 | @include make-grid(xs); 57 | 58 | 59 | // Small grid 60 | // 61 | // Columns, offsets, pushes, and pulls for the small device range, from phones 62 | // to tablets. 63 | 64 | @media (min-width: $screen-sm-min) { 65 | @include make-grid(sm); 66 | } 67 | 68 | 69 | // Medium grid 70 | // 71 | // Columns, offsets, pushes, and pulls for the desktop device range. 72 | 73 | @media (min-width: $screen-md-min) { 74 | @include make-grid(md); 75 | } 76 | 77 | 78 | // Large grid 79 | // 80 | // Columns, offsets, pushes, and pulls for the large desktop device range. 81 | 82 | @media (min-width: $screen-lg-min) { 83 | @include make-grid(lg); 84 | } 85 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_alerts.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Alerts 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base styles 7 | // ------------------------- 8 | 9 | .alert { 10 | padding: $alert-padding; 11 | margin-bottom: $line-height-computed; 12 | border: 1px solid transparent; 13 | border-radius: $alert-border-radius; 14 | 15 | // Headings for larger alerts 16 | h4 { 17 | margin-top: 0; 18 | // Specified for the h4 to prevent conflicts of changing $headings-color 19 | color: inherit; 20 | } 21 | 22 | // Provide class for links that match alerts 23 | .alert-link { 24 | font-weight: $alert-link-font-weight; 25 | } 26 | 27 | // Improve alignment and spacing of inner content 28 | > p, 29 | > ul { 30 | margin-bottom: 0; 31 | } 32 | 33 | > p + p { 34 | margin-top: 5px; 35 | } 36 | } 37 | 38 | // Dismissible alerts 39 | // 40 | // Expand the right padding and account for the close button's positioning. 41 | 42 | .alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0. 43 | .alert-dismissible { 44 | padding-right: ($alert-padding + 20); 45 | 46 | // Adjust close link position 47 | .close { 48 | position: relative; 49 | top: -2px; 50 | right: -21px; 51 | color: inherit; 52 | } 53 | } 54 | 55 | // Alternate styles 56 | // 57 | // Generate contextual modifier classes for colorizing the alert. 58 | 59 | .alert-success { 60 | @include alert-variant($alert-success-bg, $alert-success-border, $alert-success-text); 61 | } 62 | 63 | .alert-info { 64 | @include alert-variant($alert-info-bg, $alert-info-border, $alert-info-text); 65 | } 66 | 67 | .alert-warning { 68 | @include alert-variant($alert-warning-bg, $alert-warning-border, $alert-warning-text); 69 | } 70 | 71 | .alert-danger { 72 | @include alert-variant($alert-danger-bg, $alert-danger-border, $alert-danger-text); 73 | } 74 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_alerts.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Alerts 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base styles 7 | // ------------------------- 8 | 9 | .alert { 10 | padding: $alert-padding; 11 | margin-bottom: $line-height-computed; 12 | border: 1px solid transparent; 13 | border-radius: $alert-border-radius; 14 | 15 | // Headings for larger alerts 16 | h4 { 17 | margin-top: 0; 18 | // Specified for the h4 to prevent conflicts of changing $headings-color 19 | color: inherit; 20 | } 21 | 22 | // Provide class for links that match alerts 23 | .alert-link { 24 | font-weight: $alert-link-font-weight; 25 | } 26 | 27 | // Improve alignment and spacing of inner content 28 | > p, 29 | > ul { 30 | margin-bottom: 0; 31 | } 32 | 33 | > p + p { 34 | margin-top: 5px; 35 | } 36 | } 37 | 38 | // Dismissible alerts 39 | // 40 | // Expand the right padding and account for the close button's positioning. 41 | 42 | .alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0. 43 | .alert-dismissible { 44 | padding-right: ($alert-padding + 20); 45 | 46 | // Adjust close link position 47 | .close { 48 | position: relative; 49 | top: -2px; 50 | right: -21px; 51 | color: inherit; 52 | } 53 | } 54 | 55 | // Alternate styles 56 | // 57 | // Generate contextual modifier classes for colorizing the alert. 58 | 59 | .alert-success { 60 | @include alert-variant($alert-success-bg, $alert-success-border, $alert-success-text); 61 | } 62 | 63 | .alert-info { 64 | @include alert-variant($alert-info-bg, $alert-info-border, $alert-info-text); 65 | } 66 | 67 | .alert-warning { 68 | @include alert-variant($alert-warning-bg, $alert-warning-border, $alert-warning-text); 69 | } 70 | 71 | .alert-danger { 72 | @include alert-variant($alert-danger-bg, $alert-danger-border, $alert-danger-text); 73 | } 74 | -------------------------------------------------------------------------------- /template/jackson/.sass-cache/622bee1680e77a88a09c5bb8c2729ad5564df547/_center-block.scssc: -------------------------------------------------------------------------------- 1 | 3.4.18 (Selective Steve) 2 | 3191b9bbbc299c1a57b6df1fada51f5840cbd54f 3 | o:Sass::Tree::RootNode :@children[o:Sass::Tree::CommentNode 4 | : @value[I"-/* Center-align a block level element */:ET: 5 | @type: silent;[: 6 | @linei: @options{o:Sass::Tree::MixinDefNode : 7 | @nameI"center-block; T: 8 | @args[: @splat0;[o:Sass::Tree::PropNode;[I" display; T;o: Sass::Script::Tree::Literal;o: Sass::Script::Value::String;I" 9 | block; T; 10 | :identifier; @ ; i :@source_rangeo:Sass::Source::Range :@start_poso:Sass::Source::Position; i : @offseti: @end_poso;; i ;i: 11 | @fileI"J/Applications/AMPPS/www/arch/sass/bootstrap/mixins/_center-block.scss; T:@importero: Sass::Importers::Filesystem: 12 | @rootI"!/Applications/AMPPS/www/arch; T:@real_rootI"!/Applications/AMPPS/www/arch; T:@same_name_warningso:Set: 13 | @hash{: 14 | @tabsi:@prop_syntax:new;[; i ;o; ;o;; i ;i;o;; i ;i;@;@:@name_source_rangeo; ;@!;o;; i ;i;@;@:@value_source_rangeo; ;o;; i ;i;@";@;@; @ o;;[I"margin-left; T;o;;o;;I" auto; T; 15 | ;; @ ; i 16 | ;o; ;o;; i 17 | ;i;o;; i 18 | ;i;@;@;$i;%;&;[; i 19 | ;o; ;o;; i 20 | ;i;o;; i 21 | ;i;@;@;'o; ;@2;o;; i 22 | ;i;@;@;(o; ;o;; i 23 | ;i;@3;@;@; @ o;;[I"margin-right; T;o;;o;;I" auto; T; 24 | ;; @ ; i ;o; ;o;; i ;i;o;; i ;i;@;@;$i;%;&;[; i ;o; ;o;; i ;i;o;; i ;i;@;@;'o; ;@C;o;; i ;i;@;@;(o; ;o;; i ;i;@D;@;@; @ ; i;o; ;o;; i;i;o;; i;i;@;@:@has_childrenT; @ :@templateI"~// Center-align a block level element 25 | 26 | @mixin center-block() { 27 | display: block; 28 | margin-left: auto; 29 | margin-right: auto; 30 | } 31 | ; T; i;o; ;o;; i;i;o;; i;i;@;@;)T; @ -------------------------------------------------------------------------------- /template/jackson/.sass-cache/4c530804770d6947d8d9b3be2b263f881811e6ec/_center-block.scssc: -------------------------------------------------------------------------------- 1 | 3.4.18 (Selective Steve) 2 | 3191b9bbbc299c1a57b6df1fada51f5840cbd54f 3 | o:Sass::Tree::RootNode :@children[o:Sass::Tree::CommentNode 4 | : @value[I"-/* Center-align a block level element */:ET: 5 | @type: silent;[: 6 | @linei: @options{o:Sass::Tree::MixinDefNode : 7 | @nameI"center-block; T: 8 | @args[: @splat0;[o:Sass::Tree::PropNode;[I" display; T;o: Sass::Script::Tree::Literal;o: Sass::Script::Value::String;I" 9 | block; T; 10 | :identifier; @ ; i :@source_rangeo:Sass::Source::Range :@start_poso:Sass::Source::Position; i : @offseti: @end_poso;; i ;i: 11 | @fileI"M/Applications/AMPPS/www/raleway/sass/bootstrap/mixins/_center-block.scss; T:@importero: Sass::Importers::Filesystem: 12 | @rootI"$/Applications/AMPPS/www/raleway; T:@real_rootI"$/Applications/AMPPS/www/raleway; T:@same_name_warningso:Set: 13 | @hash{: 14 | @tabsi:@prop_syntax:new;[; i ;o; ;o;; i ;i;o;; i ;i;@;@:@name_source_rangeo; ;@!;o;; i ;i;@;@:@value_source_rangeo; ;o;; i ;i;@";@;@; @ o;;[I"margin-left; T;o;;o;;I" auto; T; 15 | ;; @ ; i 16 | ;o; ;o;; i 17 | ;i;o;; i 18 | ;i;@;@;$i;%;&;[; i 19 | ;o; ;o;; i 20 | ;i;o;; i 21 | ;i;@;@;'o; ;@2;o;; i 22 | ;i;@;@;(o; ;o;; i 23 | ;i;@3;@;@; @ o;;[I"margin-right; T;o;;o;;I" auto; T; 24 | ;; @ ; i ;o; ;o;; i ;i;o;; i ;i;@;@;$i;%;&;[; i ;o; ;o;; i ;i;o;; i ;i;@;@;'o; ;@C;o;; i ;i;@;@;(o; ;o;; i ;i;@D;@;@; @ ; i;o; ;o;; i;i;o;; i;i;@;@:@has_childrenT; @ :@templateI"~// Center-align a block level element 25 | 26 | @mixin center-block() { 27 | display: block; 28 | margin-left: auto; 29 | margin-right: auto; 30 | } 31 | ; T; i;o; ;o;; i;i;o;; i;i;@;@;)T; @ -------------------------------------------------------------------------------- /template/jackson/.sass-cache/e3f0abe5a50a2c3ad008c358edf35823ae2707ca/_center-block.scssc: -------------------------------------------------------------------------------- 1 | 3.4.18 (Selective Steve) 2 | 3191b9bbbc299c1a57b6df1fada51f5840cbd54f 3 | o:Sass::Tree::RootNode :@children[o:Sass::Tree::CommentNode 4 | : @value[I"-/* Center-align a block level element */:ET: 5 | @type: silent;[: 6 | @linei: @options{o:Sass::Tree::MixinDefNode : 7 | @nameI"center-block; T: 8 | @args[: @splat0;[o:Sass::Tree::PropNode;[I" display; T;o: Sass::Script::Tree::Literal;o: Sass::Script::Value::String;I" 9 | block; T; 10 | :identifier; @ ; i :@source_rangeo:Sass::Source::Range :@start_poso:Sass::Source::Position; i : @offseti: @end_poso;; i ;i: 11 | @fileI"N/Applications/AMPPS/www/vertical/sass/bootstrap/mixins/_center-block.scss; T:@importero: Sass::Importers::Filesystem: 12 | @rootI"%/Applications/AMPPS/www/vertical; T:@real_rootI"%/Applications/AMPPS/www/vertical; T:@same_name_warningso:Set: 13 | @hash{: 14 | @tabsi:@prop_syntax:new;[; i ;o; ;o;; i ;i;o;; i ;i;@;@:@name_source_rangeo; ;@!;o;; i ;i;@;@:@value_source_rangeo; ;o;; i ;i;@";@;@; @ o;;[I"margin-left; T;o;;o;;I" auto; T; 15 | ;; @ ; i 16 | ;o; ;o;; i 17 | ;i;o;; i 18 | ;i;@;@;$i;%;&;[; i 19 | ;o; ;o;; i 20 | ;i;o;; i 21 | ;i;@;@;'o; ;@2;o;; i 22 | ;i;@;@;(o; ;o;; i 23 | ;i;@3;@;@; @ o;;[I"margin-right; T;o;;o;;I" auto; T; 24 | ;; @ ; i ;o; ;o;; i ;i;o;; i ;i;@;@;$i;%;&;[; i ;o; ;o;; i ;i;o;; i ;i;@;@;'o; ;@C;o;; i ;i;@;@;(o; ;o;; i ;i;@D;@;@; @ ; i;o; ;o;; i;i;o;; i;i;@;@:@has_childrenT; @ :@templateI"~// Center-align a block level element 25 | 26 | @mixin center-block() { 27 | display: block; 28 | margin-left: auto; 29 | margin-right: auto; 30 | } 31 | ; T; i;o; ;o;; i;i;o;; i;i;@;@;)T; @ -------------------------------------------------------------------------------- /public/sass/bootstrap/_progress-bars.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Progress bars 3 | // -------------------------------------------------- 4 | 5 | 6 | // Bar animations 7 | // ------------------------- 8 | 9 | // WebKit 10 | @-webkit-keyframes progress-bar-stripes { 11 | from { background-position: 40px 0; } 12 | to { background-position: 0 0; } 13 | } 14 | 15 | // Spec and IE10+ 16 | @keyframes progress-bar-stripes { 17 | from { background-position: 40px 0; } 18 | to { background-position: 0 0; } 19 | } 20 | 21 | 22 | // Bar itself 23 | // ------------------------- 24 | 25 | // Outer container 26 | .progress { 27 | overflow: hidden; 28 | height: $line-height-computed; 29 | margin-bottom: $line-height-computed; 30 | background-color: $progress-bg; 31 | border-radius: $progress-border-radius; 32 | @include box-shadow(inset 0 1px 2px rgba(0,0,0,.1)); 33 | } 34 | 35 | // Bar of progress 36 | .progress-bar { 37 | float: left; 38 | width: 0%; 39 | height: 100%; 40 | font-size: $font-size-small; 41 | line-height: $line-height-computed; 42 | color: $progress-bar-color; 43 | text-align: center; 44 | background-color: $progress-bar-bg; 45 | @include box-shadow(inset 0 -1px 0 rgba(0,0,0,.15)); 46 | @include transition(width .6s ease); 47 | } 48 | 49 | // Striped bars 50 | // 51 | // `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the 52 | // `.progress-bar-striped` class, which you just add to an existing 53 | // `.progress-bar`. 54 | .progress-striped .progress-bar, 55 | .progress-bar-striped { 56 | @include gradient-striped; 57 | background-size: 40px 40px; 58 | } 59 | 60 | // Call animation for the active one 61 | // 62 | // `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the 63 | // `.progress-bar.active` approach. 64 | .progress.active .progress-bar, 65 | .progress-bar.active { 66 | @include animation(progress-bar-stripes 2s linear infinite); 67 | } 68 | 69 | 70 | // Variations 71 | // ------------------------- 72 | 73 | .progress-bar-success { 74 | @include progress-bar-variant($progress-bar-success-bg); 75 | } 76 | 77 | .progress-bar-info { 78 | @include progress-bar-variant($progress-bar-info-bg); 79 | } 80 | 81 | .progress-bar-warning { 82 | @include progress-bar-variant($progress-bar-warning-bg); 83 | } 84 | 85 | .progress-bar-danger { 86 | @include progress-bar-variant($progress-bar-danger-bg); 87 | } 88 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_progress-bars.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Progress bars 3 | // -------------------------------------------------- 4 | 5 | 6 | // Bar animations 7 | // ------------------------- 8 | 9 | // WebKit 10 | @-webkit-keyframes progress-bar-stripes { 11 | from { background-position: 40px 0; } 12 | to { background-position: 0 0; } 13 | } 14 | 15 | // Spec and IE10+ 16 | @keyframes progress-bar-stripes { 17 | from { background-position: 40px 0; } 18 | to { background-position: 0 0; } 19 | } 20 | 21 | 22 | // Bar itself 23 | // ------------------------- 24 | 25 | // Outer container 26 | .progress { 27 | overflow: hidden; 28 | height: $line-height-computed; 29 | margin-bottom: $line-height-computed; 30 | background-color: $progress-bg; 31 | border-radius: $progress-border-radius; 32 | @include box-shadow(inset 0 1px 2px rgba(0,0,0,.1)); 33 | } 34 | 35 | // Bar of progress 36 | .progress-bar { 37 | float: left; 38 | width: 0%; 39 | height: 100%; 40 | font-size: $font-size-small; 41 | line-height: $line-height-computed; 42 | color: $progress-bar-color; 43 | text-align: center; 44 | background-color: $progress-bar-bg; 45 | @include box-shadow(inset 0 -1px 0 rgba(0,0,0,.15)); 46 | @include transition(width .6s ease); 47 | } 48 | 49 | // Striped bars 50 | // 51 | // `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the 52 | // `.progress-bar-striped` class, which you just add to an existing 53 | // `.progress-bar`. 54 | .progress-striped .progress-bar, 55 | .progress-bar-striped { 56 | @include gradient-striped; 57 | background-size: 40px 40px; 58 | } 59 | 60 | // Call animation for the active one 61 | // 62 | // `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the 63 | // `.progress-bar.active` approach. 64 | .progress.active .progress-bar, 65 | .progress-bar.active { 66 | @include animation(progress-bar-stripes 2s linear infinite); 67 | } 68 | 69 | 70 | // Variations 71 | // ------------------------- 72 | 73 | .progress-bar-success { 74 | @include progress-bar-variant($progress-bar-success-bg); 75 | } 76 | 77 | .progress-bar-info { 78 | @include progress-bar-variant($progress-bar-info-bg); 79 | } 80 | 81 | .progress-bar-warning { 82 | @include progress-bar-variant($progress-bar-warning-bg); 83 | } 84 | 85 | .progress-bar-danger { 86 | @include progress-bar-variant($progress-bar-danger-bg); 87 | } 88 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Pagination (multiple pages) 3 | // -------------------------------------------------- 4 | .pagination { 5 | display: inline-block; 6 | padding-left: 0; 7 | margin: $line-height-computed 0; 8 | border-radius: $border-radius-base; 9 | 10 | > li { 11 | display: inline; // Remove list-style and block-level defaults 12 | > a, 13 | > span { 14 | position: relative; 15 | float: left; // Collapse white-space 16 | padding: $padding-base-vertical $padding-base-horizontal; 17 | line-height: $line-height-base; 18 | text-decoration: none; 19 | color: $pagination-color; 20 | background-color: $pagination-bg; 21 | border: 1px solid $pagination-border; 22 | margin-left: -1px; 23 | } 24 | &:first-child { 25 | > a, 26 | > span { 27 | margin-left: 0; 28 | @include border-left-radius($border-radius-base); 29 | } 30 | } 31 | &:last-child { 32 | > a, 33 | > span { 34 | @include border-right-radius($border-radius-base); 35 | } 36 | } 37 | } 38 | 39 | > li > a, 40 | > li > span { 41 | &:hover, 42 | &:focus { 43 | z-index: 3; 44 | color: $pagination-hover-color; 45 | background-color: $pagination-hover-bg; 46 | border-color: $pagination-hover-border; 47 | } 48 | } 49 | 50 | > .active > a, 51 | > .active > span { 52 | &, 53 | &:hover, 54 | &:focus { 55 | z-index: 2; 56 | color: $pagination-active-color; 57 | background-color: $pagination-active-bg; 58 | border-color: $pagination-active-border; 59 | cursor: default; 60 | } 61 | } 62 | 63 | > .disabled { 64 | > span, 65 | > span:hover, 66 | > span:focus, 67 | > a, 68 | > a:hover, 69 | > a:focus { 70 | color: $pagination-disabled-color; 71 | background-color: $pagination-disabled-bg; 72 | border-color: $pagination-disabled-border; 73 | cursor: $cursor-disabled; 74 | } 75 | } 76 | } 77 | 78 | // Sizing 79 | // -------------------------------------------------- 80 | 81 | // Large 82 | .pagination-lg { 83 | @include pagination-size($padding-large-vertical, $padding-large-horizontal, $font-size-large, $line-height-large, $border-radius-large); 84 | } 85 | 86 | // Small 87 | .pagination-sm { 88 | @include pagination-size($padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $border-radius-small); 89 | } 90 | -------------------------------------------------------------------------------- /public/sass/bootstrap/_print.scss: -------------------------------------------------------------------------------- 1 | /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ 2 | 3 | // ========================================================================== 4 | // Print styles. 5 | // Inlined to avoid the additional HTTP request: h5bp.com/r 6 | // ========================================================================== 7 | 8 | @media print { 9 | *, 10 | *:before, 11 | *:after { 12 | background: transparent !important; 13 | color: #000 !important; // Black prints faster: h5bp.com/s 14 | box-shadow: none !important; 15 | text-shadow: none !important; 16 | } 17 | 18 | a, 19 | a:visited { 20 | text-decoration: underline; 21 | } 22 | 23 | a[href]:after { 24 | content: " (" attr(href) ")"; 25 | } 26 | 27 | abbr[title]:after { 28 | content: " (" attr(title) ")"; 29 | } 30 | 31 | // Don't show links that are fragment identifiers, 32 | // or use the `javascript:` pseudo protocol 33 | a[href^="#"]:after, 34 | a[href^="javascript:"]:after { 35 | content: ""; 36 | } 37 | 38 | pre, 39 | blockquote { 40 | border: 1px solid #999; 41 | page-break-inside: avoid; 42 | } 43 | 44 | thead { 45 | display: table-header-group; // h5bp.com/t 46 | } 47 | 48 | tr, 49 | img { 50 | page-break-inside: avoid; 51 | } 52 | 53 | img { 54 | max-width: 100% !important; 55 | } 56 | 57 | p, 58 | h2, 59 | h3 { 60 | orphans: 3; 61 | widows: 3; 62 | } 63 | 64 | h2, 65 | h3 { 66 | page-break-after: avoid; 67 | } 68 | 69 | // Bootstrap specific changes start 70 | 71 | // Bootstrap components 72 | .navbar { 73 | display: none; 74 | } 75 | .btn, 76 | .dropup > .btn { 77 | > .caret { 78 | border-top-color: #000 !important; 79 | } 80 | } 81 | .label { 82 | border: 1px solid #000; 83 | } 84 | 85 | .table { 86 | border-collapse: collapse !important; 87 | 88 | td, 89 | th { 90 | background-color: #fff !important; 91 | } 92 | } 93 | .table-bordered { 94 | th, 95 | td { 96 | border: 1px solid #ddd !important; 97 | } 98 | } 99 | 100 | // Bootstrap specific changes end 101 | } 102 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Pagination (multiple pages) 3 | // -------------------------------------------------- 4 | .pagination { 5 | display: inline-block; 6 | padding-left: 0; 7 | margin: $line-height-computed 0; 8 | border-radius: $border-radius-base; 9 | 10 | > li { 11 | display: inline; // Remove list-style and block-level defaults 12 | > a, 13 | > span { 14 | position: relative; 15 | float: left; // Collapse white-space 16 | padding: $padding-base-vertical $padding-base-horizontal; 17 | line-height: $line-height-base; 18 | text-decoration: none; 19 | color: $pagination-color; 20 | background-color: $pagination-bg; 21 | border: 1px solid $pagination-border; 22 | margin-left: -1px; 23 | } 24 | &:first-child { 25 | > a, 26 | > span { 27 | margin-left: 0; 28 | @include border-left-radius($border-radius-base); 29 | } 30 | } 31 | &:last-child { 32 | > a, 33 | > span { 34 | @include border-right-radius($border-radius-base); 35 | } 36 | } 37 | } 38 | 39 | > li > a, 40 | > li > span { 41 | &:hover, 42 | &:focus { 43 | z-index: 3; 44 | color: $pagination-hover-color; 45 | background-color: $pagination-hover-bg; 46 | border-color: $pagination-hover-border; 47 | } 48 | } 49 | 50 | > .active > a, 51 | > .active > span { 52 | &, 53 | &:hover, 54 | &:focus { 55 | z-index: 2; 56 | color: $pagination-active-color; 57 | background-color: $pagination-active-bg; 58 | border-color: $pagination-active-border; 59 | cursor: default; 60 | } 61 | } 62 | 63 | > .disabled { 64 | > span, 65 | > span:hover, 66 | > span:focus, 67 | > a, 68 | > a:hover, 69 | > a:focus { 70 | color: $pagination-disabled-color; 71 | background-color: $pagination-disabled-bg; 72 | border-color: $pagination-disabled-border; 73 | cursor: $cursor-disabled; 74 | } 75 | } 76 | } 77 | 78 | // Sizing 79 | // -------------------------------------------------- 80 | 81 | // Large 82 | .pagination-lg { 83 | @include pagination-size($padding-large-vertical, $padding-large-horizontal, $font-size-large, $line-height-large, $border-radius-large); 84 | } 85 | 86 | // Small 87 | .pagination-sm { 88 | @include pagination-size($padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $border-radius-small); 89 | } 90 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/_print.scss: -------------------------------------------------------------------------------- 1 | /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ 2 | 3 | // ========================================================================== 4 | // Print styles. 5 | // Inlined to avoid the additional HTTP request: h5bp.com/r 6 | // ========================================================================== 7 | 8 | @media print { 9 | *, 10 | *:before, 11 | *:after { 12 | background: transparent !important; 13 | color: #000 !important; // Black prints faster: h5bp.com/s 14 | box-shadow: none !important; 15 | text-shadow: none !important; 16 | } 17 | 18 | a, 19 | a:visited { 20 | text-decoration: underline; 21 | } 22 | 23 | a[href]:after { 24 | content: " (" attr(href) ")"; 25 | } 26 | 27 | abbr[title]:after { 28 | content: " (" attr(title) ")"; 29 | } 30 | 31 | // Don't show links that are fragment identifiers, 32 | // or use the `javascript:` pseudo protocol 33 | a[href^="#"]:after, 34 | a[href^="javascript:"]:after { 35 | content: ""; 36 | } 37 | 38 | pre, 39 | blockquote { 40 | border: 1px solid #999; 41 | page-break-inside: avoid; 42 | } 43 | 44 | thead { 45 | display: table-header-group; // h5bp.com/t 46 | } 47 | 48 | tr, 49 | img { 50 | page-break-inside: avoid; 51 | } 52 | 53 | img { 54 | max-width: 100% !important; 55 | } 56 | 57 | p, 58 | h2, 59 | h3 { 60 | orphans: 3; 61 | widows: 3; 62 | } 63 | 64 | h2, 65 | h3 { 66 | page-break-after: avoid; 67 | } 68 | 69 | // Bootstrap specific changes start 70 | 71 | // Bootstrap components 72 | .navbar { 73 | display: none; 74 | } 75 | .btn, 76 | .dropup > .btn { 77 | > .caret { 78 | border-top-color: #000 !important; 79 | } 80 | } 81 | .label { 82 | border: 1px solid #000; 83 | } 84 | 85 | .table { 86 | border-collapse: collapse !important; 87 | 88 | td, 89 | th { 90 | background-color: #fff !important; 91 | } 92 | } 93 | .table-bordered { 94 | th, 95 | td { 96 | border: 1px solid #ddd !important; 97 | } 98 | } 99 | 100 | // Bootstrap specific changes end 101 | } 102 | -------------------------------------------------------------------------------- /public/css/owl.theme.default.min.css: -------------------------------------------------------------------------------- 1 | .owl-theme .owl-controls{margin-top:10px;text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-controls .owl-nav [class*=owl-]{color:#fff;font-size:14px;margin:5px;padding:4px 7px;background:#d6d6d6;display:inline-block;cursor:pointer;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.owl-theme .owl-controls .owl-nav [class*=owl-]:hover{background:#869791;color:#fff;text-decoration:none}.owl-theme .owl-controls .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1;*display:inline}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#d6d6d6;display:block;-webkit-backface-visibility:visible;-webkit-transition:opacity 200ms ease;-moz-transition:opacity 200ms ease;-ms-transition:opacity 200ms ease;-o-transition:opacity 200ms ease;transition:opacity 200ms ease;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791} 2 | 3 | /*.owl-theme .owl-controls { 4 | margin-top:10px; 5 | text-align:center; 6 | -webkit-tap-highlight-color:transparent 7 | } 8 | .owl-theme .owl-controls .owl-nav[class*=owl-] { 9 | color:#fff; 10 | font-size:14px; 11 | margin:5px; 12 | padding:4px 7px; 13 | background:#d6d6d6; 14 | display:inline-block; 15 | cursor:pointer; 16 | -webkit-border-radius:3px; 17 | -moz-border-radius:3px; 18 | border-radius:3px 19 | } 20 | .owl-theme .owl-controls .owl-nav[class*=owl-]:hover { 21 | background:#869791; 22 | color:#fff; 23 | text-decoration:none 24 | } 25 | .owl-theme .owl-controls .owl-nav .disabled { 26 | opacity:.5; 27 | cursor:default 28 | } 29 | .owl-theme .owl-dots .owl-dot { 30 | display:inline-block; 31 | zoom:1; 32 | *display:inline 33 | } 34 | .owl-theme .owl-dots .owl-dot span { 35 | width:10px; 36 | height:10px; 37 | margin:5px 7px; 38 | background:#d6d6d6; 39 | display:block; 40 | -webkit-backface-visibility:visible; 41 | -webkit-transition:opacity 200ms ease; 42 | -moz-transition:opacity 200ms ease; 43 | -ms-transition:opacity 200ms ease; 44 | -o-transition:opacity 200ms ease; 45 | transition:opacity 200ms ease; 46 | -webkit-border-radius:30px; 47 | -moz-border-radius:30px; 48 | border-radius:30px 49 | } 50 | .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { 51 | background:#869791 52 | }*/ -------------------------------------------------------------------------------- /template/jackson/css/owl.theme.default.min.css: -------------------------------------------------------------------------------- 1 | .owl-theme .owl-controls{margin-top:10px;text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-controls .owl-nav [class*=owl-]{color:#fff;font-size:14px;margin:5px;padding:4px 7px;background:#d6d6d6;display:inline-block;cursor:pointer;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.owl-theme .owl-controls .owl-nav [class*=owl-]:hover{background:#869791;color:#fff;text-decoration:none}.owl-theme .owl-controls .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1;*display:inline}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#d6d6d6;display:block;-webkit-backface-visibility:visible;-webkit-transition:opacity 200ms ease;-moz-transition:opacity 200ms ease;-ms-transition:opacity 200ms ease;-o-transition:opacity 200ms ease;transition:opacity 200ms ease;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791} 2 | 3 | /*.owl-theme .owl-controls { 4 | margin-top:10px; 5 | text-align:center; 6 | -webkit-tap-highlight-color:transparent 7 | } 8 | .owl-theme .owl-controls .owl-nav[class*=owl-] { 9 | color:#fff; 10 | font-size:14px; 11 | margin:5px; 12 | padding:4px 7px; 13 | background:#d6d6d6; 14 | display:inline-block; 15 | cursor:pointer; 16 | -webkit-border-radius:3px; 17 | -moz-border-radius:3px; 18 | border-radius:3px 19 | } 20 | .owl-theme .owl-controls .owl-nav[class*=owl-]:hover { 21 | background:#869791; 22 | color:#fff; 23 | text-decoration:none 24 | } 25 | .owl-theme .owl-controls .owl-nav .disabled { 26 | opacity:.5; 27 | cursor:default 28 | } 29 | .owl-theme .owl-dots .owl-dot { 30 | display:inline-block; 31 | zoom:1; 32 | *display:inline 33 | } 34 | .owl-theme .owl-dots .owl-dot span { 35 | width:10px; 36 | height:10px; 37 | margin:5px 7px; 38 | background:#d6d6d6; 39 | display:block; 40 | -webkit-backface-visibility:visible; 41 | -webkit-transition:opacity 200ms ease; 42 | -moz-transition:opacity 200ms ease; 43 | -ms-transition:opacity 200ms ease; 44 | -o-transition:opacity 200ms ease; 45 | transition:opacity 200ms ease; 46 | -webkit-border-radius:30px; 47 | -moz-border-radius:30px; 48 | border-radius:30px 49 | } 50 | .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { 51 | background:#869791 52 | }*/ -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 38 | 39 | Hello!! 40 | 41 | 42 | 43 | 44 |
45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/sass/bootstrap/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- 1 | // Framework grid generation 2 | // 3 | // Used only by Bootstrap to generate the correct number of grid classes given 4 | // any value of `$grid-columns`. 5 | 6 | // [converter] This is defined recursively in LESS, but Sass supports real loops 7 | @mixin make-grid-columns($i: 1, $list: ".col-xs-#{$i}, .col-sm-#{$i}, .col-md-#{$i}, .col-lg-#{$i}") { 8 | @for $i from (1 + 1) through $grid-columns { 9 | $list: "#{$list}, .col-xs-#{$i}, .col-sm-#{$i}, .col-md-#{$i}, .col-lg-#{$i}"; 10 | } 11 | #{$list} { 12 | position: relative; 13 | // Prevent columns from collapsing when empty 14 | min-height: 1px; 15 | // Inner gutter via padding 16 | padding-left: ceil(($grid-gutter-width / 2)); 17 | padding-right: floor(($grid-gutter-width / 2)); 18 | } 19 | } 20 | 21 | 22 | // [converter] This is defined recursively in LESS, but Sass supports real loops 23 | @mixin float-grid-columns($class, $i: 1, $list: ".col-#{$class}-#{$i}") { 24 | @for $i from (1 + 1) through $grid-columns { 25 | $list: "#{$list}, .col-#{$class}-#{$i}"; 26 | } 27 | #{$list} { 28 | float: left; 29 | } 30 | } 31 | 32 | 33 | @mixin calc-grid-column($index, $class, $type) { 34 | @if ($type == width) and ($index > 0) { 35 | .col-#{$class}-#{$index} { 36 | width: percentage(($index / $grid-columns)); 37 | } 38 | } 39 | @if ($type == push) and ($index > 0) { 40 | .col-#{$class}-push-#{$index} { 41 | left: percentage(($index / $grid-columns)); 42 | } 43 | } 44 | @if ($type == push) and ($index == 0) { 45 | .col-#{$class}-push-0 { 46 | left: auto; 47 | } 48 | } 49 | @if ($type == pull) and ($index > 0) { 50 | .col-#{$class}-pull-#{$index} { 51 | right: percentage(($index / $grid-columns)); 52 | } 53 | } 54 | @if ($type == pull) and ($index == 0) { 55 | .col-#{$class}-pull-0 { 56 | right: auto; 57 | } 58 | } 59 | @if ($type == offset) { 60 | .col-#{$class}-offset-#{$index} { 61 | margin-left: percentage(($index / $grid-columns)); 62 | } 63 | } 64 | } 65 | 66 | // [converter] This is defined recursively in LESS, but Sass supports real loops 67 | @mixin loop-grid-columns($columns, $class, $type) { 68 | @for $i from 0 through $columns { 69 | @include calc-grid-column($i, $class, $type); 70 | } 71 | } 72 | 73 | 74 | // Create grid for specific class 75 | @mixin make-grid($class) { 76 | @include float-grid-columns($class); 77 | @include loop-grid-columns($grid-columns, $class, width); 78 | @include loop-grid-columns($grid-columns, $class, pull); 79 | @include loop-grid-columns($grid-columns, $class, push); 80 | @include loop-grid-columns($grid-columns, $class, offset); 81 | } 82 | -------------------------------------------------------------------------------- /template/jackson/sass/bootstrap/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- 1 | // Framework grid generation 2 | // 3 | // Used only by Bootstrap to generate the correct number of grid classes given 4 | // any value of `$grid-columns`. 5 | 6 | // [converter] This is defined recursively in LESS, but Sass supports real loops 7 | @mixin make-grid-columns($i: 1, $list: ".col-xs-#{$i}, .col-sm-#{$i}, .col-md-#{$i}, .col-lg-#{$i}") { 8 | @for $i from (1 + 1) through $grid-columns { 9 | $list: "#{$list}, .col-xs-#{$i}, .col-sm-#{$i}, .col-md-#{$i}, .col-lg-#{$i}"; 10 | } 11 | #{$list} { 12 | position: relative; 13 | // Prevent columns from collapsing when empty 14 | min-height: 1px; 15 | // Inner gutter via padding 16 | padding-left: ceil(($grid-gutter-width / 2)); 17 | padding-right: floor(($grid-gutter-width / 2)); 18 | } 19 | } 20 | 21 | 22 | // [converter] This is defined recursively in LESS, but Sass supports real loops 23 | @mixin float-grid-columns($class, $i: 1, $list: ".col-#{$class}-#{$i}") { 24 | @for $i from (1 + 1) through $grid-columns { 25 | $list: "#{$list}, .col-#{$class}-#{$i}"; 26 | } 27 | #{$list} { 28 | float: left; 29 | } 30 | } 31 | 32 | 33 | @mixin calc-grid-column($index, $class, $type) { 34 | @if ($type == width) and ($index > 0) { 35 | .col-#{$class}-#{$index} { 36 | width: percentage(($index / $grid-columns)); 37 | } 38 | } 39 | @if ($type == push) and ($index > 0) { 40 | .col-#{$class}-push-#{$index} { 41 | left: percentage(($index / $grid-columns)); 42 | } 43 | } 44 | @if ($type == push) and ($index == 0) { 45 | .col-#{$class}-push-0 { 46 | left: auto; 47 | } 48 | } 49 | @if ($type == pull) and ($index > 0) { 50 | .col-#{$class}-pull-#{$index} { 51 | right: percentage(($index / $grid-columns)); 52 | } 53 | } 54 | @if ($type == pull) and ($index == 0) { 55 | .col-#{$class}-pull-0 { 56 | right: auto; 57 | } 58 | } 59 | @if ($type == offset) { 60 | .col-#{$class}-offset-#{$index} { 61 | margin-left: percentage(($index / $grid-columns)); 62 | } 63 | } 64 | } 65 | 66 | // [converter] This is defined recursively in LESS, but Sass supports real loops 67 | @mixin loop-grid-columns($columns, $class, $type) { 68 | @for $i from 0 through $columns { 69 | @include calc-grid-column($i, $class, $type); 70 | } 71 | } 72 | 73 | 74 | // Create grid for specific class 75 | @mixin make-grid($class) { 76 | @include float-grid-columns($class); 77 | @include loop-grid-columns($grid-columns, $class, width); 78 | @include loop-grid-columns($grid-columns, $class, pull); 79 | @include loop-grid-columns($grid-columns, $class, push); 80 | @include loop-grid-columns($grid-columns, $class, offset); 81 | } 82 | -------------------------------------------------------------------------------- /public/js/google_map.js: -------------------------------------------------------------------------------- 1 | 2 | var google; 3 | 4 | function init() { 5 | // Basic options for a simple Google Map 6 | // For more options see: https://developers.google.com/maps/documentation/javascript/reference#MapOptions 7 | // var myLatlng = new google.maps.LatLng(40.71751, -73.990922); 8 | var myLatlng = new google.maps.LatLng(40.69847032728747, -73.9514422416687); 9 | // 39.399872 10 | // -8.224454 11 | 12 | var mapOptions = { 13 | // How zoomed in you want the map to start at (always required) 14 | zoom: 7, 15 | 16 | // The latitude and longitude to center the map (always required) 17 | center: myLatlng, 18 | 19 | // How you would like to style the map. 20 | scrollwheel: false, 21 | styles: [{"featureType":"administrative.land_parcel","elementType":"all","stylers":[{"visibility":"off"}]},{"featureType":"landscape.man_made","elementType":"all","stylers":[{"visibility":"off"}]},{"featureType":"poi","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"road","elementType":"labels","stylers":[{"visibility":"simplified"},{"lightness":20}]},{"featureType":"road.highway","elementType":"geometry","stylers":[{"hue":"#f49935"}]},{"featureType":"road.highway","elementType":"labels","stylers":[{"visibility":"simplified"}]},{"featureType":"road.arterial","elementType":"geometry","stylers":[{"hue":"#fad959"}]},{"featureType":"road.arterial","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"road.local","elementType":"geometry","stylers":[{"visibility":"simplified"}]},{"featureType":"road.local","elementType":"labels","stylers":[{"visibility":"simplified"}]},{"featureType":"transit","elementType":"all","stylers":[{"visibility":"off"}]},{"featureType":"water","elementType":"all","stylers":[{"hue":"#a1cdfc"},{"saturation":30},{"lightness":49}]}] 22 | }; 23 | 24 | 25 | 26 | // Get the HTML DOM element that will contain your map 27 | // We are using a div with id="map" seen below in the 28 | var mapElement = document.getElementById('map'); 29 | 30 | // Create the Google Map using out element and options defined above 31 | var map = new google.maps.Map(mapElement, mapOptions); 32 | 33 | var addresses = ['Brooklyn']; 34 | 35 | for (var x = 0; x < addresses.length; x++) { 36 | $.getJSON('http://maps.googleapis.com/maps/api/geocode/json?address='+addresses[x]+'&sensor=false', null, function (data) { 37 | var p = data.results[0].geometry.location 38 | var latlng = new google.maps.LatLng(p.lat, p.lng); 39 | new google.maps.Marker({ 40 | position: latlng, 41 | map: map, 42 | icon: 'images/loc.png' 43 | }); 44 | 45 | }); 46 | } 47 | 48 | } 49 | google.maps.event.addDomListener(window, 'load', init); -------------------------------------------------------------------------------- /template/jackson/js/google_map.js: -------------------------------------------------------------------------------- 1 | 2 | var google; 3 | 4 | function init() { 5 | // Basic options for a simple Google Map 6 | // For more options see: https://developers.google.com/maps/documentation/javascript/reference#MapOptions 7 | // var myLatlng = new google.maps.LatLng(40.71751, -73.990922); 8 | var myLatlng = new google.maps.LatLng(40.69847032728747, -73.9514422416687); 9 | // 39.399872 10 | // -8.224454 11 | 12 | var mapOptions = { 13 | // How zoomed in you want the map to start at (always required) 14 | zoom: 7, 15 | 16 | // The latitude and longitude to center the map (always required) 17 | center: myLatlng, 18 | 19 | // How you would like to style the map. 20 | scrollwheel: false, 21 | styles: [{"featureType":"administrative.land_parcel","elementType":"all","stylers":[{"visibility":"off"}]},{"featureType":"landscape.man_made","elementType":"all","stylers":[{"visibility":"off"}]},{"featureType":"poi","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"road","elementType":"labels","stylers":[{"visibility":"simplified"},{"lightness":20}]},{"featureType":"road.highway","elementType":"geometry","stylers":[{"hue":"#f49935"}]},{"featureType":"road.highway","elementType":"labels","stylers":[{"visibility":"simplified"}]},{"featureType":"road.arterial","elementType":"geometry","stylers":[{"hue":"#fad959"}]},{"featureType":"road.arterial","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"road.local","elementType":"geometry","stylers":[{"visibility":"simplified"}]},{"featureType":"road.local","elementType":"labels","stylers":[{"visibility":"simplified"}]},{"featureType":"transit","elementType":"all","stylers":[{"visibility":"off"}]},{"featureType":"water","elementType":"all","stylers":[{"hue":"#a1cdfc"},{"saturation":30},{"lightness":49}]}] 22 | }; 23 | 24 | 25 | 26 | // Get the HTML DOM element that will contain your map 27 | // We are using a div with id="map" seen below in the 28 | var mapElement = document.getElementById('map'); 29 | 30 | // Create the Google Map using out element and options defined above 31 | var map = new google.maps.Map(mapElement, mapOptions); 32 | 33 | var addresses = ['Brooklyn']; 34 | 35 | for (var x = 0; x < addresses.length; x++) { 36 | $.getJSON('http://maps.googleapis.com/maps/api/geocode/json?address='+addresses[x]+'&sensor=false', null, function (data) { 37 | var p = data.results[0].geometry.location 38 | var latlng = new google.maps.LatLng(p.lat, p.lng); 39 | new google.maps.Marker({ 40 | position: latlng, 41 | map: map, 42 | icon: 'images/loc.png' 43 | }); 44 | 45 | }); 46 | } 47 | 48 | } 49 | google.maps.event.addDomListener(window, 'load', init); -------------------------------------------------------------------------------- /src/components/blog.jsx: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react' 2 | 3 | export default class Blog extends Component { 4 | render() { 5 | return ( 6 |
7 |
8 |
9 |
10 |
11 | Read 12 |

Recent Blog

13 |
14 |
15 |
16 |
17 |
18 | HTML5 Bootstrap Template by colorlib.com 19 |
20 | April 14, 2018 | Web Design | 4 21 |

Renovating National Gallery

22 |

Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.

23 |
24 |
25 |
26 |
27 |
28 | HTML5 Bootstrap Template by colorlib.com 29 |
30 | April 14, 2018 | Web Design | 4 31 |

Wordpress for a Beginner

32 |

Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.

33 |
34 |
35 |
36 |
37 |
38 | HTML5 Bootstrap Template by colorlib.com 39 |
40 | April 14, 2018 | Inspiration | 4 41 |

Make website from scratch

42 |

Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.

43 |
44 |
45 |
46 |
47 |
48 |
49 |

Load more

50 |
51 |
52 |
53 |
54 |
55 | ) 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /src/components/sidebar.jsx: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react' 2 | 3 | export default class Sidebar extends Component { 4 | render() { 5 | return ( 6 |
7 |
8 | 9 |