You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.0 KiB

2 years ago
  1. /* Tags */
  2. #head-tags{
  3. margin-left:1em;
  4. margin-top:1em;
  5. }
  6. #body .tags a.tag-link {
  7. display: inline-block;
  8. line-height: 2em;
  9. font-size: 0.8em;
  10. position: relative;
  11. margin: 0 16px 8px 0;
  12. padding: 0 10px 0 12px;
  13. background: #8451a1;
  14. -webkit-border-bottom-right-radius: 3px;
  15. border-bottom-right-radius: 3px;
  16. -webkit-border-top-right-radius: 3px;
  17. border-top-right-radius: 3px;
  18. -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  19. box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  20. color: #fff;
  21. }
  22. #body .tags a.tag-link:before {
  23. content: "";
  24. position: absolute;
  25. top:0;
  26. left: -1em;
  27. width: 0;
  28. height: 0;
  29. border-color: transparent #8451a1 transparent transparent;
  30. border-style: solid;
  31. border-width: 1em 1em 1em 0;
  32. }
  33. #body .tags a.tag-link:after {
  34. content: "";
  35. position: absolute;
  36. top: 10px;
  37. left: 1px;
  38. width: 5px;
  39. height: 5px;
  40. -webkit-border-radius: 50%;
  41. border-radius: 100%;
  42. background: #fff;
  43. }