style.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .list-of-tags {
  2. list-style:none;
  3. margin:0;
  4. padding:5px 0 ;
  5. overflow:hidden;
  6. }
  7. .list-of-tags li {
  8. line-height:28px;
  9. float:left;
  10. }
  11. .list-of-tags a {
  12. padding: 3px 6px;
  13. margin: 2px;
  14. color: #222;
  15. background:#EEE;
  16. border-radius: 3px;
  17. text-decoration:none;
  18. }
  19. .list-of-tags a span {
  20. vertical-align: super;
  21. font-size: 0.8em;
  22. }
  23. .tags-in-article li {
  24. line-height:28px;
  25. float:none;
  26. }
  27. .article-content {
  28. text-align:justify;
  29. max-width:50em;
  30. }
  31. .article-content p{
  32. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  33. font-variant: normal;
  34. text-transform: none;
  35. font-size: 1.1em;
  36. line-height: 1.6em;
  37. }
  38. .article-content blockquote {
  39. padding: 5px 0px 5px 20px;
  40. margin: 20px 0px 20px 0px;
  41. border-left: 5px solid rgb(100,100,100);
  42. }
  43. .article-content blockquote p {
  44. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  45. font-variant: normal;
  46. text-transform: none;
  47. font-size: 1.2em;
  48. line-height: 1.7em;
  49. }
  50. .list-of-categories span {
  51. vertical-align: super;
  52. font-size: 0.8em;
  53. }
  54. a.list-of-categories {
  55. text-decoration:none;
  56. }