login.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. body {
  2. width: 100%;
  3. height: 100%;
  4. background: url(../../images/BG.jpg);
  5. font-size: 14px;
  6. }
  7. #main {
  8. width: 1200px;
  9. margin: 0 auto;
  10. height: 100%;
  11. }
  12. .tabs-container {
  13. margin-top: 40;
  14. border: 10px solid rgba(255,255,255,0.2);
  15. }
  16. .tabs-container .nav-tabs {
  17. border: 0;
  18. }
  19. .nav.nav-tabs {
  20. background-color: #fff;
  21. }
  22. .nav.nav-tabs li {
  23. width: 50%;
  24. text-align: center;
  25. padding: 0 15px;
  26. }
  27. .nav.nav-tabs li.active a {
  28. color: #1eaaff;
  29. }
  30. .tabs-container .nav-tabs>li.active>a,
  31. .tabs-container .nav-tabs>li.active>a:focus,
  32. .tabs-container .nav-tabs>li.active>a:hover {
  33. border: 0;
  34. border-bottom: 3px solid #1eaaff;
  35. }
  36. button[type="submit"] {
  37. margin-top: 40px;
  38. }
  39. .form-group {
  40. position: relative;
  41. }
  42. .fa-eye,
  43. .fa-eye-slash {
  44. position: absolute;
  45. top: 16px;
  46. right: 10px;
  47. margin-top: -8px;
  48. font-size: 16px;
  49. cursor: pointer;
  50. }
  51. .getCaptcha {
  52. position: absolute;
  53. top: 8px;
  54. right: 10px;
  55. }
  56. .getCaptcha.disabled{
  57. cursor: not-allowed;
  58. filter: alpha(opacity=65);
  59. -webkit-box-shadow: none;
  60. box-shadow: none;
  61. opacity: .65;
  62. }
  63. .left-img img{
  64. width: 100%;
  65. }
  66. #loginForm{margin-top: 150px;}
  67. @media only screen and (max-width: 1200px) {
  68. #main,.left-img,#loginForm {
  69. width: 100%;
  70. }
  71. #loginForm {
  72. margin-top: 0px;
  73. }
  74. .left-img > img{
  75. display: block;
  76. width: 500px;
  77. margin: 0 auto;
  78. }
  79. .tabs-container {
  80. width: 400px;
  81. margin: -40px auto 0;
  82. }
  83. }