mirror of
https://github.com/NaiboWang/EasySpider.git
synced 2026-08-28 23:20:41 +08:00
76 lines
1.4 KiB
CSS
76 lines
1.4 KiB
CSS
/**
|
|
* Copyright 2011 Google Inc. All Rights Reserved.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/**
|
|
* @author opensource@google.com
|
|
* @license Apache License, Version 2.0.
|
|
*/
|
|
|
|
*,
|
|
:before,
|
|
:after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
background: rgba(0, 0, 0, 0.9);
|
|
display: flex;
|
|
font-family: sans-serif;
|
|
height: 120px;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
padding: 12px;
|
|
}
|
|
|
|
textarea {
|
|
background-color: transparent;
|
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
color: #f0f0f0;
|
|
display: block;
|
|
font-family: monospace;
|
|
font-size: 13px;
|
|
margin: 0;
|
|
overflow-x: hidden;
|
|
padding: 2px;
|
|
resize: none;
|
|
}
|
|
|
|
#query-box, #results-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#query-box {
|
|
padding-right: 12px;
|
|
width: 60%;
|
|
}
|
|
|
|
#results-box {
|
|
width: 40%;
|
|
}
|
|
|
|
.box-name {
|
|
color: #808080;
|
|
font-size: 12px;
|
|
padding-bottom: 2px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
#query, #results {
|
|
flex: 1;
|
|
width: 100%;
|
|
}
|