mirror of
https://github.com/ANL-CEEESA/UnitCommitment.jl.git
synced 2025-12-06 00:08:52 -06:00
27 lines
631 B
CSS
27 lines
631 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.
|
|
*/
|
|
|
|
.SectionButton {
|
|
height: 48px;
|
|
width: 48px;
|
|
font-size: 16px;
|
|
border: 0;
|
|
background-color: transparent;
|
|
margin: 8px 0 8px 0px;
|
|
cursor: pointer;
|
|
color: var(--contrast-60);
|
|
}
|
|
|
|
.SectionButton:hover {
|
|
color: var(--contrast-100);
|
|
background-color: var(--contrast-20);
|
|
border-radius: var(--border-radius);
|
|
}
|
|
|
|
.SectionButton:active {
|
|
background-color: var(--contrast-60);
|
|
}
|