mirror of
https://github.com/ANL-CEEESA/UnitCommitment.jl.git
synced 2025-12-06 00:08:52 -06:00
47 lines
919 B
CSS
47 lines
919 B
CSS
/*
|
|
* UnitCommitment.jl: Optimization Package for Security-Constrained Unit Commitment
|
|
* Copyright (C) 2020-2025, UChicago Argonne, LLC. All rights reserved.
|
|
* Released under the modified BSD license. See COPYING.md for more details.
|
|
*/
|
|
|
|
.FormWrapper {
|
|
margin: 0 auto;
|
|
max-width: var(--site-max-width);
|
|
}
|
|
|
|
.Form {
|
|
background-color: var(--contrast-0);
|
|
border: var(--box-border);
|
|
border-radius: var(--border-radius);
|
|
box-shadow: var(--box-shadow);
|
|
min-height: 48px;
|
|
margin: 0 12px;
|
|
min-width: var(--site-min-width);
|
|
max-height: 500px;
|
|
padding: 12px;
|
|
}
|
|
|
|
.FormRow {
|
|
display: flex;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.FormRow label {
|
|
width: 350px;
|
|
padding: 6px 12px;
|
|
text-align: right;
|
|
}
|
|
|
|
.FormRow input {
|
|
flex: 1;
|
|
font-family: monospace;
|
|
border: var(--box-border);
|
|
border-radius: var(--border-radius);
|
|
padding: 4px;
|
|
margin: 2px 3px;
|
|
}
|
|
|
|
.FormRow_unit {
|
|
color: rgba(0, 0, 0, 0.4);
|
|
}
|