Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.51 KB | None | 0 0
  1. * {
  2.     padding: 0;
  3.     margin: 0;
  4. }
  5.  
  6. html {
  7.     box-sizing: border-box;
  8. }
  9.  
  10. *, *:before, *:after {
  11.     box-sizing: inherit;
  12. }
  13.  
  14.  
  15. html {
  16.     font: 16px/1.5 "Helvetica", sans-serif;
  17.     width: 70%;
  18.     margin: 0 auto;
  19.     background: #EEE;
  20. }
  21.  
  22. body, form, input, textarea, option, select, button {
  23.     font: inherit
  24. }
  25.  
  26. p, ul, ol {
  27.     padding-bottom: 1.5em;
  28. }
  29.  
  30. ul, ol {
  31.     padding-left: 2.5em;
  32. }
  33.  
  34. h1, h2, h3, h4, h5, h6 {
  35.     padding-bottom: 0.5rem;
  36.     padding-top: 1.5rem;
  37.     font-weight: normal;
  38. }
  39.  
  40. h1 {font-size: 2.2em; }
  41. h2 {font-size: 1.9em; }
  42. h3 {font-size: 1.6em; }
  43. h4 {font-size: 1.4em; }
  44. h5 {font-size: 1.2em; }
  45. h6 {font-size: 1.0em; }
  46.  
  47. main blockquote {
  48.     float: right;
  49.     padding: 0 2.5em;
  50.     border-left: 2px solid #999;
  51.     margin-bottom: 1.5em;
  52.     margin-left: 1em;
  53.     font-style: italic;
  54.     max-width: 45%;
  55. }
  56.  
  57. blockquote p:last-child {
  58.     padding-bottom: 0;
  59. }
  60.  
  61. blockquote p.author {
  62.     text-align: right;
  63. }
  64.  
  65.  
  66. header {
  67.     margin-top: 2em;
  68. }
  69.  
  70. hr {
  71.     border: 2px solid #000;
  72. }
  73.  
  74. .site-title {
  75.     display: inline-block;
  76.     font-weight: bold;
  77.     text-transform: uppercase;
  78.     font-size: 3em;
  79.     padding-bottom: 0.5rem;
  80. }
  81.  
  82. .image-right {
  83.     float: right;
  84.     padding: 0.5em;
  85.     border: 2px solid #000;
  86.     background: #FFF;
  87.     margin: 1em;
  88. }
  89.  
  90. .image-left {
  91.     float: left;
  92.     padding: 0.5em;
  93.     border: 2px solid #000;
  94.     background: #FFF;
  95.     margin: 1em;
  96. }
  97.  
  98. img {
  99.     clear: both;
  100. }
  101.  
  102. p:before {
  103.     clear: both;
  104. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement