2017-04-13 17:59:37 +01:00
|
|
|
/**
|
|
|
|
* Controls area styles
|
|
|
|
*
|
|
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
|
|
* @copyright Crown Copyright 2017
|
|
|
|
* @license Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#controls {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
bottom: 0;
|
2022-07-01 12:01:48 +01:00
|
|
|
padding: 10px 0;
|
2017-04-24 23:59:35 +01:00
|
|
|
border-top: 1px solid var(--primary-border-colour);
|
2018-06-10 14:55:15 +01:00
|
|
|
background-color: var(--secondary-background-colour);
|
|
|
|
}
|
|
|
|
|
2019-06-28 17:09:00 +01:00
|
|
|
#controls-content {
|
|
|
|
position: relative;
|
2022-07-01 12:01:48 +01:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
align-items: center;
|
2019-06-28 17:09:00 +01:00
|
|
|
}
|
|
|
|
|
2018-06-10 14:55:15 +01:00
|
|
|
#auto-bake-label {
|
|
|
|
display: inline-block;
|
|
|
|
width: 100px;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
text-align: center;
|
|
|
|
color: var(--primary-font-colour);
|
|
|
|
font-size: 14px;
|
2018-06-17 12:44:12 +01:00
|
|
|
cursor: pointer;
|
2023-04-17 13:50:43 +12:00
|
|
|
/*line-height: 0;*/
|
|
|
|
}
|
|
|
|
|
|
|
|
#auto-bake {
|
|
|
|
position: relative;
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
opacity: 1;
|
|
|
|
z-index: initial;
|
2018-06-10 14:55:15 +01:00
|
|
|
}
|
|
|
|
|
2019-03-19 14:37:46 +00:00
|
|
|
#auto-bake-label .check,
|
|
|
|
#auto-bake-label .check::before {
|
|
|
|
border-color: var(--input-highlight-colour);
|
|
|
|
color: var(--input-highlight-colour);
|
|
|
|
}
|
|
|
|
|
2018-06-10 14:55:15 +01:00
|
|
|
#auto-bake-label .checkbox-decorator {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#bake {
|
|
|
|
box-shadow: none;
|
2017-04-13 17:59:37 +01:00
|
|
|
}
|
2018-06-17 12:44:12 +01:00
|
|
|
|
|
|
|
#controls .btn {
|
2018-07-26 17:47:14 +00:00
|
|
|
border-radius: 30px;
|
2022-07-01 12:01:48 +01:00
|
|
|
margin: 0;
|
2018-06-17 12:44:12 +01:00
|
|
|
}
|
2019-05-07 09:26:55 +01:00
|
|
|
|
2022-05-30 19:25:41 +01:00
|
|
|
.output-maximised .hide-on-maximised-output {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2019-05-07 09:26:55 +01:00
|
|
|
.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);}
|
|
|
|
}
|