style.css 443 B

12345678910111213141516171819202122232425262728293031
  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. .article-content {
  24. text-align:justify;
  25. max-width:35em;
  26. }