2023-04-26 02:37:29 +00:00
|
|
|
.Panel {
|
|
|
|
background: #1f1f1f;
|
2023-05-01 18:32:32 +00:00
|
|
|
color: rgb(255 255 255 / 35%);
|
2023-04-26 02:37:29 +00:00
|
|
|
font-size: 1.7rem;
|
|
|
|
height: 100%;
|
|
|
|
line-height: 1.4;
|
2023-05-07 14:21:35 +00:00
|
|
|
padding: $grid-gutter-width calc($grid-gutter-width / 2);
|
2023-04-26 02:37:29 +00:00
|
|
|
position: fixed;
|
|
|
|
transition: transform 0.3s;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
z-index: 10;
|
|
|
|
|
|
|
|
.close {
|
|
|
|
filter: invert(1);
|
2023-05-10 01:46:39 +00:00
|
|
|
margin: -1.6rem 0 0 -2.4rem;
|
2023-04-26 02:37:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.actionsHolder {
|
2023-05-29 04:40:17 +00:00
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-04-26 02:37:29 +00:00
|
|
|
|
|
|
|
&.scrolled {
|
|
|
|
overflow-y: auto;
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
section {
|
2023-05-01 18:32:32 +00:00
|
|
|
border-bottom: 2px solid rgb(255 255 255 / 10%);
|
2023-04-26 02:37:29 +00:00
|
|
|
padding: 1.8rem 0;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0.6em 0;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
font-weight: normal;
|
|
|
|
margin-left: -1.6rem;
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-12 13:45:31 +00:00
|
|
|
.link {
|
|
|
|
cursor: pointer;
|
2023-05-10 01:46:39 +00:00
|
|
|
text-decoration: none;
|
|
|
|
border-bottom: none;
|
2023-05-12 13:03:46 +00:00
|
|
|
color: rgb(255 255 255 / 35%);
|
2023-05-29 04:40:17 +00:00
|
|
|
font-size: inherit;
|
2023-05-12 13:03:46 +00:00
|
|
|
font-weight: normal !important;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: none;
|
|
|
|
color: #fff;
|
|
|
|
}
|
2023-05-10 01:46:39 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 16:13:48 +00:00
|
|
|
.linkWithIcon {
|
2023-04-26 02:37:29 +00:00
|
|
|
margin-left: -1.6rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stats {
|
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-end;
|
|
|
|
margin-top: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.hidden {
|
|
|
|
transform: translateX(100%);
|
|
|
|
}
|
2023-05-03 16:13:48 +00:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
display: inline-block;
|
|
|
|
filter: invert(0.5);
|
|
|
|
margin-right: 0.3em;
|
|
|
|
width: 1em;
|
|
|
|
|
|
|
|
img {
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
}
|
2023-05-29 04:40:17 +00:00
|
|
|
|
|
|
|
.typograph {
|
|
|
|
align-items: baseline;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.typographStatus {
|
|
|
|
@include font-size(1.2rem);
|
|
|
|
}
|
|
|
|
|
|
|
|
.typographStatusSuccess {
|
|
|
|
color: #28d353;
|
|
|
|
}
|
|
|
|
|
|
|
|
.backToMenuControl {
|
2023-06-16 14:47:24 +00:00
|
|
|
color: rgb(255 255 255 / 70%);
|
2023-05-29 04:40:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.shortcutList {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shortcut {
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shortcutButton {
|
|
|
|
border: 1px solid;
|
|
|
|
border-bottom-width: 2px;
|
|
|
|
border-radius: 2px;
|
|
|
|
display: inline-block;
|
|
|
|
font-style: italic;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
padding: 0.1em 0.4em;
|
|
|
|
}
|
2023-04-26 02:37:29 +00:00
|
|
|
}
|