multiplexed_log.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * Copyright (c) 2015 Stephen Warren
  3. * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
  4. *
  5. * SPDX-License-Identifier: GPL-2.0
  6. */
  7. /*
  8. * This provides pretty formatting of the HTML log file, e.g.
  9. * - colored bars beside/above log sections for easily parsed delineation.
  10. * - color highlighting of various messages.
  11. */
  12. body {
  13. background-color: black;
  14. color: #ffffff;
  15. }
  16. pre {
  17. margin-top: 0px;
  18. margin-bottom: 0px;
  19. }
  20. .implicit {
  21. color: #808080;
  22. }
  23. .section {
  24. border-style: solid;
  25. border-color: #303030;
  26. border-width: 0px 0px 0px 5px;
  27. padding-left: 5px
  28. }
  29. .section-header {
  30. background-color: #303030;
  31. margin-left: -5px;
  32. margin-top: 5px;
  33. }
  34. .section-trailer {
  35. display: none;
  36. }
  37. .stream {
  38. border-style: solid;
  39. border-color: #303030;
  40. border-width: 0px 0px 0px 5px;
  41. padding-left: 5px
  42. }
  43. .stream-header {
  44. background-color: #303030;
  45. margin-left: -5px;
  46. margin-top: 5px;
  47. }
  48. .stream-trailer {
  49. display: none;
  50. }
  51. .error {
  52. color: #ff0000
  53. }
  54. .warning {
  55. color: #ffff00
  56. }
  57. .info {
  58. color: #808080
  59. }
  60. .action {
  61. color: #8080ff
  62. }
  63. .status-pass {
  64. color: #00ff00
  65. }
  66. .status-skipped {
  67. color: #ffff00
  68. }
  69. .status-fail {
  70. color: #ff0000
  71. }