mirror of https://github.com/ANL-CEEESA/RELOG.git
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.
27 lines
596 B
27 lines
596 B
/*
|
|
* RELOG: Supply Chain Analysis and Optimization
|
|
* 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);
|
|
}
|