login.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. #loginModal {
  2. position: absolute;
  3. top: 20%;
  4. /* -webkit-transform: translateY(-50%);
  5. -moz-transform: translateY(-50%);
  6. -ms-transform: translateY(-50%);
  7. -o-transform: translateY(-50%);
  8. transform: translateY(-50%); */
  9. /* background-color: white; */
  10. }
  11. .login-bg {
  12. position: absolute;
  13. top: 0;
  14. left: 0;
  15. right: 0;
  16. bottom: 0;
  17. background-image: url("./images/bg.jpg");
  18. background-position: center;
  19. background-repeat: no-repeat;
  20. background-size: cover;
  21. opacity: 0.8;
  22. filter: alpha(opacity = 20);
  23. min-height: 600px;
  24. }
  25. .foot {
  26. position: absolute;
  27. }
  28. .title {
  29. font-size: 20px;
  30. color: #848484;
  31. font-weight: 600
  32. }
  33. .middle {
  34. float: none;
  35. display: inline-block;
  36. vertical-align: middle;
  37. }
  38. .center-vertical1 {
  39. position: absolute;
  40. top: 20%;
  41. transform: translateY(40%);
  42. }
  43. #particles-js {
  44. position: absolute;
  45. top: 0;
  46. left: 0;
  47. right: 0;
  48. bottom: 0;
  49. }
  50. .particles-js-canvas-el {
  51. background-color: aliceblue
  52. }
  53. .footer {
  54. height: 30px;
  55. }
  56. .abs-bottom {
  57. width: 100%;
  58. position: absolute;
  59. bottom: 0;
  60. left: 0;
  61. right: 0;
  62. margin-bottom: 5px
  63. }
  64. .drag_bg {
  65. /* width: 268px !important */
  66. }
  67. .handler {
  68. /* width: 268px !important */
  69. }
  70. .mask {
  71. position: absolute;
  72. top: 0px;
  73. filter: alpha(opacity = 60);
  74. background-color: #777;
  75. z-index: 1002;
  76. left: 0px;
  77. opacity: 0.5;
  78. -moz-opacity: 0.5;
  79. }
  80. .loading {
  81. width: 260px;
  82. height: 56px;
  83. position: absolute;
  84. top: 40%;
  85. left: 40%;
  86. line-height: 56px;
  87. color: #fff;
  88. padding-left: 60px;
  89. font-size: 15px;
  90. background: #000 url(./images/loading.gif) no-repeat 10px 50%;
  91. opacity: 0.7;
  92. z-index: 9999;
  93. -moz-border-radius: 20px;
  94. -webkit-border-radius: 20px;
  95. border-radius: 20px;
  96. filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
  97. }
  98. .errorMsg {
  99. color: red;
  100. font-size: 13px;
  101. margin-bottom: 4px;
  102. margin-top: 4px !important;
  103. }
  104. body {
  105. font-size: 16px;
  106. }
  107. .noPanddingleftright {
  108. padding-right: 0px !important;
  109. }
  110. .noPanddingleft {
  111. padding-left: 0px !important
  112. }