login.scss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .login-container{
  2. //background-image:url('/image/seec_background.png');
  3. background-color: white;
  4. background-size: cover;
  5. background-attachment:fixed;
  6. background-position: center center;
  7. background-repeat: no-repeat;
  8. padding: 0;
  9. height: 100%;
  10. width: 100%;
  11. position: relative;
  12. }
  13. .login-card{
  14. width: 30%;
  15. float: right;
  16. top: 100px;
  17. position: relative;
  18. right: 20%;
  19. margin-bottom: 100px;
  20. z-index: 2;
  21. &__title{
  22. color: $focus-color;
  23. text-align: center;
  24. }
  25. &__item{
  26. width: 80%;
  27. margin-top: 20px;
  28. margin-left: 10%;
  29. }
  30. &__short-item{
  31. width: 42%;
  32. margin-top: 20px;
  33. margin-left: 10%;
  34. display: inline-block;
  35. }
  36. &__bottom{
  37. margin-top: 10px;
  38. margin-bottom: 10px;
  39. width: 80%;
  40. margin-left: 10%;
  41. text-align: center;
  42. & a{
  43. text-decoration: none;
  44. &:hover{
  45. text-decoration: underline;
  46. }
  47. }
  48. }
  49. &__link{
  50. color: $focus-color;
  51. }
  52. &__canvas{
  53. float: right;
  54. width: 33%;
  55. margin-right: 10%;
  56. display: inline-block;
  57. vertical-align: top;
  58. margin-top: 20px;
  59. text-align: right;
  60. }
  61. &__right-link{
  62. float: right;
  63. color: $common-color;
  64. &:hover{
  65. color: $focus-color;
  66. }
  67. }
  68. &__right-button{
  69. float: right;
  70. padding-left: auto;
  71. padding-right: auto;
  72. margin-right: 10%;
  73. width: 35%;
  74. text-align: center;
  75. margin-top: 20px;
  76. }
  77. &__logo{
  78. width: 20%;
  79. position: fixed;
  80. top: 200px;
  81. left: 15%;
  82. }
  83. }