style.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. html,body {
  2. height: 100%;
  3. min-height: 100%;
  4. margin: 0;
  5. padding: 0;
  6. overflow: hidden;
  7. font-family: Consolas,"DejaVu Sans Mono","Liberation Mono",Courier,monospace;
  8. background-color: #101010;
  9. }
  10. .terminal {
  11. background-color: #101010;
  12. color: #f0f0f0;
  13. font-size: 10pt;
  14. font-family: Consolas,"DejaVu Sans Mono","Liberation Mono",Courier,monospace;
  15. font-variant-ligatures: none;
  16. -moz-osx-font-smoothing: grayscale;
  17. -webkit-font-smoothing: antialiased;
  18. }
  19. .terminal .xterm-viewport {
  20. background-color: rgba(121, 121, 121, 0);
  21. -webkit-background-clip: text;
  22. -webkit-text-fill-color: transparent;
  23. transition: background-color 800ms linear;
  24. }
  25. /* fix line height on firefox */
  26. .xterm-rows > div > span {
  27. display: inline-block;
  28. }
  29. #terminal-container {
  30. height: 100%;
  31. width: auto;
  32. }
  33. #wrap {
  34. height: 100%;
  35. width: auto;
  36. box-sizing: border-box;
  37. padding: 5px;
  38. }
  39. #status_bar {
  40. position: fixed;
  41. top: 0;
  42. left: 0;
  43. width: 100%;
  44. z-index: 500;
  45. transform: translateY(-100%);
  46. transition: 0.25s ease-in-out;
  47. visibility: hidden;
  48. opacity: 0;
  49. padding: 5px;
  50. display: flex;
  51. flex-direction: row;
  52. justify-content: center;
  53. align-content: center;
  54. line-height: 25px;
  55. color: #fff;
  56. border-bottom: 1px solid rgba(0, 0, 0, 0.9);
  57. }
  58. #status_bar.open {
  59. transform: translateY(0);
  60. visibility: visible;
  61. opacity: 1;
  62. }
  63. #status_bar.normal {
  64. background: rgba(128,128,128,0.9);
  65. }
  66. #status_bar.error {
  67. background: rgba(200,55,55,0.9);
  68. }
  69. #status_bar.warning {
  70. background: rgba(180,180,30,0.9);
  71. }