Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. .App {
  2. text-align: center;
  3. }
  4.  
  5. .App-logo {
  6. animation: App-logo-spin infinite 20s linear;
  7. height: 80px;
  8. }
  9.  
  10. .App-header {
  11. background-color: #222;
  12. height: 170px;
  13. padding: 20px;
  14. color: white;
  15. }
  16.  
  17. .App-intro {
  18. font-size: large;
  19. }
  20. .App-body {
  21. box-sizing: border-box;
  22. padding: 20px;
  23. height: 100%;
  24. width: 100%;
  25. }
  26.  
  27. @keyframes App-logo-spin {
  28. from { transform: rotate(0deg); }
  29. to { transform: rotate(360deg); }
  30. }
  31.  
  32. * {
  33. box-sizing: border-box;
  34. }
  35.  
  36. input[type="text"],
  37. input[type="email"],
  38. input[type="password"],
  39. input[type="number"] {
  40. display: block;
  41. margin: 0;
  42. width: 100%;
  43. font-family: sans-serif;
  44. font-size: 16px;
  45. appearance: none;
  46. box-shadow: none;
  47. border-radius: none;
  48. }
  49. input[type="text"]:focus,
  50. input[type="email"]:focus,
  51. input[type="password"]:focus,
  52. input[type="number"]:focus {
  53. outline: none;
  54. }
  55.  
  56. button {
  57. border: none;
  58. border-radius: 4px;
  59. padding: 8px 16px;
  60. font-size: 18px;
  61. font-weight: 400;
  62. display: inline-block;
  63. color: #fafafa;
  64. text-decoration: none;
  65. text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  66. box-shadow: 0 1px 1px rgba(0,0,0,0.2);
  67. text-decoration: none;
  68. background: #cc7a6f;
  69. color: #fafafa;
  70. margin-top: 1rem;
  71. }
  72.  
  73. button[disabled] {
  74. opacity: 0.6;
  75. }
  76.  
  77. label {
  78. display: block;
  79. margin-bottom: .25rem;
  80. }
  81.  
  82. ul {
  83. padding-left: 20px;
  84. list-style-type: 0;
  85. }
  86.  
  87. ul li {
  88. margin-top: 1rem;
  89. }
  90.  
  91. ul li:first-child {
  92. margin-top: 0;
  93. }
  94.  
  95. hr {
  96. margin: 30px 0 20px;
  97. }
  98.  
  99. .widget-form,
  100. .widget-list {
  101. border: 1px solid #dedede;
  102. text-align: left;
  103. display: inline-block;
  104. vertical-align: top;
  105. width: 400px;
  106. padding: 20px;
  107. }
  108.  
  109. .widget-list {
  110. margin-left: 20px;
  111. }
  112.  
  113. .widget-form input[type="text"],
  114. .widget-form input[type="email"],
  115. .widget-form input[type="password"],
  116. .widget-form input[type="number"] {
  117. padding: 10px;
  118. border: solid 1px #dcdcdc;
  119. transition: box-shadow 0.3s, border 0.3s;
  120. margin-bottom: 1rem;
  121. }
  122.  
  123. .widget-form input[type="text"]:focus,
  124. .widget-form input[type="email"]:focus,
  125. .widget-form input[type="password"]:focus,
  126. .widget-form input[type="number"]:focus{
  127. border: solid 1px #0FBBEC;
  128. box-shadow: 0 0 10px 0px #61dafb;
  129. }
  130.  
  131. .auth-messages {
  132. margin-top: 1rem;
  133. }
  134. .auth-messages ul {
  135. list-style-type: none;
  136. padding-left: 0;
  137. }
  138. table {
  139. text-align: left;
  140. font-size:14px;
  141. width: 100%;
  142. }
  143. table th {
  144. padding:21px 25px 22px 25px;
  145. border-bottom:1px solid #e0e0e0;
  146. }
  147. table th:first-child {
  148. text-align: left;
  149. padding-left:10px;
  150. }
  151.  
  152. table tr {
  153. text-align: center;
  154. padding-left:10px;
  155. }
  156. table td:first-child {
  157. text-align: left;
  158. padding-left:10px;
  159. border-left: 0;
  160. }
  161. table td {
  162. padding:10px;
  163. }
  164.  
  165. table tr:hover td {
  166. background: #f2f2f2;
  167. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement