12345678910111213141516171819202122232425262728293031323334 |
- .table-votes th {
- text-align: right;
- }
- .table-votes input {
- margin: 0;
- }
- .table-votes td {
- text-align: center;
- }
- .table-votes .yes {
- background-color: #46a546;
-
- color: white;
- font-weight: bold;
- }
- .table-votes .no {
- background-color: #9d261d;
- color: white;
- font-weight: bold;
- }
- .table-votes tr:hover .yes {
-
- background-color: #55ab55;
-
- }
- .table-votes tr:hover .no {
- background-color: #C73F38;
- }
|