grades.css 693 B

12345678910111213141516171819202122232425262728293031323334353637
  1. table {
  2. border: 1px solid #404040;
  3. box-shadow: 0px 0px 5px 5px #404040;
  4. border-radius: 10px;
  5. margin: 2em auto;
  6. border-collapse: collapse;
  7. font-size: 16pt;
  8. }
  9. td, th {
  10. padding: 0.5em;
  11. }
  12. tr {
  13. color: #ccc;
  14. }
  15. tr:nth-child(even) {
  16. background: #2B2B2B;
  17. }
  18. tr:nth-child(odd) {
  19. background: #303030;
  20. }
  21. .problem:nth-child(even) {
  22. background: linear-gradient(to right, #2B2B2B, #DC1E1E);
  23. }
  24. .problem:nth-child(odd) {
  25. background: linear-gradient(to right, #303030, #D22828);
  26. }
  27. .perfect:nth-child(even) {
  28. background: linear-gradient(to right, #2B2B2B, #A028B4);
  29. }
  30. .perfect:nth-child(odd) {
  31. background: linear-gradient(to right, #303030, #9628C8);
  32. }