loggingDashboard.scss 1.0 KB

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