25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

69 lines
1014 B

  1. import {
  2. primaryColor,
  3. warningColor,
  4. dangerColor,
  5. successColor,
  6. infoColor,
  7. roseColor,
  8. grayColor,
  9. title
  10. } from "assets/jss/nextjs-material-kit.js";
  11. const infoStyle = {
  12. infoArea: {
  13. maxWidth: "360px",
  14. margin: "0 auto",
  15. padding: "0px"
  16. },
  17. iconWrapper: {
  18. float: "left",
  19. marginTop: "24px",
  20. marginRight: "10px"
  21. },
  22. primary: {
  23. color: primaryColor
  24. },
  25. warning: {
  26. color: warningColor
  27. },
  28. danger: {
  29. color: dangerColor
  30. },
  31. success: {
  32. color: successColor
  33. },
  34. info: {
  35. color: infoColor
  36. },
  37. rose: {
  38. color: roseColor
  39. },
  40. gray: {
  41. color: grayColor
  42. },
  43. icon: {
  44. width: "36px",
  45. height: "36px"
  46. },
  47. descriptionWrapper: {
  48. color: grayColor,
  49. overflow: "hidden"
  50. },
  51. title,
  52. description: {
  53. color: grayColor,
  54. overflow: "hidden",
  55. marginTop: "0px",
  56. fontSize: "14px"
  57. },
  58. iconWrapperVertical: {
  59. float: "none"
  60. },
  61. iconVertical: {
  62. width: "61px",
  63. height: "61px"
  64. }
  65. };
  66. export default infoStyle;