2020-07-08 19:36:36 +02:00
|
|
|
import styled from "styled-components";
|
2021-03-21 18:05:24 +01:00
|
|
|
import selectedTheme from "../lib/theme";
|
2020-07-08 19:36:36 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
`;
|