index.css 519 B

12345678910111213141516171819202122232425262728
  1. .JoyElection--NotRunning {
  2. /* nothing yet */
  3. }
  4. .JoyElection--Running {
  5. font-style: italic;
  6. color: green;
  7. }
  8. .SealedVoteTable {
  9. -webkit-box-shadow: 0 1px 2px 0 rgba(34,36,38,.15) !important;
  10. box-shadow: 0 1px 2px 0 rgba(34,36,38,.15) !important;
  11. tr td:first-child {
  12. color: #999 !important;
  13. font-weight: normal !important;
  14. }
  15. }
  16. .SidebarSubtitle {
  17. &.Announcing {
  18. color: #4caf50; /* green */
  19. }
  20. &.Voting {
  21. color: #2196f3; /* blue */
  22. }
  23. &.Revealing {
  24. color: #ff5722; /* red */
  25. }
  26. }