Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

60 строки
1.1 KiB

  1. import { container, primaryColor } from "assets/jss/nextjs-material-kit.js";
  2. const footerStyle = {
  3. block: {
  4. color: "inherit",
  5. padding: "0.9375rem",
  6. fontWeight: "500",
  7. fontSize: "12px",
  8. textTransform: "uppercase",
  9. borderRadius: "3px",
  10. textDecoration: "none",
  11. position: "relative",
  12. display: "block"
  13. },
  14. left: {
  15. float: "left!important",
  16. display: "block"
  17. },
  18. right: {
  19. padding: "15px 0",
  20. margin: "0",
  21. float: "right!important"
  22. },
  23. footer: {
  24. padding: "0.9375rem 0",
  25. textAlign: "center",
  26. display: "flex",
  27. zIndex: "2",
  28. position: "relative"
  29. },
  30. a: {
  31. color: primaryColor,
  32. textDecoration: "none",
  33. backgroundColor: "transparent"
  34. },
  35. footerWhiteFont: {
  36. "&,&:hover,&:focus": {
  37. color: "#FFFFFF"
  38. }
  39. },
  40. container,
  41. list: {
  42. marginBottom: "0",
  43. padding: "0",
  44. marginTop: "0"
  45. },
  46. inlineBlock: {
  47. display: "inline-block",
  48. padding: "0px",
  49. width: "auto"
  50. },
  51. icon: {
  52. width: "18px",
  53. height: "18px",
  54. position: "relative",
  55. top: "3px"
  56. }
  57. };
  58. export default footerStyle;