mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
45 lines
965 B
Plaintext
45 lines
965 B
Plaintext
<style>
|
|
#manager-menu {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 8px;
|
|
}
|
|
|
|
#manager-menu>.option {
|
|
background-color: var(--blue);
|
|
width: 100%;
|
|
height: 50px;
|
|
color: white;
|
|
display: flex;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
padding-left: 15px;
|
|
align-items: center;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#manager-menu>.option * {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.inverted {
|
|
background-color: var(--gray) !important;
|
|
color: var(--background) !important;
|
|
}
|
|
|
|
</style>
|
|
<div id="manager-menu">
|
|
<div class="page-header">
|
|
What do you want to do?
|
|
</div>
|
|
<div class="option install">
|
|
Install Olympus
|
|
</div>
|
|
<div class="option update">
|
|
Update/remove Olympus
|
|
</div>
|
|
<div class="option inverted manage">
|
|
View and manage instances (WIP)
|
|
</div>
|
|
</div> |