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

47 lines
713 B
SCSS
Raw Normal View History

2019-09-15 23:45:25 +04:00
.about-header {
2019-09-20 19:00:43 +04:00
text-align: left;
2019-09-15 23:45:25 +04:00
padding: 70px 20px;
margin: 0 auto;
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
}
h2 {
font-weight: 700;
}
p {
font-size: 20px;
color: #333;
font-weight: 400;
margin-bottom: 0;
line-height: 35px;
}
a {
font-weight: 700;
color: #000;
}
.author-img {
2019-09-20 19:00:43 +04:00
height: 160px;
margin-right: 25px;
margin-top: 8px;
border-radius: 9px;
}
.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
}
}