Skip to content

Instantly share code, notes, and snippets.

@muchirijane
Created November 15, 2020 10:19
Show Gist options
  • Save muchirijane/d34e08fb862862c3bc674930e16052e1 to your computer and use it in GitHub Desktop.
Save muchirijane/d34e08fb862862c3bc674930e16052e1 to your computer and use it in GitHub Desktop.
import styled from 'styled-components';
import {Link} from 'react-router-dom';
import ImgBg from '../../images/hero-bg.png';
export const HeroContainer = styled.div`
background-image: linear-gradient( to top right, rgba(11, 10, 10, 0.38), rgba(11, 10, 10, 0.19)), url(${ImgBg});
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 74vh;
@media only screen and (max-width:1600px) {
height: 85vh;
}
`;
export const HeroContent = styled.section`
height: 100%;
width: 100%;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: #FFFEFE;
@media only screen and (max-width:375px) {
text-align: start;
height: 80%;
}
`;
export const HeroContentText = styled.div`
width: 50%;
padding-top: 5rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
@media only screen and (max-width:600px) {
width: 80%;
}
@media only screen and (max-width:375px) {
position: absolute;
align-items: flex-start;
}
`;
export const HeroTitle = styled.h1`
font-size: clamp(1rem, 10vw, 5rem);
font-weight: 900;
letter-spacing: .5rem;
line-height: 1.3;
`;
export const HeroTitleText = styled.span`
display: block;
`;
export const HeroSubTitle = styled.h2`
font-size: clamp(2rem, 3vw, 4rem);
font-weight: 300;
letter-spacing: 1rem;
padding-top: 1rem;
`;
export const HeroText = styled.h3`
font-size: clamp(2rem, 2.5vw, 3rem);
font-weight: 400;
padding: 2.5rem 2rem;
@media only screen and (max-width:375px) {
padding: 1.5rem 0;
}
`;
export const HeroBtn = styled(Link)`
text-decoration: none;
outline: none;
border: none;
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment