styles.dev.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. *,
  2. ::after,
  3. ::before {
  4. box-sizing: border-box;
  5. }
  6. html {
  7. height: 100%;
  8. line-height: 1.5;
  9. }
  10. body {
  11. color: #212529;
  12. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  13. font-size: 16px;
  14. font-weight: 400;
  15. margin: 0;
  16. padding: 0;
  17. }
  18. .clear::after {
  19. clear: both;
  20. content: '';
  21. display: block;
  22. height: 0;
  23. line-height: 0;
  24. margin: 0;
  25. padding: 0;
  26. }
  27. html {
  28. min-height: 100%;
  29. height: 100%;
  30. position: relative;
  31. }
  32. body {
  33. margin: 0;
  34. padding: 0;
  35. position: relative;
  36. width: 100%;
  37. min-height: 100%;
  38. height: 100%;
  39. height: auto;
  40. display: table;
  41. }
  42. a {
  43. color: #0d6efd;
  44. text-decoration: none;
  45. }
  46. a:hover {
  47. text-decoration: underline;
  48. }
  49. .wrapper {
  50. padding: 15px;
  51. text-align: center;
  52. display: table-cell;
  53. vertical-align: middle;
  54. }
  55. h1, h2 {
  56. font-weight: 400;
  57. font-size: 34px;
  58. line-height: 36px;
  59. margin: 10px 0;
  60. }
  61. h2 {
  62. font-weight: 350;
  63. font-size: 14px;
  64. line-height: 18px;
  65. margin-bottom: 0;
  66. }
  67. .form-control {
  68. background-clip: padding-box;
  69. background-color: #fff;
  70. border-radius: 4px;
  71. border: 1px solid #ced4da;
  72. color: #495057;
  73. display: inline-block;
  74. font-family: inherit;
  75. font-size: 16px;
  76. height: 38px;
  77. line-height: 1.5;
  78. margin: 0;
  79. overflow: visible;
  80. padding: 6px 12px;
  81. transition: box-shadow .15s ease-in-out;
  82. vertical-align: middle;
  83. }
  84. .form-control:focus {
  85. background-color: #fff;
  86. border-color: #80bdff;
  87. box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
  88. color: #495057;
  89. outline: 0;
  90. }
  91. .btn {
  92. border-radius: 4px;
  93. border: 1px solid transparent;
  94. color: #fff;
  95. display: inline-block;
  96. font-size: 16px;
  97. font-weight: 400;
  98. height: 38px;
  99. line-height: 1.5;
  100. padding: 6px 12px;
  101. text-align: center;
  102. text-decoration: none;
  103. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  104. user-select: none;
  105. vertical-align: middle;
  106. white-space: nowrap;
  107. }
  108. .btn:focus,
  109. .btn:hover {
  110. text-decoration: none;
  111. }
  112. .btn:focus {
  113. box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
  114. outline: 0;
  115. }
  116. .btn:not(:disabled):not(.disabled) {
  117. cursor: pointer;
  118. }
  119. .btn.blue {
  120. background-color: #0d6efd;
  121. border-color: #0d6efd;
  122. }
  123. .btn.blue:hover {
  124. background-color: #0b5ed7;
  125. border-color: #0a58ca;
  126. }
  127. .btn.blue:focus {
  128. box-shadow: 0 0 0 0.25rem rgb(49 132 253 / 50%);
  129. }
  130. form {
  131. margin-top: 15px;
  132. }
  133. button {
  134. margin-left: 15px;
  135. }
  136. @media only screen and (max-width:800px) {
  137. .wrapper {
  138. padding: 15px 0;
  139. }
  140. h1, h2 {
  141. padding: 0 15px;
  142. }
  143. form {
  144. display: block;
  145. padding: 0px 15px;
  146. }
  147. form .form-control,
  148. form .btn {
  149. display: block;
  150. width: 100%;
  151. }
  152. form button {
  153. margin-left: 0;
  154. margin-top: 15px;
  155. }
  156. }