loggingDashboard.css 942 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. @import 'https://fonts.googleapis.com/css?family=PT+Mono';
  2. #loggingDashboard .tab-pane {
  3. padding: 20px 10px;
  4. border: 1px solid #ddd;
  5. border-top: none;
  6. }
  7. #loggingDashboard .btn .caret {
  8. margin-left: 5px;
  9. }
  10. #loggersTable td.details-control span {
  11. cursor: pointer;
  12. font-family: "Font Awesome 5 Free";
  13. font-weight: 900;
  14. font-size: 10pt;
  15. color: #337ab7;
  16. }
  17. #loggersTable td.details-control span:after {
  18. content: "\f067";
  19. }
  20. #loggersTable tr.shown td.details-control span:after {
  21. content: "\f068";
  22. }
  23. .additive {
  24. text-align: center;
  25. }
  26. .additive .glyphicon-ok {
  27. color: #5cb85c;
  28. }
  29. .additive .glyphicon-remove {
  30. color: #d9534f;
  31. }
  32. #logoutputarea {
  33. border: 0.1em solid #ccc;
  34. border-radius: 0.5em;
  35. padding: 1em;
  36. /* space on all directions */
  37. font-family: 'PT Mono', monospace;
  38. font-size: 1em;
  39. width: 100%;
  40. height: 100%;
  41. background-color: black;
  42. color: #39e600;
  43. }
  44. main.container {
  45. max-width: 95%;
  46. }