mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-08 15:25:01 -04:00
70 lines
1.3 KiB
CSS
Executable file
70 lines
1.3 KiB
CSS
Executable file
/**
|
|
* Controls area styles
|
|
*
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
* @copyright Crown Copyright 2017
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
#controls {
|
|
position: absolute;
|
|
width: 100%;
|
|
bottom: 0;
|
|
padding: 10px 0;
|
|
border-top: 1px solid var(--primary-border-colour);
|
|
background-color: var(--secondary-background-colour);
|
|
}
|
|
|
|
#controls-content {
|
|
position: relative;
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
align-items: center;
|
|
}
|
|
|
|
#auto-bake-label {
|
|
display: inline-block;
|
|
width: 100px;
|
|
padding: 0;
|
|
margin: 0;
|
|
text-align: center;
|
|
color: var(--primary-font-colour);
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
line-height: 0;
|
|
}
|
|
|
|
#auto-bake-label .check,
|
|
#auto-bake-label .check::before {
|
|
border-color: var(--input-highlight-colour);
|
|
color: var(--input-highlight-colour);
|
|
}
|
|
|
|
#auto-bake-label .checkbox-decorator {
|
|
position: relative;
|
|
}
|
|
|
|
#bake {
|
|
box-shadow: none;
|
|
}
|
|
|
|
#controls .btn {
|
|
border-radius: 30px;
|
|
margin: 0;
|
|
}
|
|
|
|
.output-maximised .hide-on-maximised-output {
|
|
display: none !important;
|
|
}
|
|
|
|
.spin {
|
|
animation-name: spin;
|
|
animation-duration: 3s;
|
|
animation-iteration-count: infinite;
|
|
animation-timing-function: linear;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {transform: rotate(0deg);}
|
|
100% {transform: rotate(360deg);}
|
|
}
|