|
| 1 | +/*Design for Terminal*/ |
| 2 | +@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro'); |
| 3 | + |
| 4 | +#terminal-body { |
| 5 | + background: rgb(26, 26, 26); |
| 6 | + margin: 0; |
| 7 | + width: 100%; |
| 8 | + height: 100%; |
| 9 | + overflow: hidden; |
| 10 | +} |
| 11 | + |
| 12 | +#terminal { |
| 13 | + font-family: 'Source Code Pro', monospace; |
| 14 | + color: rgb(223, 223, 223); |
| 15 | + background: rgb(26, 26, 26); |
| 16 | + font-size: 12px; |
| 17 | + line-height: 14px; |
| 18 | + padding: 10px 10px 0; |
| 19 | + box-sizing: border-box; |
| 20 | + height: 500px; |
| 21 | + max-height: 500px; |
| 22 | + overflow-y: auto; |
| 23 | + overflow-x: hidden; |
| 24 | + border-radius: 5px 5px 0 0; |
| 25 | +} |
| 26 | + |
| 27 | +#terminal > .cmd { |
| 28 | + padding: 1px 0; |
| 29 | +} |
| 30 | + |
| 31 | +#terminal_input { |
| 32 | + width: 100%; |
| 33 | + background: rgb(26, 26, 26); |
| 34 | + border-radius: 0 0 5px 5px; |
| 35 | + padding: 0 0 0 10px !important; |
| 36 | +} |
| 37 | + |
| 38 | +.terminal_input--input, .terminal_input--prompt { |
| 39 | + font-family: 'Source Code Pro', monospace; |
| 40 | + margin-bottom: 0; |
| 41 | + border: 0 !important; |
| 42 | + background: transparent !important; |
| 43 | + color: rgb(223, 223, 223); |
| 44 | + font-size: 12px; |
| 45 | + padding: 1px 0 4px !important; |
| 46 | +} |
| 47 | +.terminal_input--input { |
| 48 | + margin-left: 6px; |
| 49 | + line-height: 1; |
| 50 | + outline: none !important; |
| 51 | +} |
| 52 | + |
| 53 | +.terminal-notify { |
| 54 | + position: absolute; |
| 55 | + right: 30px; |
| 56 | + bottom: 30px; |
| 57 | + padding: 3.5px 7px; |
| 58 | + border-radius: 3px; |
| 59 | + background: #fff; |
| 60 | + color: #000; |
| 61 | + opacity: .5; |
| 62 | + font-size: 16px; |
| 63 | + cursor: pointer; |
| 64 | +} |
| 65 | + |
| 66 | +.terminal-notify:hover { |
| 67 | + opacity: .9; |
| 68 | +} |
| 69 | + |
| 70 | +.ansi-black-fg { color: rgb(0, 0, 0); } |
| 71 | +.ansi-red-fg { color: rgb(166, 0, 44); } |
| 72 | +.ansi-green-fg { color: rgb(55, 106, 27); } |
| 73 | +.ansi-yellow-fg { color: rgb(241, 133, 24); } |
| 74 | +.ansi-blue-fg { color: rgb(17, 56, 163); } |
| 75 | +.ansi-magenta-fg { color: rgb(67, 0, 117); } |
| 76 | +.ansi-cyan-fg { color: rgb(18, 95, 105); } |
| 77 | +.ansi-white-fg { color: rgb(255, 255, 255); } |
| 78 | +.ansi-bright-black-fg { color: rgb(51, 51, 51); } |
| 79 | +.ansi-bright-red-fg { color: rgb(223, 45, 39); } |
| 80 | +.ansi-bright-green-fg { color: rgb(105, 175, 45); } |
| 81 | +.ansi-bright-yellow-fg { color: rgb(254, 232, 57); } |
| 82 | +.ansi-bright-blue-fg { color: rgb(68, 145, 240); } |
| 83 | +.ansi-bright-magenta-fg { color: rgb(151, 50, 174); } |
| 84 | +.ansi-bright-cyan-fg{ color: rgb(37, 173, 98); } |
| 85 | +.ansi-bright-white-fg { color: rgb(208, 208, 208); } |
| 86 | + |
| 87 | +.ansi-black-bg { background: rgb(0, 0, 0); } |
| 88 | +.ansi-red-bg { background: rgb(166, 0, 44); } |
| 89 | +.ansi-green-bg { background: rgb(55, 106, 27); } |
| 90 | +.ansi-yellow-bg { background: rgb(241, 133, 24); } |
| 91 | +.ansi-blue-bg { background: rgb(17, 56, 163); } |
| 92 | +.ansi-magenta-bg { background: rgb(67, 0, 117); } |
| 93 | +.ansi-cyan-bg { background: rgb(18, 95, 105); } |
| 94 | +.ansi-white-bg { background: rgb(255, 255, 255); } |
| 95 | +.ansi-bright-black-bg { background: rgb(51, 51, 51); } |
| 96 | +.ansi-bright-red-bg { background: rgb(223, 45, 39); } |
| 97 | +.ansi-bright-green-bg { background: rgb(105, 175, 45); } |
| 98 | +.ansi-bright-yellow-bg { background: rgb(254, 232, 57); } |
| 99 | +.ansi-bright-blue-bg { background: rgb(68, 145, 240); } |
| 100 | +.ansi-bright-magenta-bg { background: rgb(151, 50, 174); } |
| 101 | +.ansi-bright-cyan-bg { background: rgb(37, 173, 98); } |
| 102 | +.ansi-bright-white-bg { background: rgb(208, 208, 208); } |
0 commit comments