69 lines
2.8 KiB
CSS
69 lines
2.8 KiB
CSS
/* ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
|
* ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
|
|
* ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
|
|
* ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
|
|
* ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
|
|
* ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
|
|
* ┃ Copyright (c) 2017, the Perspective Authors. ┃
|
|
* ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
|
|
* ┃ This file is part of the Perspective library, distributed under the terms ┃
|
|
* ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
|
|
* ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
*/
|
|
|
|
body {
|
|
margin: 0;
|
|
background-color: #f0f0f0;
|
|
font-family: "ui-monospace", "SFMono-Regular", "SF Mono", "Menlo",
|
|
"Consolas", "Liberation Mono", monospace;
|
|
}
|
|
|
|
.container {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
|
|
display: grid;
|
|
gap: 8px;
|
|
grid-template-columns: 1fr 1fr;
|
|
grid-template-rows: 45px 1fr;
|
|
}
|
|
|
|
perspective-viewer {
|
|
grid-row: 2;
|
|
}
|
|
|
|
.toolbar {
|
|
grid-row: 1;
|
|
grid-column-start: 1;
|
|
grid-column-end: 3;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 10px;
|
|
padding: 10px;
|
|
justify-content: stretch;
|
|
border-bottom: 1px solid #666;
|
|
}
|
|
|
|
button {
|
|
font-family: "ui-monospace", "SFMono-Regular", "SF Mono", "Menlo",
|
|
"Consolas", "Liberation Mono", monospace;
|
|
}
|
|
|
|
.workspace-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.workspace-toolbar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
perspective-workspace {
|
|
height: 100vh;
|
|
}
|
|
}
|