cavote.css 624 B

12345678910111213141516171819202122232425262728293031323334
  1. .table-votes th {
  2. text-align: right;
  3. }
  4. .table-votes input {
  5. margin: 0;
  6. }
  7. .table-votes td {
  8. text-align: center;
  9. }
  10. .table-votes .yes {
  11. background-color: #46a546; /* green */
  12. /*background-color: #049cdb;*/ /* blue */
  13. color: white;
  14. font-weight: bold;
  15. }
  16. .table-votes .no {
  17. background-color: #9d261d; /* red */
  18. color: white;
  19. font-weight: bold;
  20. }
  21. .table-votes tr:hover .yes {
  22. /*background-color: #60C160; [> green <]*/
  23. background-color: #55ab55; /* green */
  24. /*background-color: #049cdb;*/ /* blue */
  25. }
  26. .table-votes tr:hover .no {
  27. background-color: #C73F38; /* red */
  28. }