login.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .login-container{
  2. background-image:url('/image/seec_background.png');
  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. }
  11. .login-card{
  12. width: 30%;
  13. float: right;
  14. top: 100px;
  15. position: relative;
  16. right: 20%;
  17. margin-bottom: 100px;
  18. &__title{
  19. color: $focus-color;
  20. text-align: center;
  21. }
  22. &__item{
  23. width: 80%;
  24. margin-top: 20px;
  25. margin-left: 10%;
  26. }
  27. &__short-item{
  28. width: 42%;
  29. margin-top: 20px;
  30. margin-left: 10%;
  31. display: inline-block;
  32. }
  33. &__bottom{
  34. margin-top: 10px;
  35. margin-bottom: 10px;
  36. width: 80%;
  37. margin-left: 10%;
  38. text-align: center;
  39. & a{
  40. text-decoration: none;
  41. &:hover{
  42. text-decoration: underline;
  43. }
  44. }
  45. }
  46. &__link{
  47. color: $focus-color;
  48. }
  49. &__canvas{
  50. float: right;
  51. width: 33%;
  52. margin-right: 10%;
  53. display: inline-block;
  54. vertical-align: top;
  55. margin-top: 20px;
  56. text-align: right;
  57. }
  58. &__right-link{
  59. float: right;
  60. color: $common-color;
  61. &:hover{
  62. color: $focus-color;
  63. }
  64. }
  65. &__right-button{
  66. float: right;
  67. padding-left: auto;
  68. padding-right: auto;
  69. margin-right: 10%;
  70. width: 35%;
  71. text-align: center;
  72. margin-top: 20px;
  73. }
  74. }