Files
developer-roadmap/components/hero-section/style.js

30 lines
436 B
JavaScript
Raw Normal View History

2019-10-19 21:24:16 +04:00
import styled from 'styled-components';
export const HeroSectionWrap = styled.div`
2019-09-04 15:27:00 +04:00
text-align: center;
2019-09-07 15:26:35 +04:00
padding: 70px 20px;
margin: 0 auto;
.container {
max-width: 800px;
}
2019-09-04 15:27:00 +04:00
h1 {
2019-09-07 15:26:35 +04:00
font-size: 70px;
2019-09-04 15:27:00 +04:00
font-weight: 700;
2019-09-07 15:26:35 +04:00
margin-bottom: 25px;
2019-09-04 15:27:00 +04:00
}
p {
2019-09-07 15:26:35 +04:00
font-size: 20px;
2019-09-04 15:27:00 +04:00
color: #333;
2019-09-07 15:26:35 +04:00
font-weight: 400;
margin-bottom: 0;
line-height: 35px;
2019-09-04 15:53:59 +04:00
}
2019-09-07 15:26:35 +04:00
a {
font-weight: 700;
color: #000;
2019-09-04 15:27:00 +04:00
}
2019-10-19 21:24:16 +04:00
`;