mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-28 02:36:16 -04:00
Styles rewritten in a modular format with themable properties stored in variables.
This commit is contained in:
parent
e120422b05
commit
e0e5670d0e
19 changed files with 834 additions and 658 deletions
28
src/web/stylesheets/components/_pane.scss
Normal file
28
src/web/stylesheets/components/_pane.scss
Normal file
|
@ -0,0 +1,28 @@
|
|||
/**
|
||||
* 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue