File size: 1,770 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
// @flow
import theme from 'shared/theme';
import styled from 'styled-components';
import { MEDIA_BREAK } from 'src/components/layout';
export const ColumnHeading = styled.div`
display: flex;
align-items: center;
font-size: 18px;
line-height: 1;
font-weight: 500;
padding: 8px 16px 12px;
margin-top: 24px;
border-bottom: 2px solid ${theme.bg.border};
`;
export const MessageIconContainer = styled.div`
color: ${theme.text.alt};
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
&:hover {
color: ${theme.brand.alt};
}
`;
export const UserListItemContainer = styled.div`
border-bottom: 1px solid ${theme.bg.wash};
`;
export const CommunityContext = styled.div`
display: flex;
margin-top: 32px;
margin-left: 32px;
display: flex;
align-items: center;
@media (max-width: ${MEDIA_BREAK}px) {
margin-top: 16px;
}
`;
export const CommunityName = styled.h5`
font-size: 18px;
font-weight: 500;
margin-left: 16px;
color: ${theme.text.secondary};
`;
export const ChannelName = styled.h3`
font-size: 24px;
font-weight: 600;
margin-top: 24px;
margin-bottom: 8px;
margin-left: 32px;
color: ${theme.text.default};
@media (max-width: ${MEDIA_BREAK}px) {
margin-left: 0;
}
`;
export const ChannelDescription = styled.h4`
font-size: 18px;
font-weight: 400;
margin-left: 32px;
margin-bottom: 16px;
color: ${theme.text.alt};
@media (max-width: ${MEDIA_BREAK}px) {
margin-left: 0;
}
`;
export const MetadataContainer = styled.div`
margin-left: 32px;
@media (max-width: ${MEDIA_BREAK}px;) {
margin-left: 8px;
}
`;
export const FeedsContainer = styled.section`
display: flex;
flex-direction: column;
background: ${theme.bg.default};
`;
|