index1.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. @charset "UTF-8";
  2. body {
  3. width: 100%;
  4. height: 100%;
  5. background: rgba(11, 22, 53, .9);
  6. margin: 0 auto;
  7. }
  8. #div-particles {
  9. position: relative;
  10. top: 0;
  11. }
  12. .bdy-login {
  13. width: 385px;
  14. border: 0px solid red;
  15. position: absolute;
  16. top: 600px;
  17. left: 200px;
  18. opacity: 0.1;
  19. }
  20. #frm-login {
  21. width: 380px;
  22. margin: 100 auto;
  23. border: 0px solid orange;
  24. }
  25. #frm-login p {
  26. width: 360px;
  27. height: 40px;
  28. line-height: 40px;
  29. color: #fff;
  30. margin: 20px auto 0 auto;
  31. border: 1px solid #06538a;
  32. font-size: 14px;
  33. user-select: none;
  34. }
  35. #frm-login p:nth-child(1) {
  36. border: 0px solid #fff;
  37. text-align: center;
  38. }
  39. #frm-login p:nth-child(2) {
  40. margin-top: 60px;
  41. background: rgba(147, 157, 220, 0.2) url("res/img/login_account.png") no-repeat 320px 8px;
  42. }
  43. #frm-login p:nth-child(3) {
  44. background: rgba(147, 157, 220, 0.2) url("res/img/login_password.png") no-repeat 320px 8px;
  45. }
  46. #frm-login p:nth-child(4) {
  47. background: rgba(147, 157, 220, 0.2) no-repeat 320px 8px;
  48. }
  49. #frm-login p:nth-child(5) {
  50. color: #1EB2FF;
  51. border: 1px solid #009FFF;
  52. cursor: pointer;
  53. font-size: 18px;
  54. text-align: center;
  55. }
  56. #frm-login span {
  57. width: 80px;
  58. display: inline-block;
  59. text-align: center;
  60. }
  61. #frm-login input {
  62. width: 228px;
  63. height: 38px;
  64. outline: none;
  65. border: none;
  66. background: transparent;
  67. background: none;
  68. color: #eee;
  69. }
  70. #frm-login input:-webkit-autofill {
  71. transition: color 9999s, background-color 9999s ease-in-out;
  72. }
  73. #ver {
  74. position: fixed;
  75. bottom: 8px;
  76. right: 8px;
  77. color: #424a61;
  78. font-size: 8px;
  79. }