You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
640 B
23 lines
640 B
/*
|
|
* 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;
|
|
} |