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.

48 lines
861 B

  1. import { cardTitle, title } from "assets/jss/nextjs-material-kit.js";
  2. import imagesStyle from "assets/jss/nextjs-material-kit/imagesStyles.js";
  3. const teamStyle = {
  4. section: {
  5. padding: "70px 0",
  6. textAlign: "center"
  7. },
  8. title: {
  9. ...title,
  10. marginBottom: "1rem",
  11. marginTop: "30px",
  12. minHeight: "32px",
  13. textDecoration: "none"
  14. },
  15. ...imagesStyle,
  16. itemGrid: {
  17. marginLeft: "auto",
  18. marginRight: "auto"
  19. },
  20. cardTitle,
  21. smallTitle: {
  22. color: "#6c757d"
  23. },
  24. description: {
  25. color: "#999"
  26. },
  27. justifyCenter: {
  28. justifyContent: "center !important"
  29. },
  30. socials: {
  31. marginTop: "0",
  32. width: "100%",
  33. transform: "none",
  34. left: "0",
  35. top: "0",
  36. height: "100%",
  37. lineHeight: "41px",
  38. fontSize: "20px",
  39. color: "#999"
  40. },
  41. margin5: {
  42. margin: "5px"
  43. }
  44. };
  45. export default teamStyle;