diff --git a/landing/footer.css b/landing/footer.css --- a/landing/footer.css +++ b/landing/footer.css @@ -1,8 +1,7 @@ footer.wrapper { display: flex; justify-content: center; - background: rgba(235, 235, 235, 0.05); - backdrop-filter: blur(12px); + background: var(--black-100); position: sticky; top: 100vh; } @@ -13,37 +12,83 @@ } .navigation { + display: flex; + justify-content: space-between; + margin-bottom: 40px; +} + +.linksContainer { display: flex; flex-direction: column; + row-gap: 16px; +} + +.socialIconsContainer { + display: flex; + align-items: flex-end; + column-gap: 24px; } -.navigation a { - font-size: clamp(1rem, 0.8954rem + 0.5229vw, 1.5rem); - font-weight: 400; +.legalContainer { + border-top: 1px solid var(--black-70); + padding-top: 40px; + display: flex; + justify-content: space-between; +} + +.legalLinks { + display: flex; + column-gap: 32px; + align-items: center; } -.navigation svg { +.navLinkIcons { + color: var(--white-60); margin-left: 8px; } -.navigation a, -.navigation svg { - color: #808080; +.socialIcons { + color: var(--white-100); +} + +.links { + color: var(--white-60); transition: 150ms; transition-property: color; } -.navigation a:hover, -.navigation a:hover svg { - color: #ffffff; +.links:hover, +.navLinkIcons:hover { + color: var(--white-100); transition: 150ms; transition-property: color; } a.logo { - font-family: var(--sans-serif); - font-weight: 500; - color: var(--logo-color); - font-size: 28px; + color: var(--white-100); padding-bottom: 16px; } + +.copyrightText { + color: var(--white-60); +} + +@media screen and (max-width: 600px) { + .navigation, + .legalContainer { + flex-direction: column; + } + + .socialIcons, + .legalLinks { + margin-top: 16px; + } + + .navigation { + margin-bottom: 24px; + } + + .legalContainer { + padding-top: 24px; + } +} diff --git a/landing/footer.react.js b/landing/footer.react.js --- a/landing/footer.react.js +++ b/landing/footer.react.js @@ -1,11 +1,14 @@ // @flow -import { faExternalLinkSquareAlt } from '@fortawesome/free-solid-svg-icons'; +import { faTwitter, faGithub } from '@fortawesome/free-brands-svg-icons'; +import { faExternalLinkAlt } from '@fortawesome/free-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import classNames from 'classnames'; import * as React from 'react'; import { NavLink } from 'react-router-dom'; import css from './footer.css'; +import typography from './typography.css'; const navLinkProps = { activeStyle: { @@ -15,47 +18,116 @@ }; function Footer(): React.Node { + const logoClassName = classNames([typography.heading2, css.logo]); + const navLinkClassName = classNames([typography.paragraph1, css.links]); + const legalTextClassName = classNames([ + typography.paragraph2, + css.copyrightText, + ]); + const legalLinksClassName = classNames([typography.paragraph2, css.links]); + return (