mirror of
https://github.com/ANL-CEEESA/UnitCommitment.jl.git
synced 2025-12-06 00:08:52 -06:00
23 lines
640 B
CSS
23 lines
640 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.
|
|
*/
|
|
|
|
.Toast {
|
|
width: 600px;
|
|
border-radius: var(--border-radius);
|
|
box-shadow: 4px 4px 16px -2px rgba(0, 0, 0, 0.5);
|
|
margin: 0 auto;
|
|
background-color: #424242;
|
|
color: white;
|
|
padding: 0 16px;
|
|
position: fixed;
|
|
top: 48px;
|
|
left: 50%;
|
|
transform: translate(-50%, 0);
|
|
transition: opacity 0.5s ease;
|
|
cursor: default;
|
|
font-size: 15px;
|
|
line-height: 48px;
|
|
} |