computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
462 B
31 lines
462 B
5 years ago
|
import styled from 'styled-components';
|
||
|
|
||
|
export const HeaderWrap = styled.div`
|
||
|
text-align: center;
|
||
|
padding: 45px 30px;
|
||
|
`;
|
||
|
|
||
|
export const Title = styled.h1`
|
||
|
font-size: 40px;
|
||
|
font-weight: 700;
|
||
|
margin-bottom: 12px;
|
||
|
`;
|
||
|
|
||
|
export const Subtitle = styled.p`
|
||
|
font-size: 16px;
|
||
|
color: #444;
|
||
|
margin-bottom: 0;
|
||
|
|
||
|
a {
|
||
|
color: inherit;
|
||
|
font-weight: 700;
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
|
||
|
export const Logo = styled.img`
|
||
|
width: 75px;
|
||
|
height: 75px;
|
||
|
margin-bottom: 26px;
|
||
|
`;
|