81 lines
1.6 KiB
CSS
81 lines
1.6 KiB
CSS
/*
|
|
* Copyright (c) 2006 LMH <lmh[at]info-pull.com>
|
|
* Added to Metasploit under the terms of the Metasploit Framework License v1.2
|
|
* Additions Copyright (C) 2006-2007 Metasploit LLC
|
|
*/
|
|
|
|
html,body {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #00132A;
|
|
color: #FFFFFF;
|
|
font-family: monospace, console, fixed, terminal;
|
|
font-size: 11px;
|
|
}
|
|
|
|
#console_window {
|
|
background: #00132A;
|
|
padding: 1em;
|
|
}
|
|
|
|
#console_output {
|
|
width: 100%;
|
|
white-space: pre-wrap; /* css-3 */
|
|
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
|
white-space: -pre-wrap; /* Opera 4-6 */
|
|
white-space: -o-pre-wrap; /* Opera 7 */
|
|
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
|
background: #00132A;
|
|
}
|
|
|
|
.output_line {
|
|
white-space: pre-wrap; /* css-3 */
|
|
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
|
white-space: -pre-wrap; /* Opera 4-6 */
|
|
white-space: -o-pre-wrap; /* Opera 7 */
|
|
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
|
}
|
|
|
|
|
|
#input {
|
|
width: 100%;
|
|
border: none;
|
|
padding: 0;
|
|
background: #00132A;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.input {
|
|
font-family: monospace, console, fixed, terminal;
|
|
background: #00132A;
|
|
border: 0;
|
|
color: #FFFFFF;
|
|
width: 600px;
|
|
overflow: hidden;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.prompt {
|
|
color: #FFFFFF;
|
|
font-family: monospace, console, fixed, terminal;
|
|
text-align: right;
|
|
font-size: 11px;
|
|
}
|
|
|
|
#console_command_bar {
|
|
background: #00132A;
|
|
margin-top: 1em;
|
|
}
|
|
|
|
#console_input {
|
|
font-size: 11px;
|
|
font-family: monospace, console, fixed, terminal;
|
|
}
|
|
|
|
#console_status {
|
|
color: #FFFFFF;
|
|
font-family: monospace;
|
|
font-size: 12px;
|
|
text-transform: smallcaps;
|
|
}
|