29 lines
1.3 KiB
CSS
29 lines
1.3 KiB
CSS
/*
|
|
* Copyright 2012 Wade Alcorn wade@bindshell.net
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
/* 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; }
|
|
|