You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AboutHeader.styled.js 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. import { Box, styled, Typography } from "@mui/material";
  2. import selectedTheme from "../../../themes";
  3. export const AboutHeaderContainer = styled(Box)`
  4. margin: 72px;
  5. @media (max-width: 1430px) {
  6. margin: 45px;
  7. }
  8. @media (max-width: 1200px) {
  9. margin: 36px;
  10. }
  11. @media (max-width: 600px) {
  12. margin: 52px 36px 36px 36px;
  13. }
  14. `;
  15. export const AboutHeaderTitle = styled(Typography)`
  16. font-family: ${selectedTheme.fonts.textFont};
  17. font-style: normal;
  18. font-weight: 700;
  19. font-size: 72px;
  20. line-height: 98px;
  21. color: ${selectedTheme.colors.primaryPurple};
  22. @media (max-width: 600px) {
  23. font-size: 36px;
  24. line-height: 49px;
  25. }
  26. `;
  27. export const AboutHeaderParagraph = styled(Typography)`
  28. font-family: ${selectedTheme.fonts.textFont};
  29. font-style: normal;
  30. font-weight: 400;
  31. font-size: 16px;
  32. line-height: 22px;
  33. color: ${selectedTheme.colors.primaryGrayText};
  34. @media (max-width: 600px) {
  35. font-size: 14px;
  36. }
  37. `;
  38. export const AboutHeaderLine = styled(Box)`
  39. border-top: 1px solid ${selectedTheme.colors.iconYellowColor};
  40. width: 90px;
  41. margin-bottom: 26px;
  42. @media (max-width: 600px) {
  43. width: 54px;
  44. }
  45. `;