Advertisement
Guest User

Untitled

a guest
Jul 29th, 2020
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.85 KB | None | 0 0
  1. body {
  2.     background: #f4f4f4;
  3.     font-size: 13px;
  4. }
  5.  
  6. #wrapper {
  7.     width: 1170px;
  8.     border: 1px solid #e4e4e4;
  9.     display: flex;
  10.     flex-wrap: wrap;
  11.     font-family: open sans, sans-serif;
  12. }
  13.  
  14. #header {
  15.     background-size: cover;
  16.     background-position: left;
  17.     min-width: 100%;
  18. }
  19.  
  20. #content {
  21.     flex-grow: 1;
  22. }
  23.  
  24. .type-post {
  25.     width: 60%;
  26.     margin-left: auto;
  27.     margin-right: auto;
  28.     margin-top: 70px;
  29. }
  30.  
  31. .type-post p {
  32.     font-family: georgia,serif;
  33.     font-size: 20px;
  34.     line-height: 1.65;
  35.     color: #40454a !important;
  36. }
  37.  
  38. #footer {
  39.     min-width: 100%;
  40. }
  41.  
  42. h2 {
  43.     color: #2f343b;
  44. }
  45.  
  46. #content blockquote {
  47.     border-left: 4px solid #fc0;
  48.     border-left-color: #fc0;
  49.     background: none;
  50.     font-style: italic;
  51.     color: #40454a;
  52. }
  53. #content blockquote > p:last-child::before,
  54. #content blockquote > p:first-child::after {
  55.     content: '"';
  56. }
  57.  
  58. #comments {
  59.     background: none;
  60. }
  61.  
  62. dt.pingback, dd.pingback,
  63. dt.comment, dd.comment {
  64.     width: 60%;
  65.     padding: 20px 20px 0 !important;
  66.     border-top: none !important;
  67. }
  68.  
  69. dt.comment, dt.pingback {
  70.     margin-top: 20px;
  71. }
  72.  
  73. dd.comment, dd.pingback {
  74.     padding-bottom: 20px !important;
  75. }
  76.  
  77. .depth-1 {
  78.     background-color: #f8f9fa;
  79. }
  80.  
  81. .depth-2 {
  82.     margin-left: 60px !important;
  83.     border-left: 4px solid #FFCC00;
  84. }
  85.  
  86. .depth-3 {
  87.     margin-left: 100px !important;
  88.     border-left: 4px solid #FF120D;      
  89.     background-color: #f8f9fa;
  90.  
  91. }
  92.  
  93. .depth-4 {
  94.     margin-left: 140px !important;
  95.     border-left: 4px solid #1925FF;
  96. }
  97.  
  98. .depth-5 {
  99.     margin-left: 180px !important;
  100.     border-left: 4px solid #19FF64;
  101.     background-color: #f8f9fa;
  102. }
  103.  
  104.  
  105. .sharedaddy .sd-sharing-enabled, .sharedaddy .jetpack-likes-widget-loaded {
  106.     display: none;
  107. }
  108.  
  109. #jp-relatedposts h3.jp-relatedposts-headline {
  110.     width: 100%;
  111. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement