Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

99 Zeilen
1.9 KiB

  1. import { container } from "assets/jss/nextjs-material-kit.js";
  2. const signupPageStyle = {
  3. container: {
  4. ...container,
  5. zIndex: "2",
  6. position: "relative",
  7. paddingTop: "20vh",
  8. color: "#FFFFFF",
  9. paddingBottom: "200px",
  10. },
  11. cardHidden: {
  12. opacity: "0",
  13. transform: "translate3d(0, -60px, 0)",
  14. },
  15. pageHeader: {
  16. minHeight: "100vh",
  17. height: "auto",
  18. display: "inherit",
  19. position: "relative",
  20. margin: "0",
  21. padding: "0",
  22. border: "0",
  23. alignItems: "center",
  24. "&:before": {
  25. background: "rgba(0, 0, 0, 0.5)",
  26. },
  27. "&:before,&:after": {
  28. position: "absolute",
  29. zIndex: "1",
  30. width: "100%",
  31. height: "100%",
  32. display: "block",
  33. left: "0",
  34. top: "0",
  35. content: '""',
  36. },
  37. "& footer li a,& footer li a:hover,& footer li a:active": {
  38. color: "#FFFFFF",
  39. },
  40. "& footer": {
  41. position: "absolute",
  42. bottom: "0",
  43. width: "100%",
  44. },
  45. },
  46. collapsible: {
  47. position: "fixed",
  48. bottom: "5px",
  49. left: "2%",
  50. width: "96%",
  51. zIndex: "9999",
  52. },
  53. form: {
  54. margin: "0",
  55. },
  56. cardHeader: {
  57. width: "auto",
  58. textAlign: "center",
  59. marginLeft: "20px",
  60. marginRight: "20px",
  61. marginTop: "-40px",
  62. padding: "20px 0",
  63. marginBottom: "15px",
  64. },
  65. socialIcons: {
  66. maxWidth: "24px",
  67. marginTop: "0",
  68. width: "100%",
  69. transform: "none",
  70. left: "0",
  71. top: "0",
  72. height: "100%",
  73. lineHeight: "41px",
  74. fontSize: "20px",
  75. },
  76. divider: {
  77. marginTop: "30px",
  78. marginBottom: "0px",
  79. textAlign: "center",
  80. },
  81. cardFooter: {
  82. paddingTop: "0rem",
  83. border: "0",
  84. borderRadius: "6px",
  85. justifyContent: "center !important",
  86. },
  87. socialLine: {
  88. marginTop: "1rem",
  89. textAlign: "center",
  90. padding: "0",
  91. },
  92. inputIconsColor: {
  93. color: "info",
  94. },
  95. };
  96. export default signupPageStyle;