mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-08 07:21:02 -04:00
82 lines
1.4 KiB
CSS
Executable file
82 lines
1.4 KiB
CSS
Executable file
/**
|
|
* Overall page structure styles
|
|
*
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
* @copyright Crown Copyright 2017
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
#banner { height: var(--banner-height); }
|
|
#operations { height: var(--operations-height); }
|
|
#controls { height: var(--controls-height); }
|
|
|
|
@media only screen and ( min-width: 768px ) {
|
|
#controls { height: var(--desktop-controls-height); }
|
|
}
|
|
|
|
#banner,
|
|
#content-wrapper {
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
|
|
#content-wrapper {
|
|
top: 0;
|
|
bottom: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#workspace-wrapper {
|
|
margin-top: var(--banner-height);
|
|
}
|
|
|
|
#controls {
|
|
position: fixed;
|
|
bottom: 0;
|
|
}
|
|
|
|
#recipe.maximised-pane,
|
|
#input.maximised-pane,
|
|
#output.maximised-pane {
|
|
position: fixed;
|
|
top: var(--banner-height);
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
#recipe.maximised-pane #controls {
|
|
display: none;
|
|
}
|
|
|
|
@media only screen and ( min-width: 768px ) {
|
|
#recipe {
|
|
padding-bottom: var(--desktop-controls-height);
|
|
}
|
|
|
|
#recipe .list-area {
|
|
bottom: var(--desktop-controls-height);
|
|
}
|
|
|
|
#workspace-wrapper {
|
|
height: calc(100vh - var(--banner-height));
|
|
}
|
|
|
|
#operations-dropdown {
|
|
max-height: max-content;
|
|
overflow: revert;
|
|
}
|
|
|
|
#operations, #recipe, #IO {
|
|
height: 100%;
|
|
}
|
|
|
|
#operations {
|
|
overflow: auto;
|
|
}
|
|
|
|
#controls {
|
|
position: absolute;
|
|
}
|
|
}
|
|
|