loginPage.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .login-container {
  2. background-color: white;
  3. background-size: cover;
  4. background-attachment: fixed;
  5. background-position: center center;
  6. background-repeat: no-repeat;
  7. padding: 0;
  8. height: 100%;
  9. width: 100%;
  10. position: relative;
  11. }
  12. .login-card {
  13. width: 30%;
  14. float: right;
  15. top: 100px;
  16. position: relative;
  17. right: 20%;
  18. margin-bottom: 100px;
  19. z-index: 2;
  20. }
  21. .login-card__title {
  22. color: #409eff;
  23. text-align: center;
  24. width: 100% !important;
  25. }
  26. .login-card__item {
  27. width: 80%;
  28. margin-top: 20px !important;
  29. }
  30. .login-card__short-item {
  31. width: 42% !important;
  32. display: inline-block;
  33. }
  34. .login-card__bottom {
  35. margin-top: 10px;
  36. margin-bottom: 10px;
  37. width: 80%;
  38. margin-left: 10%;
  39. text-align: center;
  40. }
  41. .login-card__bottom a {
  42. text-decoration: none;
  43. }
  44. .login-card__bottom a:hover {
  45. text-decoration: underline;
  46. }
  47. .login-card__link {
  48. color: #409eff;
  49. }
  50. .login-card__canvas {
  51. float: right;
  52. width: 33% !important;
  53. margin-right: 20%;
  54. display: inline-block;
  55. vertical-align: top;
  56. text-align: right;
  57. padding-left: 10%;
  58. }
  59. .login-card__check {
  60. width: 100% !important;
  61. display: flex;
  62. margin-top: 20px;
  63. }
  64. .login-card__right-link {
  65. float: right;
  66. color: #333;
  67. }
  68. .login-card__right-link:hover {
  69. color: #409eff;
  70. }
  71. .login-card__right-button {
  72. float: right;
  73. margin-right: 10%;
  74. width: 35%;
  75. text-align: center;
  76. margin-top: 20px;
  77. margin-left: 10px !important;
  78. }
  79. .login-card__logo {
  80. width: 20%;
  81. position: fixed;
  82. top: 200px;
  83. left: 15%;
  84. }