ivprog-term.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. .ivprog-term-div {
  2. /* background-color: black; */
  3. width: 100%;
  4. height: 12rem;
  5. overflow-y: scroll;
  6. }
  7. #ivprog-term-div {
  8. z-index: 10;
  9. }
  10. .ivprog-term-userText, .ivprog-term-userInput {
  11. color: #f2d6d6;
  12. }
  13. .ivprog-term-info {
  14. color: #28a628;
  15. }
  16. .ivprog-term-error {
  17. color: #df4242;
  18. }
  19. .ivprog-term-input {
  20. font-family: 'Courier New', Courier, monospace;
  21. font-weight: 500;
  22. background-color: inherit;
  23. border: 0;
  24. color: white;
  25. }
  26. .ivprog-term-div > .ivprog-term-input, .ivprog-term-div > .ivprog-term-userText,
  27. .ivprog-term-div > .ivprog-term-info, .ivprog-term-div, .ivprog-term-error {
  28. padding-left: 20px;
  29. }
  30. #ivprog-term {
  31. /* border: 1px solid gray;
  32. background: black;
  33. margin-top: -30px;
  34. position: relative;
  35. padding: 5px;
  36. z-index: 999; */
  37. }
  38. /* #ivprog-term i {
  39. margin-left: 5px;
  40. cursor: pointer;
  41. } */
  42. .div_toggle_console {
  43. cursor: pointer;
  44. }
  45. .ivprog-term-active {
  46. box-shadow: 0 0 5px rgba(81, 203, 238, 1) !important;
  47. border: 3px solid rgba(81, 203, 238, 1) !important;
  48. }
  49. .ivprog-term-div {
  50. overflow:scroll;
  51. }
  52. .ivprog-term-div::-webkit-scrollbar {
  53. width: 12px;
  54. }
  55. .ivprog-term-div::-webkit-scrollbar-track {
  56. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  57. -webkit-border-radius: 10px;
  58. border-radius: 10px;
  59. }
  60. .ivprog-term-div::-webkit-scrollbar-thumb {
  61. -webkit-border-radius: 10px;
  62. border-radius: 10px;
  63. background: green;
  64. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
  65. }
  66. /**novas regras bash*/
  67. #ivprog-terminal-inputdiv {
  68. padding-left: 12px;
  69. }
  70. #ivprog-console-clearbtn, #ivprog-console-showbtn, #ivprog-console-hidebtn {
  71. cursor: pointer;
  72. }
  73. .bash {
  74. box-shadow: 0 0 30px rgba(0,0,0,0.4);
  75. border-radius: 3px;
  76. font-family: "Andale Mono", Consolas, "Courier New" !important;
  77. }
  78. .bash-title {
  79. text-align: center;
  80. color: #525252;
  81. padding: 5px 0;
  82. margin: 0;
  83. text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
  84. font-size: 0.85em;
  85. border: 1px solid #CCCCCC;
  86. border-bottom: none;
  87. border-top-left-radius: 3px;
  88. border-top-right-radius: 3px;
  89. background: #f7f7f7; /* Old browsers */
  90. background: linear-gradient(to bottom, #f7f7f7 0%,#B8B8B8 100%); /* W3C */
  91. }
  92. .bash-body {
  93. /* margin: 0;
  94. padding: 5px; */
  95. background: #111010;
  96. /* list-style: none; */
  97. color: #F8F8FF;
  98. font: 14px 'Andale Mono', Consolas, 'Courier New';
  99. line-height: 1.6em;
  100. border: 1px solid #CCCCCC;
  101. border-bottom-right-radius: 3px;
  102. border-bottom-left-radius: 3px;
  103. }
  104. .bash-text {
  105. font: 14px 'Andale Mono', Consolas, 'Courier New';
  106. line-height: 1.6em;
  107. }
  108. .bash-highlight {
  109. color: #45D40C;
  110. }
  111. .bash-highlight a {
  112. color: #45D40C;
  113. text-decoration: underline;
  114. }
  115. /* .bash-body li:before {
  116. content: '$';
  117. color: #F8F8FF;
  118. position: absolute;
  119. left: 0;
  120. top: 0;
  121. } */
  122. .bash-body i {
  123. cursor: text;
  124. }
  125. .bash-body li {
  126. word-wrap: break-word;
  127. position: relative;
  128. padding: 0 0 0 15px;
  129. }
  130. #cmd {
  131. font-family: courier;
  132. font-size: 14px;
  133. line-height: normal;
  134. background:inherit;
  135. color: #21f838;
  136. padding: 5px;
  137. overflow: hidden;
  138. }
  139. #cmd span {
  140. float: left;
  141. padding-left: 3px;
  142. white-space: pre;
  143. }
  144. #cursor {
  145. float: left;
  146. width: 5px;
  147. height: 14px;
  148. background: #21f838;
  149. }
  150. #cmd ~ input {
  151. width: 0;
  152. height: 0;
  153. opacity: 0;
  154. }
  155. .ivprog-term-error > span > ul {
  156. margin:0 !important;
  157. }
  158. .ivprog-term-error > span > ul > li {
  159. padding: 0;
  160. margin: 0;
  161. line-height: 1rem;
  162. }
  163. .assessment-div-detail:hover {
  164. cursor: pointer;
  165. }
  166. .assessment-div-detail:hover > span {
  167. text-decoration: underline;
  168. }
  169. .bash span {
  170. font-family: 'Courier New', Courier, monospace;
  171. }