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

50 lines
792 B
JavaScript
Raw Normal View History

2019-10-19 21:24:16 +04:00
import styled from 'styled-components';
export const AboutHeaderWrap = styled.div`
2019-09-20 19:00:43 +04:00
text-align: left;
2019-11-29 18:13:07 +04:00
padding: 70px 0;
2019-09-15 23:45:25 +04:00
margin: 0 auto;
2019-10-19 21:24:16 +04:00
2019-09-20 19:00:43 +04:00
.author-info {
display: flex;
align-items: center;
flex-direction: row;
2019-09-15 23:45:25 +04:00
}
2019-10-19 21:24:16 +04:00
h1 {
2019-09-15 23:45:25 +04:00
font-weight: 700;
}
2019-10-19 21:24:16 +04:00
2019-09-15 23:45:25 +04:00
p {
font-size: 20px;
color: #333;
font-weight: 400;
margin-bottom: 0;
line-height: 35px;
}
2019-10-19 21:24:16 +04:00
2019-09-15 23:45:25 +04:00
a {
font-weight: 700;
color: #000;
}
2019-10-19 21:24:16 +04:00
2019-09-15 23:45:25 +04:00
.author-img {
2019-09-20 19:00:43 +04:00
height: 160px;
margin-right: 25px;
margin-top: 8px;
border-radius: 9px;
}
2019-10-19 21:24:16 +04:00
2019-09-20 19:00:43 +04:00
.author-links a {
display: inline-block;
margin-right: 5px;
background: #2d2d2d;
color: white;
padding: 5px 10px;
font-weight: 500;
margin-top: 12px;
border-radius: 5px;
text-decoration: none;
2019-09-15 23:45:25 +04:00
}
2019-11-29 18:13:07 +04:00
`;