Files
developer-roadmap/components/site-nav/style.js

39 lines
618 B
JavaScript
Raw Normal View History

2019-10-19 21:24:16 +04:00
import styled from 'styled-components';
export const HeaderWrap = styled.div`
2019-09-07 15:26:35 +04:00
padding: 15px 0;
2019-09-04 15:27:00 +04:00
font-size: 18px;
2019-09-07 15:26:35 +04:00
.top-row {
display: flex;
align-items: center;
}
.brand img {
2019-09-14 11:29:02 +04:00
padding: 5px 0;
2019-09-07 15:26:35 +04:00
height: 50px;
2019-09-04 15:27:00 +04:00
text-decoration: none;
border-radius: 2px;
}
.nav-links {
a {
padding: 0 10px;
text-decoration: none;
font-size: 16px;
2019-09-07 15:26:35 +04:00
color: #666;
2019-09-04 15:27:00 +04:00
}
.signup {
background: #101010;
2019-09-07 15:26:35 +04:00
border-radius: 5px;
2019-09-04 15:27:00 +04:00
color: #ffffff;
padding: 7px 10px;
margin-left: 15px;
&:hover {
background: #2d2d2d;
}
}
}
2019-10-19 21:24:16 +04:00
`;