web: Reorganize into frontend/backend

This commit is contained in:
2025-11-06 12:41:03 -06:00
parent 54b5b9dd7f
commit c2d5e58c75
75 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
/*
* 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);
}