mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-27 02:06:15 -04:00
28 lines
522 B
SCSS
28 lines
522 B
SCSS
![]() |
/**
|
||
|
* Workspace pane styles
|
||
|
*
|
||
|
* @author n1474335 [n1474335@gmail.com]
|
||
|
* @copyright Crown Copyright 2017
|
||
|
* @license Apache-2.0
|
||
|
*/
|
||
|
|
||
|
$titleHeight: 43px;
|
||
|
|
||
|
.title {
|
||
|
padding: 10px;
|
||
|
height: $titleHeight;
|
||
|
border-bottom: 1px solid $primaryBorderColour;
|
||
|
font-weight: $titleWeight;
|
||
|
color: $titleColour;
|
||
|
background-color: $secondaryBackgroundColour;
|
||
|
}
|
||
|
|
||
|
.list-area {
|
||
|
position: absolute;
|
||
|
top: $titleHeight;
|
||
|
bottom: 0;
|
||
|
width: 100%;
|
||
|
list-style-type: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|