docs: Improve home page
authorMark D. Blackwell <markdblackwell01@gmail.com>
Sun, 2 Oct 2016 02:19:22 +0000 (22:19 -0400)
committerMark D. Blackwell <markdblackwell01@gmail.com>
Sun, 2 Oct 2016 02:19:22 +0000 (22:19 -0400)
commit88ec7d88d1b77a407fd1050d107f3c58ab1804da
treed99c892f5fe2a7222fd8c0a2ce0e4b745059e9e0
parentffbf3dd31978b96a15452edc2823fc2f6fce8601
docs: Improve home page

Organize CSS and Javascript files into directories, separating vendor
source code from home-grown.

Separate new properties and selectors in Bootstrap CSS (already edited
for Hugo) from:
1. Original property values; and
2. Changed property values.

For the home page:

1. Clarify the English text;
2. Add some element names to classes in CSS selectors (to speed loading);
3. Document the Owl Carousel and Highlight.js versions;
4. Add Owl Carousel's license;
5. Restore HTML comments to browser source views;
6. Make the beginning GitHub button transparent on focus (like the others);

7. For the final, colored Twitter and Github buttons:
  a. Remove the dotted box on focus; and
  b. Color them green on active.

8. To increase (layout/) source readability:
  a. Place `class` attributes before `href` attributes;
  b. In `class` attributes, place more-specific class names before
     less-specific; and
  c. Comment the beginnings and ends of Bootstrap rows.

9. To increase understandability during development:
  a. Document the meaning of CSS file, `HPstyles` by renaming it to
     `home-page-style`;
  b. Move inline styling to CSS stylesheets;
  c. Separate @media queries to a file;
  d. Separate the inline Owl Carousel custom Javascript to a file;
  e. Use regular Owl Carousel CSS files instead of minified ones; and
  f. Rename the wide, landscape desk background image filename from
     `desk-long` to `desk-wide`.
50 files changed:
docs/layouts/index.html
docs/layouts/partials/footer.html
docs/layouts/partials/header.html
docs/static/assets/font-awesome/css/font-awesome.min.css [deleted file]
docs/static/assets/font-awesome/fonts/FontAwesome.otf [deleted file]
docs/static/assets/font-awesome/fonts/fontawesome-webfont.eot [deleted file]
docs/static/assets/font-awesome/fonts/fontawesome-webfont.svg [deleted file]
docs/static/assets/font-awesome/fonts/fontawesome-webfont.ttf [deleted file]
docs/static/assets/font-awesome/fonts/fontawesome-webfont.woff [deleted file]
docs/static/assets/font-awesome/fonts/fontawesome-webfont.woff2 [deleted file]
docs/static/css/HPstyles.css [deleted file]
docs/static/css/bootstrap-additions-gohugo.css [new file with mode: 0644]
docs/static/css/bootstrap-changes-gohugo.css [new file with mode: 0644]
docs/static/css/bootstrap-gohugo.css [deleted file]
docs/static/css/bootstrap-stripped-gohugo.css [new file with mode: 0644]
docs/static/css/home-page-style-responsive.css [new file with mode: 0644]
docs/static/css/home-page-style.css [new file with mode: 0644]
docs/static/css/monokai-sublime.css [deleted file]
docs/static/css/owl.carousel.css [deleted file]
docs/static/css/owl.carousel.min.css [deleted file]
docs/static/css/owl.theme.default.css [deleted file]
docs/static/css/owl.theme.default.min.css [deleted file]
docs/static/img/desk-long.jpg [deleted file]
docs/static/img/desk-wide.jpg [new file with mode: 0644]
docs/static/js/bootstrap.min.js [deleted file]
docs/static/js/highlight.pack.js [deleted file]
docs/static/js/instantclick.min.js [deleted file]
docs/static/js/jquery-2.1.4.min.js [deleted file]
docs/static/js/jquery.scrollTo.min.js [deleted file]
docs/static/js/owl.carousel-custom.js [new file with mode: 0644]
docs/static/js/owl.carousel.min.js [deleted file]
docs/static/vendor/OwlCarousel2/LICENSE [new file with mode: 0644]
docs/static/vendor/OwlCarousel2/css/owl.carousel.css [new file with mode: 0644]
docs/static/vendor/OwlCarousel2/css/owl.theme.default.css [new file with mode: 0644]
docs/static/vendor/OwlCarousel2/js/owl.carousel.min.js [new file with mode: 0644]
docs/static/vendor/OwlCarousel2/notes.txt [new file with mode: 0644]
docs/static/vendor/dieulot/js/instantclick.min.js [new file with mode: 0644]
docs/static/vendor/flesler/js/jquery.scrollTo.min.js [new file with mode: 0644]
docs/static/vendor/font-awesome/css/font-awesome.min.css [new file with mode: 0644]
docs/static/vendor/font-awesome/fonts/FontAwesome.otf [new file with mode: 0644]
docs/static/vendor/font-awesome/fonts/fontawesome-webfont.eot [new file with mode: 0644]
docs/static/vendor/font-awesome/fonts/fontawesome-webfont.svg [new file with mode: 0644]
docs/static/vendor/font-awesome/fonts/fontawesome-webfont.ttf [new file with mode: 0644]
docs/static/vendor/font-awesome/fonts/fontawesome-webfont.woff [new file with mode: 0644]
docs/static/vendor/font-awesome/fonts/fontawesome-webfont.woff2 [new file with mode: 0644]
docs/static/vendor/highlightjs/css/monokai-sublime.css [new file with mode: 0644]
docs/static/vendor/highlightjs/js/highlight.pack.js [new file with mode: 0644]
docs/static/vendor/highlightjs/notes.txt [new file with mode: 0644]
docs/static/vendor/jquery/js/jquery-2.1.4.min.js [new file with mode: 0644]
docs/static/vendor/twitter/js/bootstrap.min.js [new file with mode: 0644]