diff --git a/src/client/components/footer.js b/src/client/components/footer.js index a2894cab8b..d024804421 100644 --- a/src/client/components/footer.js +++ b/src/client/components/footer.js @@ -18,74 +18,107 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -import * as bootstrap from 'react-bootstrap'; - -import PropTypes from 'prop-types'; import React from 'react'; -const {Col, Container, Row} = bootstrap; - -function Footer(props) { - const {repositoryUrl, siteRevision} = props; - +function Footer() { return ( - + + ); } -Footer.displayName = 'Footer'; -Footer.propTypes = { - repositoryUrl: PropTypes.string.isRequired, - siteRevision: PropTypes.string.isRequired -}; - export default Footer; diff --git a/src/client/stylesheets/Bookshelf.jpg b/src/client/stylesheets/Bookshelf.jpg deleted file mode 100644 index dd40984fd4..0000000000 Binary files a/src/client/stylesheets/Bookshelf.jpg and /dev/null differ diff --git a/src/client/stylesheets/style.scss b/src/client/stylesheets/style.scss index 4da5a1dd87..20853f4d13 100644 --- a/src/client/stylesheets/style.scss +++ b/src/client/stylesheets/style.scss @@ -42,7 +42,7 @@ $disabled-color: lighten($disabled-bg,15%); // The following prevents menu items from wrapping to two lines (icon on top text on the bottom) // in browsers sizes between collapsed menu and enough horizontal space for all menu items white-space: nowrap; - + & > .disabled > a { color: $disabled-color; background: $disabled-bg; @@ -238,11 +238,32 @@ html { position: relative; min-height: 100%; } -.footer { - position: absolute; - width: 100%; - background-color: #f5f5f5; - bottom: 0; +/* Footer */ +.section-footer { + background: #ffffff; + color: #000000; + padding-bottom: 10px; + margin-top: 2rem; + border-top-width: 2px; + border-top-style: solid; + border-top-color: #ddd; +} +.section-footer ul { + line-height: 2; +} +.section-footer .item-list-a i { + font-size: 18px; + padding-right: 4px; + color: #000000; +} +.center-p{ + color: #000000; + text-align: center; + padding-top: 20px; +} +.section-line{ + padding-top: 30px; + border-top: 1px solid #ddd; } .contact-text { color: rgb(180, 180, 180); @@ -257,7 +278,7 @@ a.contact-text:visited { /* index page */ /* ========== */ #background-image { - background:url(./Bookshelf.jpg); + background: linear-gradient(to right, #483a28 0%, #000000 100%); -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover;