Files
developer-roadmap/components/guide-header/style.js

54 lines
906 B
JavaScript
Raw Normal View History

2019-11-01 20:51:32 +04:00
import styled from 'styled-components';
export const HeaderWrap = styled.div`
padding: 80px 15px 45px;
text-align: center;
2019-11-02 19:41:40 +04:00
margin-bottom: 35px;
2019-11-01 20:51:32 +04:00
`;
export const GuideTitle = styled.h1`
font-weight: 700;
font-size: 46px;
margin: 12px 0;
`;
export const GuideSubtitle = styled.p`
margin-bottom: 0;
font-size: 16px;
color: #444;
`;
export const GuideMeta = styled.p`
margin-bottom: 0;
color: #757575;
font-size: 13px;
font-weight: 400;
`;
export const GuideDate = styled.span`
margin-left: 7px;
2019-11-01 21:02:55 +04:00
margin-right: 7px;
2019-11-01 20:51:32 +04:00
`;
2019-11-01 21:02:55 +04:00
2019-11-01 20:51:32 +04:00
export const GuideAuthor = styled.a`
margin-right: 7px;
font-weight: 500;
color: #101010;
&:hover {
color: #101010;
}
`;
2019-11-01 21:02:55 +04:00
2019-11-01 20:51:32 +04:00
export const AuthorImage = styled.img`
width: 22px;
height: 22px;
border-radius: 100%;
margin-right: 10px;
2019-11-01 21:02:55 +04:00
`;
export const EditGuide = styled.a`
margin-left: 7px;
`;
export const ActionItems = styled.div``;