25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

63 satır
1.3 KiB

  1. import { container, title } from "assets/jss/nextjs-material-kit.js";
  2. import imagesStyle from "assets/jss/nextjs-material-kit/imagesStyles.js";
  3. const profilePageStyle = {
  4. container,
  5. profile: {
  6. textAlign: "center",
  7. "& img": {
  8. maxWidth: "160px",
  9. width: "100%",
  10. margin: "0 auto",
  11. transform: "translate3d(0, -50%, 0)"
  12. }
  13. },
  14. description: {
  15. margin: "1.071rem auto 0",
  16. maxWidth: "600px",
  17. color: "#999",
  18. textAlign: "center !important"
  19. },
  20. name: {
  21. marginTop: "-80px"
  22. },
  23. ...imagesStyle,
  24. main: {
  25. background: "#FFFFFF",
  26. position: "relative",
  27. zIndex: "3"
  28. },
  29. mainRaised: {
  30. margin: "-60px 30px 0px",
  31. borderRadius: "6px",
  32. boxShadow:
  33. "0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2)"
  34. },
  35. title: {
  36. ...title,
  37. display: "inline-block",
  38. position: "relative",
  39. marginTop: "30px",
  40. minHeight: "32px",
  41. textDecoration: "none"
  42. },
  43. socials: {
  44. marginTop: "0",
  45. width: "100%",
  46. transform: "none",
  47. left: "0",
  48. top: "0",
  49. height: "100%",
  50. lineHeight: "41px",
  51. fontSize: "20px",
  52. color: "#999"
  53. },
  54. navWrapper: {
  55. margin: "20px auto 50px auto",
  56. textAlign: "center"
  57. }
  58. };
  59. export default profilePageStyle;