Guest User

Untitled

a guest
Mar 20th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.32 KB | None | 0 0
  1. *,
  2. *::before,
  3. *::after {
  4. box-sizing: border-box;
  5. }
  6.  
  7. html {
  8. font-family: sans-serif;
  9. line-height: 1.15;
  10. -webkit-text-size-adjust: 100%;
  11. -ms-text-size-adjust: 100%;
  12. -ms-overflow-style: scrollbar;
  13. -webkit-tap-highlight-color: transparent;
  14. }
  15.  
  16. @-ms-viewport {
  17. width: device-width;
  18. }
  19.  
  20. article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  21. display: block;
  22. }
  23.  
  24. body {
  25. margin: 0;
  26. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  27. font-size: 1rem;
  28. font-weight: 400;
  29. line-height: 1.5;
  30. color: #212529;
  31. text-align: left;
  32. background-color: #fff;
  33. }
  34.  
  35. [tabindex="-1"]:focus {
  36. outline: 0 !important;
  37. }
  38.  
  39. hr {
  40. box-sizing: content-box;
  41. height: 0;
  42. overflow: visible;
  43. }
  44.  
  45. h1, h2, h3, h4, h5, h6 {
  46. margin-top: 0;
  47. margin-bottom: 0.5rem;
  48. }
  49.  
  50. p {
  51. margin-top: 0;
  52. margin-bottom: 1rem;
  53. }
  54.  
  55. abbr[title],
  56. abbr[data-original-title] {
  57. text-decoration: underline;
  58. -webkit-text-decoration: underline dotted;
  59. text-decoration: underline dotted;
  60. cursor: help;
  61. border-bottom: 0;
  62. }
  63.  
  64. address {
  65. margin-bottom: 1rem;
  66. font-style: normal;
  67. line-height: inherit;
  68. }
  69.  
  70. ol,
  71. ul,
  72. dl {
  73. margin-top: 0;
  74. margin-bottom: 1rem;
  75. }
  76.  
  77. ol ol,
  78. ul ul,
  79. ol ul,
  80. ul ol {
  81. margin-bottom: 0;
  82. }
  83.  
  84. dt {
  85. font-weight: 700;
  86. }
  87.  
  88. dd {
  89. margin-bottom: .5rem;
  90. margin-left: 0;
  91. }
  92.  
  93. blockquote {
  94. margin: 0 0 1rem;
  95. }
  96.  
  97. dfn {
  98. font-style: italic;
  99. }
  100.  
  101. b,
  102. strong {
  103. font-weight: bolder;
  104. }
  105.  
  106. small {
  107. font-size: 80%;
  108. }
  109.  
  110. sub,
  111. sup {
  112. position: relative;
  113. font-size: 75%;
  114. line-height: 0;
  115. vertical-align: baseline;
  116. }
  117.  
  118. sub {
  119. bottom: -.25em;
  120. }
  121.  
  122. sup {
  123. top: -.5em;
  124. }
  125.  
  126. a {
  127. color: #007bff;
  128. text-decoration: none;
  129. background-color: transparent;
  130. -webkit-text-decoration-skip: objects;
  131. }
  132.  
  133. a:hover {
  134. color: #0056b3;
  135. text-decoration: underline;
  136. }
  137.  
  138. a:not([href]):not([tabindex]) {
  139. color: inherit;
  140. text-decoration: none;
  141. }
  142.  
  143. a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  144. color: inherit;
  145. text-decoration: none;
  146. }
  147.  
  148. a:not([href]):not([tabindex]):focus {
  149. outline: 0;
  150. }
  151.  
  152. pre,
  153. code,
  154. kbd,
  155. samp {
  156. font-family: monospace, monospace;
  157. font-size: 1em;
  158. }
  159.  
  160. pre {
  161. margin-top: 0;
  162. margin-bottom: 1rem;
  163. overflow: auto;
  164. -ms-overflow-style: scrollbar;
  165. }
  166.  
  167. figure {
  168. margin: 0 0 1rem;
  169. }
  170.  
  171. img {
  172. vertical-align: middle;
  173. border-style: none;
  174. }
  175.  
  176. svg:not(:root) {
  177. overflow: hidden;
  178. }
  179.  
  180. table {
  181. border-collapse: collapse;
  182. }
  183.  
  184. caption {
  185. padding-top: 0.75rem;
  186. padding-bottom: 0.75rem;
  187. color: #6c757d;
  188. text-align: left;
  189. caption-side: bottom;
  190. }
  191.  
  192. th {
  193. text-align: inherit;
  194. }
  195.  
  196. label {
  197. display: inline-block;
  198. margin-bottom: 0.5rem;
  199. }
  200.  
  201. button {
  202. border-radius: 0;
  203. }
  204.  
  205. button:focus {
  206. outline: 1px dotted;
  207. outline: 5px auto -webkit-focus-ring-color;
  208. }
  209.  
  210. input,
  211. button,
  212. select,
  213. optgroup,
  214. textarea {
  215. margin: 0;
  216. font-family: inherit;
  217. font-size: inherit;
  218. line-height: inherit;
  219. }
  220.  
  221. button,
  222. input {
  223. overflow: visible;
  224. }
  225.  
  226. button,
  227. select {
  228. text-transform: none;
  229. }
  230.  
  231. button,
  232. html [type="button"],
  233. [type="reset"],
  234. [type="submit"] {
  235. -webkit-appearance: button;
  236. }
  237.  
  238. button::-moz-focus-inner,
  239. [type="button"]::-moz-focus-inner,
  240. [type="reset"]::-moz-focus-inner,
  241. [type="submit"]::-moz-focus-inner {
  242. padding: 0;
  243. border-style: none;
  244. }
  245.  
  246. input[type="radio"],
  247. input[type="checkbox"] {
  248. box-sizing: border-box;
  249. padding: 0;
  250. }
  251.  
  252. input[type="date"],
  253. input[type="time"],
  254. input[type="datetime-local"],
  255. input[type="month"] {
  256. -webkit-appearance: listbox;
  257. }
  258.  
  259. textarea {
  260. overflow: auto;
  261. resize: vertical;
  262. }
  263.  
  264. fieldset {
  265. min-width: 0;
  266. padding: 0;
  267. margin: 0;
  268. border: 0;
  269. }
  270.  
  271. legend {
  272. display: block;
  273. width: 100%;
  274. max-width: 100%;
  275. padding: 0;
  276. margin-bottom: .5rem;
  277. font-size: 1.5rem;
  278. line-height: inherit;
  279. color: inherit;
  280. white-space: normal;
  281. }
  282.  
  283. progress {
  284. vertical-align: baseline;
  285. }
  286.  
  287. [type="number"]::-webkit-inner-spin-button,
  288. [type="number"]::-webkit-outer-spin-button {
  289. height: auto;
  290. }
  291.  
  292. [type="search"] {
  293. outline-offset: -2px;
  294. -webkit-appearance: none;
  295. }
  296.  
  297. [type="search"]::-webkit-search-cancel-button,
  298. [type="search"]::-webkit-search-decoration {
  299. -webkit-appearance: none;
  300. }
  301.  
  302. ::-webkit-file-upload-button {
  303. font: inherit;
  304. -webkit-appearance: button;
  305. }
  306.  
  307. output {
  308. display: inline-block;
  309. }
  310.  
  311. summary {
  312. display: list-item;
  313. cursor: pointer;
  314. }
  315.  
  316. template {
  317. display: none;
  318. }
  319.  
  320. [hidden] {
  321. display: none !important;
  322. }
Add Comment
Please, Sign In to add comment