diff --git a/src/components/FeaturedMovie/styles.js b/src/components/FeaturedMovie/styles.js index e69de29..e2bc9e4 100644 --- a/src/components/FeaturedMovie/styles.js +++ b/src/components/FeaturedMovie/styles.js @@ -0,0 +1,40 @@ +import { makeStyles } from '@mui/styles'; + +export default makeStyles((theme) => ({ + featuredCardContainer: { + marginBottom: '20px', + display: 'flex', + justifyContent: 'center', + height: '490px', + textDecoration: 'none', + }, + card: { + width: '100%', + display: 'flex', + justifyContent: 'flex-end', + flexDirection: 'column', + }, + cardRoot: { + position: 'relative', + }, + cardMedia: { + position: 'absolute', + top: 0, + right: 0, + height: '100%', + width: '100%', + backgroundColor: 'rgba(0,0,0,0.575)', + backgroundBlendMode: 'darken', + }, + cardContent: { + color: '#fff', + width: '40%', + [theme.breakpoints.down('sm')]: { + width: '100%', + }, + }, + cardContentRoot: { + position: 'relative', + backgroundColor: 'transparent', + }, +}));