Advertisement
Guest User

Untitled

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