Roadmap to becoming a developer in 2022
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.

132 lines
2.0 KiB

import styled from 'styled-components';
export const FooterWrap = styled.div`
5 years ago
display: block;
margin-top: 50px;
`;
export const FooterContainer = styled.div`
max-width: 750px;
margin: 0 auto;
padding: 0 20px;
`;
export const FooterBg = styled.div`
5 years ago
`;
export const ShareWrap = styled.div`
padding: 17px 0px;
5 years ago
align-items: center;
justify-content: center;
display: flex;
5 years ago
a {
display: flex;
align-items: center;
color: #101010;
}
svg {
height: 18px;
color: #757575;
5 years ago
margin-left: 7px;
}
`;
export const ContributeIcon = styled.div`
display: flex;
align-items: center;
5 years ago
justify-content: center;
margin: ${props => props.hasMargins ? '0 30px' : '0'};
span {
margin-right: 4px;
}
a {
color: #757575;
font-size: 14px;
}
5 years ago
`;
export const ShareIcons = styled.div`
display: flex;
align-items: center;
color: #757575;
font-size: 14px;
span {
margin-right: 4px;
}
5 years ago
`;
export const AuthorInfoWrap = styled.div`
display: flex;
align-items: center;
padding: 40px 0;
h4 {
position: relative;
font-size: 22px;
margin: 10px 0;
line-height: 17px;
a {
font-weight: 700;
color: #101010;
}
}
.social-links {
margin: 5px 0 0;
a {
background: transparent;
color: #101010;
margin-right: 10px;
text-transform: uppercase;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
&:hover {
border-color: #757575;
}
svg {
height: 18px;
}
}
}
.author-description {
margin-bottom: 14px;
}
`;
export const AuthorBio = styled.p`
font-size: 15px;
line-height: 24px;
color: #757575;
margin-bottom: 0;
a {
font-weight: 500;
}
`;
export const AuthorImg = styled.img`
border-radius: 100%;
height: 100px;
width: 100px;
border-radius: 100%;
margin-right: 22px;
`;
5 years ago
export const AuthorMeta = styled.div`
display: flex;
justify-content: center;
flex-direction: column;
`;