File size: 1,342 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
import styled from 'styled-components/macro';
export const Container = styled.div`
display: flex;
justify-content: center;
height: 100%;
margin-top: 20px;
flex-wrap: wrap;
@media (max-width: 1100px) {
flex-direction: column;
align-items: center;
}
`;
export const Input = styled.input`
max-width: 450px;
width: 100%;
border: 0;
padding: 10px;
height: 70px;
box-sizing: border-box;
`;
export const Button = styled.button`
display: flex;
align-items: center;
height: 70px;
background: #e50914;
color: white;
text-transform: uppercase;
padding: 0 32px;
font-size: 26px;
border: 0;
cursor: pointer;
&:hover {
background: #f40612;
}
@media (max-width: 1000px) {
height: 50px;
font-size: 16px;
margin-top: 20px;
font-weight: bold;
}
img {
margin-left: 10px;
filter: brightness(0) invert(1);
width: 24px;
@media (max-width: 1000px) {
width: 16px;
}
}
`;
export const Text = styled.p`
font-size: 19.2px;
color: white;
text-align: center;
@media (max-width: 600px) {
font-size: 16px;
line-height: 22px;
}
`;
export const Break = styled.div`
flex-basis: 100%;
height: 0;
`; |