* show copy button on focs * change base link styling * text-decoration underline on basic links * basic hover and focus styles on button and tabs * add links in footer * change breakpoints vars * medium breakpoint on footer
144 lines
3.4 KiB
TypeScript
144 lines
3.4 KiB
TypeScript
import * as React from 'react';
|
|
import styled from 'styled-components';
|
|
|
|
import { Alpha, Beta } from './Typography';
|
|
import { withContext, Props } from './withContext';
|
|
import Container from './Container';
|
|
import { media } from '../variables';
|
|
|
|
import MainIcon from 'ts/icons/logos/0x.svg';
|
|
import compiler from 'ts/context/compiler';
|
|
import cov from 'ts/context/cov';
|
|
import profiler from 'ts/context/profiler';
|
|
import trace from 'ts/context/trace';
|
|
|
|
const tools = [trace, cov, compiler, profiler];
|
|
|
|
function Footer(props: Props) {
|
|
const { colors } = props;
|
|
|
|
return (
|
|
<StyledFooter background={colors.secondary}>
|
|
<Container>
|
|
<Top>
|
|
<Alpha>Other tools by 0x</Alpha>
|
|
<List>
|
|
{tools.map(({ title, subtitle, icon }) => (
|
|
<ListItem key={title}>
|
|
<Icon as={icon} />
|
|
<div>
|
|
<Beta>
|
|
<StyledLink colors={colors} href="#">
|
|
{title}
|
|
</StyledLink>
|
|
</Beta>
|
|
<p>{subtitle}</p>
|
|
</div>
|
|
</ListItem>
|
|
))}
|
|
</List>
|
|
</Top>
|
|
<Media as="aside">
|
|
<Icon as={MainIcon} />
|
|
<Small>
|
|
Built by 0x. 0x is an open, permissionless protocol allowing for ERC20 tokens to be traded on
|
|
the Ethereum blockchain.
|
|
</Small>
|
|
</Media>
|
|
</Container>
|
|
</StyledFooter>
|
|
);
|
|
}
|
|
|
|
const StyledFooter = styled.footer`
|
|
background-color: ${(props: { background: string }) => props.background};
|
|
padding-top: 6.25rem;
|
|
padding-bottom: 5.4375rem;
|
|
|
|
${media.small`padding-top: 2.5rem;`};
|
|
`;
|
|
|
|
const Top = styled.div`
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 9.375rem;
|
|
|
|
${media.medium`
|
|
display: block;
|
|
margin-bottom: 5.3125rem;
|
|
`};
|
|
|
|
${Alpha} {
|
|
${media.medium`margin-bottom: 3.8125rem;`};
|
|
}
|
|
`;
|
|
|
|
const Icon = styled.div`
|
|
margin-right: 1.3125rem;
|
|
flex-shrink: 0;
|
|
${media.small`margin-right: 0.9375rem`};
|
|
`;
|
|
|
|
const Media = styled.div`
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
${Icon} {
|
|
align-self: flex-start;
|
|
}
|
|
`;
|
|
|
|
const List = styled.ul`
|
|
display: flex;
|
|
width: 66.693548387%;
|
|
flex-wrap: wrap;
|
|
flex-direction: row;
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
${media.medium`
|
|
|
|
width: 100%;
|
|
`};
|
|
|
|
${media.small`
|
|
display: block;
|
|
`};
|
|
`;
|
|
|
|
const ListItem = styled.li`
|
|
display: flex;
|
|
align-items: center;
|
|
flex-basis: 50%;
|
|
margin-bottom: 3.3125rem;
|
|
|
|
:nth-last-of-type(-n + 2) {
|
|
margin-bottom: 0;
|
|
|
|
${media.small`margin-bottom: 1.875rem`};
|
|
}
|
|
|
|
${media.small`
|
|
margin-bottom: 1.875rem
|
|
:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
`};
|
|
`;
|
|
|
|
const Small = styled.small`
|
|
font-size: 1em;
|
|
max-width: 37.5rem;
|
|
`;
|
|
|
|
const StyledLink =
|
|
styled.a <
|
|
{ colors: any } >
|
|
`
|
|
:hover {
|
|
color: ${props => props.colors.main};
|
|
}
|
|
`;
|
|
|
|
export default withContext(Footer);
|