richtext.css 531 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .richtext * {
  2. color: #333;
  3. }
  4. .richtext {
  5. line-height: 1.8em;
  6. font-size: 14px;
  7. }
  8. .richtext img {
  9. max-width: 100%;
  10. }
  11. .richtext table {
  12. border: solid 1px #888;
  13. margin:0px auto;
  14. }
  15. .richtext table tr td {
  16. padding: 3px 10px;
  17. border: 1px solid #888;
  18. cellspacing:0;
  19. cellpadding:0;
  20. }
  21. .richtext table tr td p{
  22. margin-bottom: 0;
  23. }
  24. .richtext table tr:nth-child(2n){
  25. background: #ddd;
  26. }
  27. .richtext strong {
  28. font-weight: bold;
  29. }
  30. .richtext em {
  31. font-style: italic;
  32. }
  33. .richtext p {
  34. margin: 0;
  35. padding: 0;
  36. margin-bottom: 15px;
  37. }