poll_votes.less 486 B

12345678910111213141516171819202122232425262728293031323334
  1. // Poll Votes List
  2. // -------------------------
  3. .poll-votes-list {
  4. h2 {
  5. margin-bottom: 0px;
  6. font-size: @fontSizeLarge;
  7. small {
  8. font-size: @fontSizeLarge * 0.8;
  9. strong {
  10. color: @bluePale;
  11. font-weight: normal;
  12. }
  13. }
  14. }
  15. .vote-user {
  16. &, &:link, &:visited {
  17. color: @gray;
  18. font-size: @fontSizeLarge;
  19. font-weight: bold;
  20. }
  21. }
  22. a.vote-user {
  23. &:hover, &:active {
  24. color: @textColor;
  25. text-decoration: none;
  26. }
  27. }
  28. }