Advertisement
Guest User

Untitled

a guest
Aug 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. export default `
  2.     html, body, div, span, applet, object, iframe,
  3.     h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  4.     a, abbr, acronym, address, big, cite, code,
  5.     del, dfn, em, img, ins, kbd, q, s, samp,
  6.     small, strike, strong, sub, sup, tt, var,
  7.     b, u, i, center,
  8.     dl, dt, dd, ol, ul, li,
  9.     fieldset, form, label, legend,
  10.     table, caption, tbody, tfoot, thead, tr, th, td,
  11.     article, aside, canvas, details, embed,
  12.     figure, figcaption, footer, header, hgroup,
  13.     menu, nav, output, ruby, section, summary,
  14.     time, mark, audio, video, form, input, select, button {
  15.         margin: 0;
  16.         padding: 0;
  17.         border: 0;
  18.         font-size: 100%;
  19.         font: inherit;
  20.         vertical-align: baseline;
  21.         box-sizing: border-box;
  22.         outline: none;
  23.     }
  24.  
  25. article, aside, details, figcaption, figure,
  26. footer, header, hgroup, menu, nav, section {
  27.     display: block;
  28.     box-sizing: border-box;
  29. }
  30. body {
  31.     line-height: 1;
  32.     font-family: 'Montserrat', sans-serif;
  33.  
  34. }
  35. ol, ul {
  36.     list-style: none;
  37. }
  38. blockquote, q {
  39.     quotes: none;
  40. }
  41. blockquote:before, blockquote:after,
  42. q:before, q:after {
  43.     content: '';
  44.     content: none;
  45. }
  46. table {
  47.     border-collapse: collapse;
  48.     border-spacing: 0;
  49. }
  50. a {
  51.     text-decoration: none;
  52. }`;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement