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.
 
 

46 line
900 B

  1. import { container, title } from "assets/jss/nextjs-material-kit.js";
  2. import imagesStyles from "assets/jss/nextjs-material-kit/imagesStyles.js";
  3. const typographyStyle = {
  4. section: {
  5. padding: "70px 0"
  6. },
  7. container,
  8. space50: {
  9. height: "50px",
  10. display: "block"
  11. },
  12. title: {
  13. ...title,
  14. marginTop: "30px",
  15. minHeight: "32px",
  16. textDecoration: "none"
  17. },
  18. typo: {
  19. paddingLeft: "25%",
  20. marginBottom: "40px",
  21. position: "relative",
  22. width: "100%"
  23. },
  24. note: {
  25. fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif',
  26. bottom: "10px",
  27. color: "#c0c1c2",
  28. display: "block",
  29. fontWeight: "400",
  30. fontSize: "13px",
  31. lineHeight: "13px",
  32. left: "0",
  33. marginLeft: "20px",
  34. position: "absolute",
  35. width: "260px"
  36. },
  37. marginLeft: {
  38. marginLeft: "auto !important"
  39. },
  40. ...imagesStyles
  41. };
  42. export default typographyStyle;