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

124 lines
1.9 KiB
JavaScript
Raw Normal View History

2019-11-02 23:58:17 +04:00
import styled from 'styled-components';
export const FooterWrap = styled.div`
2019-11-03 01:26:06 +04:00
display: block;
2019-11-03 11:47:31 +04:00
margin-top: 50px;
`;
export const FooterContainer = styled.div`
max-width: 750px;
margin: 0 auto;
padding: 0 20px;
`;
export const FooterBg = styled.div`
2019-11-03 01:26:06 +04:00
`;
export const ShareWrap = styled.div`
2019-11-03 11:47:31 +04:00
padding: 17px 0px;
2019-11-03 01:26:06 +04:00
align-items: center;
2019-11-03 11:47:31 +04:00
justify-content: center;
display: flex;
2019-11-03 01:26:06 +04:00
a {
display: flex;
align-items: center;
color: #101010;
2019-11-03 11:57:58 +04:00
svg {
2019-11-08 01:32:01 +04:00
height: 18px !important;
width: 18px !important;
2019-11-03 11:57:58 +04:00
color: #757575;
margin-left: 7px;
transition: all 0.2s ease;
}
&:hover {
svg {
color: #101010;
}
}
2019-11-03 01:26:06 +04:00
}
`;
2019-11-03 11:57:58 +04:00
2019-11-03 01:26:06 +04:00
export const ContributeIcon = styled.div`
2019-11-02 23:58:17 +04:00
display: flex;
align-items: center;
2019-11-03 01:26:06 +04:00
justify-content: center;
2019-11-03 11:47:31 +04:00
margin: ${props => props.hasMargins ? '0 30px' : '0'};
span {
margin-right: 4px;
}
a {
color: #757575;
font-size: 14px;
2019-11-03 11:57:58 +04:00
transition: all 0.2s ease;
&:hover {
color: #101010;
}
2019-11-03 11:47:31 +04:00
}
2019-11-03 01:26:06 +04:00
`;
export const ShareIcons = styled.div`
display: flex;
2019-11-03 11:47:31 +04:00
align-items: center;
color: #757575;
font-size: 14px;
span {
margin-right: 4px;
}
2019-11-03 01:26:06 +04:00
`;
export const AuthorInfoWrap = styled.div`
display: flex;
align-items: center;
2019-11-03 11:47:31 +04:00
padding: 40px 0;
2019-11-02 23:58:17 +04:00
h4 {
position: relative;
font-size: 22px;
2019-11-03 11:47:31 +04:00
margin: 10px 0;
2019-11-02 23:58:17 +04:00
line-height: 17px;
a {
font-weight: 700;
color: #101010;
}
}
.author-description {
margin-bottom: 14px;
}
`;
export const AuthorBio = styled.p`
font-size: 15px;
2019-11-03 11:47:31 +04:00
line-height: 24px;
2019-11-02 23:58:17 +04:00
color: #757575;
2019-11-03 11:47:31 +04:00
margin-bottom: 0;
a {
font-weight: 500;
}
2019-11-02 23:58:17 +04:00
`;
export const AuthorImg = styled.img`
border-radius: 100%;
2019-11-08 01:32:01 +04:00
height: 100px !important;
width: 100px !important;
2019-11-02 23:58:17 +04:00
margin-right: 22px;
2019-11-13 21:30:04 +04:00
display: block;
2019-11-02 23:58:17 +04:00
`;
2019-11-03 01:26:06 +04:00
export const AuthorMeta = styled.div`
2019-11-02 23:58:17 +04:00
display: flex;
justify-content: center;
flex-direction: column;
2019-11-13 21:30:04 +04:00
flex: 1;
2019-11-03 11:47:31 +04:00
`;