App.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. a:hover,a:focus{
  2. outline: none;
  3. text-decoration: none;
  4. }
  5. .tab{
  6. padding: 40px 50px;
  7. position: relative;
  8. }
  9. .tab:before{
  10. content: "";
  11. width: 100%;
  12. height: 100%;
  13. display: block;
  14. position: absolute;
  15. top: 0;
  16. left: 0;
  17. background: linear-gradient(#2e3a6a,#2f0b45);
  18. opacity: 0.85;
  19. border-radius: 50px;
  20. }
  21. .tab .nav-tabs{
  22. border-bottom: none;
  23. padding: 0 20px;
  24. position: relative;
  25. }
  26. .tab .nav-tabs li{ margin: 0 30px 0 0; }
  27. .tab .nav-tabs li a{
  28. font-size: 18px;
  29. color: #fff;
  30. border-radius: 0;
  31. text-transform: uppercase;
  32. background: transparent;
  33. padding: 0;
  34. margin-right: 0;
  35. border: none;
  36. border-bottom: 2px solid transparent;
  37. opacity: 0.5;
  38. position: relative;
  39. transition: all 0.5s ease 0s;
  40. }
  41. .tab .nav-tabs li a:hover{ background: transparent; }
  42. .tab .nav-tabs li.active a,
  43. .tab .nav-tabs li.active a:focus,
  44. .tab .nav-tabs li.active a:hover{
  45. border: none;
  46. background: transparent;
  47. opacity: 1;
  48. border-bottom: 2px solid #eec111;
  49. color: #fff;
  50. }
  51. .tab .tab-content{
  52. padding: 20px 0 0 0;
  53. margin-top: 40px;
  54. background: transparent;
  55. z-index: 1;
  56. position: relative;
  57. }
  58. .form-bg{ background: #ddd; }
  59. .form-horizontal .form-group{
  60. margin: 0 0 15px 0;
  61. position: relative;
  62. }
  63. .form-horizontal .form-control{
  64. height: 40px;
  65. background: rgba(255,255,255,0.2);
  66. border: none;
  67. border-radius: 20px;
  68. box-shadow: none;
  69. padding: 0 20px;
  70. font-size: 14px;
  71. font-weight: bold;
  72. color: #fff;
  73. transition: all 0.3s ease 0s;
  74. }
  75. .form-horizontal .form-control:focus{
  76. box-shadow: none;
  77. outline: 0 none;
  78. }
  79. .form-horizontal .form-group label{
  80. padding: 0 20px;
  81. color: #7f8291;
  82. text-transform: capitalize;
  83. margin-bottom: 10px;
  84. }
  85. .form-horizontal .main-checkbox{
  86. width: 20px;
  87. height: 20px;
  88. background: #eec111;
  89. float: left;
  90. margin: 5px 0 0 20px;
  91. border: 1px solid #eec111;
  92. position: relative;
  93. }
  94. .form-horizontal .main-checkbox label{
  95. width: 20px;
  96. height: 20px;
  97. position: absolute;
  98. top: 0;
  99. left: 0;
  100. cursor: pointer;
  101. }
  102. .form-horizontal .main-checkbox label:after{
  103. content: "";
  104. width: 10px;
  105. height: 5px;
  106. position: absolute;
  107. top: 5px;
  108. left: 4px;
  109. border: 3px solid #fff;
  110. border-top: none;
  111. border-right: none;
  112. background: transparent;
  113. opacity: 0;
  114. -webkit-transform: rotate(-45deg);
  115. transform: rotate(-45deg);
  116. }
  117. .form-horizontal .main-checkbox input[type=checkbox]{ visibility: hidden; }
  118. .form-horizontal .main-checkbox input[type=checkbox]:checked + label:after{ opacity: 1; }
  119. .form-horizontal .text{
  120. float: left;
  121. font-size: 14px;
  122. font-weight: bold;
  123. color: #fff;
  124. margin-left: 7px;
  125. line-height: 20px;
  126. padding-top: 5px;
  127. text-transform: capitalize;
  128. }
  129. .form-horizontal .btn{
  130. width: 100%;
  131. background: #eec111;
  132. padding: 10px 20px;
  133. border: none;
  134. font-size: 14px;
  135. font-weight: bold;
  136. color: #fff;
  137. border-radius: 20px;
  138. text-transform: uppercase;
  139. margin: 20px 0 30px 0;
  140. }
  141. .form-horizontal .btn:focus{
  142. background: #eec111;
  143. color: #fff;
  144. outline: none;
  145. box-shadow: none;
  146. }
  147. .form-horizontal .forgot-pass{
  148. border-top: 1px solid #615f6c;
  149. margin: 0;
  150. text-align: center;
  151. }
  152. .form-horizontal .forgot-pass .btn{
  153. width: auto;
  154. background: transparent;
  155. margin: 30px 0 0 0;
  156. color: #615f6c;
  157. text-transform: capitalize;
  158. transition: all 0.3s ease 0s;
  159. }
  160. .form-horizontal .forgot-pass .btn:hover{ color: #eec111; }
  161. @media only screen and (max-width: 479px){
  162. .tab{ padding: 40px 20px; }
  163. }
  164. .App {
  165. text-align: center;
  166. }
  167. .App-logo {
  168. height: 40vmin;
  169. pointer-events: none;
  170. }
  171. @media (prefers-reduced-motion: no-preference) {
  172. .App-logo {
  173. animation: App-logo-spin infinite 20s linear;
  174. }
  175. }
  176. .App-header {
  177. background-color: #282c34;
  178. min-height: 100vh;
  179. display: flex;
  180. flex-direction: column;
  181. align-items: center;
  182. justify-content: center;
  183. font-size: calc(10px + 2vmin);
  184. color: white;
  185. }
  186. .App-link {
  187. color: #61dafb;
  188. }
  189. @keyframes App-logo-spin {
  190. from {
  191. transform: rotate(0deg);
  192. }
  193. to {
  194. transform: rotate(360deg);
  195. }
  196. }