login.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /*
  2. * Specific styles of signin component
  3. */
  4. /*
  5. * General styles
  6. */
  7. body, html {
  8. height: 100%;
  9. background-repeat: no-repeat;
  10. background-image: url("http://www.mooctest.net/assets/img/bg.jpg");
  11. }
  12. .card-container.card {
  13. margin-top: 100px;
  14. max-width: 350px;
  15. padding: 40px 40px;
  16. }
  17. .btn {
  18. font-weight: 700;
  19. height: 36px;
  20. -moz-user-select: none;
  21. -webkit-user-select: none;
  22. user-select: none;
  23. cursor: default;
  24. }
  25. /*
  26. * Card component
  27. */
  28. .card {
  29. background-color: #F7F7F7;
  30. /* just in case there no content*/
  31. padding: 20px 25px 30px;
  32. margin: 0 auto 25px;
  33. margin-top: 50px;
  34. /* shadows and rounded borders */
  35. -moz-border-radius: 2px;
  36. -webkit-border-radius: 2px;
  37. border-radius: 2px;
  38. -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  39. -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  40. box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
  41. }
  42. .profile-img-card {
  43. height: 96px;
  44. margin-left: 0px;
  45. display: block;
  46. /*-moz-border-radius: 50%;*/
  47. /*-webkit-border-radius: 50%;*/
  48. }
  49. /*
  50. * Form styles
  51. */
  52. .profile-name-card {
  53. font-size: 10px;
  54. font-weight: bold;
  55. margin: 10px 0 0;
  56. min-height: 1em;
  57. text-align: center;
  58. }
  59. .reauth-email {
  60. display: block;
  61. color: #404040;
  62. line-height: 2;
  63. margin-bottom: 10px;
  64. font-size: 14px;
  65. text-align: center;
  66. overflow: hidden;
  67. text-overflow: ellipsis;
  68. white-space: nowrap;
  69. -moz-box-sizing: border-box;
  70. -webkit-box-sizing: border-box;
  71. box-sizing: border-box;
  72. }
  73. .form-signin #inputEmail{
  74. margin-top: 50px;
  75. direction: ltr;
  76. height: 44px;
  77. font-size: 16px;
  78. }
  79. .form-signin #inputPassword {
  80. margin-top: 20px;
  81. direction: ltr;
  82. height: 44px;
  83. font-size: 16px;
  84. }
  85. .form-signin input[type=email],
  86. .form-signin input[type=password],
  87. .form-signin input[type=text],
  88. .form-signin button {
  89. width: 100%;
  90. display: block;
  91. margin-bottom: 10px;
  92. z-index: 1;
  93. position: relative;
  94. -moz-box-sizing: border-box;
  95. -webkit-box-sizing: border-box;
  96. box-sizing: border-box;
  97. }
  98. .form-signin .form-control:focus {
  99. border-color: #55A4B1;
  100. outline: 0;
  101. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #55A4B1;
  102. box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #55A4B1;
  103. }
  104. .btn.btn-signin {
  105. /*background-color: #4d90fe; */
  106. background-color: #55A4B1;
  107. /* background-color: linear-gradient(rgb(104, 145, 162), rgb(12, 97, 33));*/
  108. padding: 0px;
  109. font-weight: 700;
  110. font-size: 14px;
  111. height: 36px;
  112. -moz-border-radius: 3px;
  113. -webkit-border-radius: 3px;
  114. border-radius: 3px;
  115. border: none;
  116. -o-transition: all 0.218s;
  117. -moz-transition: all 0.218s;
  118. -webkit-transition: all 0.218s;
  119. transition: all 0.218s;
  120. }
  121. .btn.btn-signin:hover,
  122. .btn.btn-signin:active,
  123. .btn.btn-signin:focus {
  124. background-color: #373F52;
  125. }
  126. .forgot-password {
  127. color: #55A4B1;
  128. }
  129. .forgot-password:hover,
  130. .forgot-password:active,
  131. .forgot-password:focus{
  132. color: #373F52;
  133. }