2019-02-03 17:23:33 +07:00
|
|
|
import styled from 'react-emotion';
|
2019-06-20 19:37:28 +07:00
|
|
|
import Grid from '@material-ui/core/Grid';
|
|
|
|
import ListItem from '@material-ui/core/ListItem';
|
|
|
|
import Typography from '@material-ui/core/Typography';
|
2019-03-28 05:39:06 +07:00
|
|
|
|
|
|
|
import Github from '../../icons/GitHub';
|
|
|
|
import colors from '../../utils/styles/colors';
|
|
|
|
|
|
|
|
export const Heading = styled(Typography)`
|
|
|
|
&& {
|
|
|
|
font-weight: 700;
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
`;
|
2019-02-03 17:23:33 +07:00
|
|
|
|
|
|
|
export const GridRepo = styled(Grid)`
|
|
|
|
&& {
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
`;
|
2019-03-28 05:39:06 +07:00
|
|
|
|
|
|
|
export const GithubLink = styled('a')`
|
|
|
|
&& {
|
|
|
|
color: ${colors.primary};
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const GithubLogo = styled(Github)`
|
|
|
|
&& {
|
|
|
|
font-size: 40px;
|
|
|
|
color: ${colors.primary};
|
|
|
|
background-color: ${colors.greySuperLight};
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const RepositoryListItem = styled(ListItem)`
|
|
|
|
&& {
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
`;
|