You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

173 lines
3.3 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. html {
  2. background: #005b61;
  3. /*
  4. background: radial-gradient(#fff176, #f57f17);
  5. min-height: 100%;
  6. */
  7. font-family: "Roboto", sans-serif;
  8. }
  9. .title {
  10. text-transform: uppercase;
  11. text-align: center;
  12. margin-bottom: 30px;
  13. color: #008A93;
  14. font-weight: 300;
  15. font-size: 24px;
  16. letter-spacing: 1px;
  17. }
  18. .description {
  19. text-align: center;
  20. color: #666;
  21. margin-bottom: 30px;
  22. }
  23. input[type="text"],
  24. input[type="email"],
  25. input[type="password"],
  26. input[type="con-password"]
  27. {
  28. padding: 10px 20px;
  29. border: 1px solid #999;
  30. border-radius: 3px;
  31. display: block;
  32. width: 100%;
  33. margin-bottom: 20px;
  34. box-sizing: border-box;
  35. outline: none;
  36. }
  37. input[type="text"]:focus,
  38. input[type="email"]:focus {
  39. border-color: #008A93;
  40. }
  41. input[type="radio"] {
  42. margin-right: 10px;
  43. }
  44. label {
  45. margin-bottom: 20px;
  46. display: block;
  47. font-size: 18px;
  48. color: #666;
  49. border-top: 1px solid #ddd;
  50. border-bottom: 1px solid #ddd;
  51. padding: 20px 0;
  52. cursor: pointer;
  53. }
  54. label:first-child {
  55. margin-bottom: 0;
  56. border-bottom: none;
  57. }
  58. .button,
  59. .rerun-button {
  60. padding: 10px 20px;
  61. border-radius: 3px;
  62. background: #008A93;
  63. color: white;
  64. text-transform: uppercase;
  65. letter-spacing: 1px;
  66. display: inline-block;
  67. cursor: pointer;
  68. }
  69. .button:hover,
  70. .rerun-button:hover {
  71. background: #008A93;
  72. }
  73. .button.rerun-button,
  74. .rerun-button.rerun-button {
  75. border: 1px solid rgba(255, 255, 255, 0.6);
  76. margin-bottom: 50px;
  77. box-shadow: 0px 10px 15px -6px rgba(0, 0, 0, 0.2);
  78. display: none;
  79. }
  80. .text-center {
  81. text-align: center;
  82. }
  83. .modal-wrap {
  84. max-width: 600px;
  85. margin: 50px auto;
  86. -webkit-transition: -webkit-transform 300ms ease-in-out;
  87. transition: -webkit-transform 300ms ease-in-out;
  88. transition: transform 300ms ease-in-out;
  89. transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  90. }
  91. .modal-header {
  92. height: 45px;
  93. background: white;
  94. border-bottom: 1px solid #ccc;
  95. display: -webkit-box;
  96. display: -ms-flexbox;
  97. display: flex;
  98. -webkit-box-pack: center;
  99. -ms-flex-pack: center;
  100. justify-content: center;
  101. -webkit-box-align: center;
  102. -ms-flex-align: center;
  103. align-items: center;
  104. }
  105. .modal-header span {
  106. display: block;
  107. height: 12px;
  108. width: 12px;
  109. margin: 5px;
  110. border-radius: 50%;
  111. background: rgba(0, 0, 0, 0.2);
  112. }
  113. .modal-header span.is-active {
  114. background: rgba(0, 0, 0, 0.4);
  115. background: #FF8F00;
  116. }
  117. .modal-bodies {
  118. position: relative;
  119. -webkit-perspective: 1000px;
  120. perspective: 1000px;
  121. }
  122. .modal-body {
  123. background: white;
  124. padding: 40px 100px;
  125. box-shadow: 0px 50px 30px -30px rgba(0, 0, 0, 0.3);
  126. margin-bottom: 50px;
  127. position: absolute;
  128. top: 0;
  129. display: none;
  130. box-sizing: border-box;
  131. width: 100%;
  132. -webkit-transform-origin: top left;
  133. transform-origin: top left;
  134. }
  135. .modal-body.is-showing {
  136. display: block;
  137. }
  138. .sign-in28912 a{
  139. text-decoration: none;
  140. }
  141. .btn-primary3838{
  142. padding: 10px 20px;
  143. border-radius: 3px;
  144. background: #3071A9;
  145. color: white;
  146. text-transform: uppercase;
  147. letter-spacing: 1px;
  148. display: inline-block;
  149. cursor: pointer;
  150. }
  151. .btn-danger37883{
  152. padding: 10px 20px;
  153. border-radius: 3px;
  154. background: #CF4539;
  155. color: white;
  156. text-transform: uppercase;
  157. letter-spacing: 1px;
  158. display: inline-block;
  159. cursor: pointer;
  160. margin-bottom: 20px;
  161. }