Advertisement
renatoknot

Untitled

Dec 27th, 2021
1,362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.75 KB | None | 0 0
  1. /* CSS RESET */
  2. /* http://meyerweb.com/eric/tools/css/reset/
  3.    v2.0 | 20110126
  4.    License: none (public domain)
  5. */
  6.  
  7. html,
  8. body,
  9. div,
  10. span,
  11. applet,
  12. object,
  13. iframe,
  14. h1,
  15. h2,
  16. h3,
  17. h4,
  18. h5,
  19. h6,
  20. p,
  21. blockquote,
  22. pre,
  23. a,
  24. abbr,
  25. acronym,
  26. address,
  27. big,
  28. cite,
  29. code,
  30. del,
  31. dfn,
  32. em,
  33. img,
  34. ins,
  35. kbd,
  36. q,
  37. s,
  38. samp,
  39. small,
  40. strike,
  41. strong,
  42. sub,
  43. sup,
  44. tt,
  45. var,
  46. b,
  47. u,
  48. i,
  49. center,
  50. dl,
  51. dt,
  52. dd,
  53. ol,
  54. ul,
  55. li,
  56. fieldset,
  57. form,
  58. label,
  59. legend,
  60. table,
  61. caption,
  62. tbody,
  63. tfoot,
  64. thead,
  65. tr,
  66. th,
  67. td,
  68. article,
  69. aside,
  70. canvas,
  71. details,
  72. embed,
  73. figure,
  74. figcaption,
  75. footer,
  76. header,
  77. hgroup,
  78. menu,
  79. nav,
  80. output,
  81. ruby,
  82. section,
  83. summary,
  84. time,
  85. mark,
  86. audio,
  87. video {
  88.   margin: 0;
  89.   padding: 0;
  90.   border: 0;
  91.   font-size: 100%;
  92.   font: inherit;
  93.   vertical-align: baseline;
  94. }
  95. /* HTML5 display-role reset for older browsers */
  96. article,
  97. aside,
  98. details,
  99. figcaption,
  100. figure,
  101. footer,
  102. header,
  103. hgroup,
  104. menu,
  105. nav,
  106. section {
  107.   display: block;
  108. }
  109. body {
  110.   line-height: 1;
  111. }
  112. ol,
  113. ul {
  114.   list-style: none;
  115. }
  116. blockquote,
  117. q {
  118.   quotes: none;
  119. }
  120. blockquote:before,
  121. blockquote:after,
  122. q:before,
  123. q:after {
  124.   content: "";
  125.   content: none;
  126. }
  127. table {
  128.   border-collapse: collapse;
  129.   border-spacing: 0;
  130. }
  131.  
  132. /* Styles */
  133. body {
  134.   font-family: "Red Hat Display", sans-serif;
  135.   font-size: 16px;
  136.   max-width: 1440px;
  137.   background-image: url("./images/pattern-background-desktop.svg");
  138.   display: flex;
  139.   flex: 1;
  140.   align-items: center;
  141.   justify-content: center;
  142. }
  143.  
  144. .card {
  145.   margin-top: 150px !important;
  146.   max-width: 445px;
  147.   margin: 0 auto;
  148.   display: flex;
  149.   align-items: center;
  150.   justify-content: center;
  151.   flex-direction: column;
  152.   background-color: #fff;
  153.   border-radius: 20px;
  154. }
  155.  
  156. .illustration {
  157.   width: 300px;
  158. }
  159.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement