2020-07-08 19:36:36 +02:00
|
|
|
import React from "react";
|
|
|
|
import styled from "styled-components";
|
|
|
|
import selectedTheme from "./themeManager";
|
|
|
|
import Icon from "./icon";
|
|
|
|
|
|
|
|
// File for elements that are/can be reused across the entire site.
|
|
|
|
|
|
|
|
export const ListContainer = styled.div`
|
|
|
|
padding: 2rem 0;
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const Headline = styled.h2`
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: 900;
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
color: ${selectedTheme.mainColor};
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const SubHeadline = styled.h3`
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: 700;
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin: 0;
|
|
|
|
color: ${selectedTheme.mainColor};
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const ItemList = styled.ul`
|
|
|
|
display: grid;
|
2020-07-10 00:04:47 +02:00
|
|
|
grid-template-columns: repeat(4, 1fr);
|
2020-07-08 19:36:36 +02:00
|
|
|
grid-gap: 1rem;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
2020-07-10 00:04:47 +02:00
|
|
|
|
|
|
|
@media (max-width: 750px) {
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
|
|
}
|
2020-07-08 19:36:36 +02:00
|
|
|
`;
|
|
|
|
|
|
|
|
export const Item = styled.li`
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
list-style: none;
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const Button = styled.button`
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 400;
|
|
|
|
border: 1px solid ${selectedTheme.mainColor};
|
|
|
|
color: ${selectedTheme.mainColor};
|
|
|
|
background: none;
|
2021-03-21 10:55:27 +01:00
|
|
|
|
|
|
|
min-height: 2rem;
|
2020-07-08 19:36:36 +02:00
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const StyledButton = styled.button`
|
|
|
|
float: right;
|
|
|
|
border: none;
|
|
|
|
background: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const RefreshButton = styled(Button)`
|
|
|
|
display: relative;
|
|
|
|
top: 0;
|
|
|
|
float: right;
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const ErrorMessage = styled.p`
|
|
|
|
color: red;
|
|
|
|
`;
|
|
|
|
|
|
|
|
interface IIconButtonProps {
|
2020-07-09 16:22:18 +02:00
|
|
|
icon: string;
|
2020-07-08 19:36:36 +02:00
|
|
|
onClick: any;
|
|
|
|
}
|
|
|
|
|
2020-07-09 16:22:18 +02:00
|
|
|
export const IconButton = ({ icon, onClick }: IIconButtonProps) => (
|
|
|
|
<StyledButton onClick={onClick}>
|
|
|
|
<Icon name={icon} />
|
|
|
|
</StyledButton>
|
|
|
|
);
|