106 lines
1.9 KiB
CSS
106 lines
1.9 KiB
CSS
/*
|
|
Copyright (c) Microsoft Corporation.
|
|
|
|
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.
|
|
*/
|
|
|
|
.drop-target {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex: auto;
|
|
flex-direction: column;
|
|
background-color: var(--vscode-editor-background);
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 100;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.drop-target .title {
|
|
font-size: 24px;
|
|
color: #666;
|
|
font-weight: bold;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.drop-target .processing-error {
|
|
font-size: 24px;
|
|
color: #e74c3c;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
margin: 30px;
|
|
}
|
|
|
|
.drop-target input {
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.drop-target button {
|
|
color: rgb(255, 255, 255);
|
|
background-color: rgb(0, 122, 204);
|
|
padding: 8px 12px;
|
|
border: none;
|
|
margin: 30px 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.progress {
|
|
position: relative;
|
|
margin: auto;
|
|
width: 400px;
|
|
height: 10px;
|
|
border: 1px solid #aaa;
|
|
}
|
|
|
|
.inner-progress {
|
|
background-color: #aaa;
|
|
height: 100%;
|
|
}
|
|
|
|
.workbench {
|
|
contain: size;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
background-color: #000;
|
|
flex: none;
|
|
flex-basis: 48px;
|
|
line-height: 48px;
|
|
font-size: 16px;
|
|
color: white;
|
|
}
|
|
|
|
.workbench .header .toolbar-button {
|
|
margin: 12px;
|
|
padding: 8px 4px;
|
|
}
|
|
|
|
.workbench .logo {
|
|
font-size: 20px;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.workbench .product {
|
|
font-weight: 600;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.workbench .header .title {
|
|
margin-left: 16px;
|
|
}
|