Advertisement
Guest User

style.css

a guest
Feb 13th, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.15 KB | None | 0 0
  1. .conteudo-post-texto p {
  2.     margin: 0 0 20px
  3. }
  4.  
  5. .conteudo-post-texto h1 {
  6.     margin: 20px 0
  7. }
  8.  
  9. .conteudo-post-texto h2 {
  10.     margin: 20px 0 10px
  11. }
  12.  
  13. .conteudo-post-texto h3,
  14. .conteudo-post-texto h4,
  15. .conteudo-post-texto h5,
  16. .conteudo-post-texto h6 {
  17.     margin: 10px 0 5px
  18. }
  19.  
  20. .conteudo-post-texto ul {
  21.     margin: 0 0 20px
  22. }
  23.  
  24. .conteudo-post-texto ul>li {
  25.     list-style-type: disc;
  26.     list-style-position: inside;
  27.     margin-bottom: 5px
  28. }
  29.  
  30. .conteudo-post-texto ol {
  31.     margin: 0 0 20px
  32. }
  33.  
  34. .conteudo-post-texto ol>li {
  35.     list-style-type: decimal;
  36.     list-style-position: inside;
  37.     margin-bottom: 5px
  38. }
  39.  
  40. .conteudo-post-texto ol ol,
  41. .conteudo-post-texto ol ul,
  42. .conteudo-post-texto ul ol,
  43. .conteudo-post-texto ul ul {
  44.     margin-left: 20px
  45. }
  46.  
  47. .conteudo-post-texto blockquote {
  48.     font-size: 1.1em;
  49.     padding: 5px 0 5px 2%;
  50.     border-left: 4px solid #1976D2;
  51.     margin-left: 5%;
  52.     margin-bottom: 20px
  53. }
  54.  
  55. .conteudo-post-texto blockquote em:last-of-type,
  56. .conteudo-post-texto blockquote h1:last-of-type,
  57. .conteudo-post-texto blockquote h2:last-of-type,
  58. .conteudo-post-texto blockquote h3:last-of-type,
  59. .conteudo-post-texto blockquote h4:last-of-type,
  60. .conteudo-post-texto blockquote h5:last-of-type,
  61. .conteudo-post-texto blockquote h6:last-of-type,
  62. .conteudo-post-texto blockquote ol:last-of-type,
  63. .conteudo-post-texto blockquote p:last-of-type,
  64. .conteudo-post-texto blockquote span:last-of-type,
  65. .conteudo-post-texto blockquote strong:last-of-type,
  66. .conteudo-post-texto blockquote ul:last-of-type {
  67.     margin-bottom: 0
  68. }
  69.  
  70. .conteudo-post-texto .wp-caption,
  71. .conteudo-post-texto img {
  72.     margin: 20px auto;
  73.     box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);
  74.     border-radius: 2px;
  75.     max-width: 100%;
  76.     display: block
  77. }
  78.  
  79. .conteudo-post-texto .wp-caption {
  80.     font-size: 0
  81. }
  82.  
  83. .conteudo-post-texto .wp-caption img {
  84.     margin: 0;
  85.     box-shadow: none;
  86.     border-radius: 0
  87. }
  88.  
  89. .conteudo-post-texto .wp-caption .wp-caption-text {
  90.     display: block;
  91.     text-align: center;
  92.     color: #727272;
  93.     background: #FAFAFA;
  94.     font-size: 16px;
  95.     padding: .3em .4em
  96. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement