performancetable.css 928 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * Copyright 2009 The Closure Library Authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by the Apache License, Version 2.0.
  5. * See the COPYING file for details.
  6. */
  7. /* Author: attila@google.com (Attila Bodis) */
  8. /* Author: nicksantos@google.com (Nick Santos) */
  9. table.test-results {
  10. font: 12px "Courier New", Courier, monospace;
  11. }
  12. table.test-results thead th {
  13. padding: 2px;
  14. color: #fff;
  15. background-color: #369;
  16. text-align: center;
  17. }
  18. table.test-results tbody td {
  19. padding: 2px;
  20. color: #333;
  21. background-color: #ffc;
  22. text-align: right;
  23. }
  24. table.test-results tbody td.test-description {
  25. text-align: left;
  26. }
  27. table.test-results tbody td.test-average {
  28. color: #000;
  29. font-weight: bold;
  30. }
  31. table.test-results tbody tr.test-suspicious td.test-standard-deviation {
  32. color: #800;
  33. }
  34. table.test-results tbody td.test-error {
  35. color: #800;
  36. font-weight: bold;
  37. text-align: center;
  38. }