karmas.less 797 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // Post Love/Hate Votes List
  2. // -------------------------
  3. .post-votes-list {
  4. .vote-user {
  5. &, &:link, &:visited {
  6. color: @gray;
  7. font-size: @fontSizeLarge;
  8. font-weight: bold;
  9. }
  10. .vote-icon {
  11. background-color: @grayLight;
  12. border-radius: @baseBorderRadius;
  13. display: inline-block;
  14. padding: 2px 3px;
  15. position: relative;
  16. bottom: (@fontSizeLarge - @baseFontSize) / 2;
  17. width: 18px;
  18. color: @white;
  19. font-size: @baseFontSize;
  20. text-align: center;
  21. }
  22. }
  23. a.vote-user {
  24. &:hover, &:active {
  25. color: @textColor;
  26. text-decoration: none;
  27. }
  28. }
  29. .post-likes {
  30. .vote-icon {
  31. background-color: @green;
  32. }
  33. }
  34. .post-dislikes {
  35. .vote-icon {
  36. background-color: @red;
  37. }
  38. }
  39. }