20 lines
922 B
CSS
20 lines
922 B
CSS
/*
|
|
* Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
|
|
* Browser Exploitation Framework (BeEF) - http://beefproject.com
|
|
* See the file 'doc/COPYING' for copying permission
|
|
*/
|
|
|
|
/* Basic Terminal CSS */
|
|
.wterm_terminal { background: #000; color: #fff; font-size: 1em; font-family: monospace; padding: 3px; width: 100%; height: 100%; display: block; overflow-x: none; overflow-y: auto; }
|
|
|
|
/* TODO: Input Box Width is faulty */
|
|
.wterm_terminal input { background: transparent; border: 0; color: #fff; width: 100%; font-size: 1em; font-family: monospace; outline: none; }
|
|
.wterm_terminal div:first { margin-bottom: 1em; }
|
|
.wterm_terminal .wterm_prompt { float: left; clear: left; }
|
|
.wterm_terminal form { float: left; margin: 0px; width: 75%; }
|
|
|
|
/* Themes */
|
|
.wterm_theme_green_on_black { background: #000; color: #0f0; }
|
|
.wterm_theme_green_on_black input { background: transparent; border: 0; color: #0f0; }
|
|
|