mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 07:26:19 +00:00
chore: checkpoint current work
This commit is contained in:
@@ -1097,4 +1097,4 @@
|
||||
&.bubble-53 {
|
||||
background-image: url('@/assets/images/chat/chatbubbles/bubble_53.png');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+227
-17
@@ -7,6 +7,11 @@
|
||||
src: url("@/assets/webfonts/Ubuntu-C.ttf");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: UbuntuCondensed;
|
||||
src: local("Ubuntu Condensed"), local("Ubuntu");
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
padding: 0;
|
||||
@@ -177,16 +182,231 @@ body {
|
||||
@apply pointer-events-none relative h-[130px] w-[90px] bg-position-[center_-8px] bg-no-repeat;
|
||||
}
|
||||
|
||||
.ubuntu-close-button {
|
||||
@apply inline-block h-[20px] w-[19px] bg-transparent bg-position-[0px_0px] bg-no-repeat outline-0;
|
||||
background-image: url("@/assets/images/ui/ubuntu-close-buttons.png");
|
||||
.nitro-card-shell {
|
||||
border: 2px solid #000 !important;
|
||||
border-radius: 10px;
|
||||
background: #f2f2eb;
|
||||
box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
|
||||
overflow: hidden;
|
||||
max-width: min(calc(100vw - 16px), 100%);
|
||||
max-height: calc(100vh - 16px);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
@apply bg-position-[-38px];
|
||||
.nitro-card-header-shell {
|
||||
border: 2px solid #3c88a6;
|
||||
border-bottom-color: #000;
|
||||
border-radius: 8px 8px 0 0;
|
||||
background: #30728c;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.nitro-card-title {
|
||||
margin: 0 auto;
|
||||
font-family: UbuntuCondensed, Ubuntu, sans-serif;
|
||||
font-weight: 400;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.nitro-card-close-button,
|
||||
.ubuntu-close-button {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
min-width: 20px;
|
||||
border: 2px solid #000;
|
||||
border-radius: 4px;
|
||||
background: #bf2c2c;
|
||||
position: relative;
|
||||
transition: border-color .2s ease, filter .2s ease, transform .15s ease;
|
||||
}
|
||||
|
||||
.nitro-card-close-button::before,
|
||||
.nitro-card-close-button::after,
|
||||
.ubuntu-close-button::before,
|
||||
.ubuntu-close-button::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
width: 10px;
|
||||
height: 2px;
|
||||
border-radius: 2px;
|
||||
background: #fff;
|
||||
transform-origin: center;
|
||||
}
|
||||
|
||||
.nitro-card-close-button::before,
|
||||
.ubuntu-close-button::before {
|
||||
transform: translate(-50%, -50%) rotate(45deg);
|
||||
}
|
||||
|
||||
.nitro-card-close-button::after,
|
||||
.ubuntu-close-button::after {
|
||||
transform: translate(-50%, -50%) rotate(-45deg);
|
||||
}
|
||||
|
||||
.nitro-card-close-button:hover,
|
||||
.ubuntu-close-button:hover {
|
||||
border-color: #fff;
|
||||
filter: brightness(1.08);
|
||||
}
|
||||
|
||||
.nitro-card-close-button:active,
|
||||
.ubuntu-close-button:active {
|
||||
transform: translateY(1px);
|
||||
filter: brightness(0.96);
|
||||
}
|
||||
|
||||
.nitro-card-content-shell {
|
||||
border: 0;
|
||||
border-top: 0;
|
||||
border-radius: 0 0 8px 8px;
|
||||
background: #f2f2eb;
|
||||
font-family: Ubuntu, sans-serif;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.nitro-card-shell,
|
||||
.nitro-card-content-shell {
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: UbuntuCondensed, Ubuntu, sans-serif;
|
||||
font-weight: 400;
|
||||
line-height: 1.1;
|
||||
color: #111;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
&:active {
|
||||
@apply bg-position-[-19px];
|
||||
p,
|
||||
span,
|
||||
label,
|
||||
li,
|
||||
td,
|
||||
th,
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
button {
|
||||
font-family: Ubuntu, sans-serif;
|
||||
color: #111;
|
||||
}
|
||||
|
||||
p,
|
||||
label,
|
||||
li,
|
||||
td,
|
||||
th,
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
button {
|
||||
font-size: 12px;
|
||||
line-height: 1.25;
|
||||
}
|
||||
}
|
||||
|
||||
.nitro-card-tabs-shell {
|
||||
background: #d9ded7;
|
||||
border-top: 0;
|
||||
border-bottom: 2px solid #c4cabf;
|
||||
}
|
||||
|
||||
.nitro-card-tab-item {
|
||||
background: #d2d7cf;
|
||||
border: 2px solid #000;
|
||||
border-bottom: 0;
|
||||
color: #000;
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
|
||||
}
|
||||
|
||||
.nitro-card-tab-item-active {
|
||||
background: #f2f2eb;
|
||||
}
|
||||
|
||||
.nitro-card-panel {
|
||||
background: rgba(0, 0, 0, 0.045) !important;
|
||||
border: 1px solid #c4cabf !important;
|
||||
border-radius: 6px !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.nitro-card-row {
|
||||
background: rgba(0, 0, 0, 0.035) !important;
|
||||
border: 1px solid #c4cabf !important;
|
||||
border-radius: 6px !important;
|
||||
box-shadow: none !important;
|
||||
transition: background-color .15s ease, border-color .15s ease;
|
||||
}
|
||||
|
||||
.nitro-card-row:hover {
|
||||
background: rgba(0, 0, 0, 0.07) !important;
|
||||
border-color: #aeb7aa !important;
|
||||
}
|
||||
|
||||
.nitro-card-divider {
|
||||
border-color: #c4cabf !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.nitro-card-shell :where(.bg-muted, .bg-light, .bg-light-dark, .bg-white, .bg-white\/50, .bg-white\/80) {
|
||||
background: rgba(0, 0, 0, 0.045) !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.nitro-card-shell :where(.border, .border-muted, .border-card-grid-item-border, .border-card-grid-item-border-active, .border-white, .border-white\/10, .border-white\/20, .border-white\/30) {
|
||||
border-color: #c4cabf !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.nitro-card-shell :where(.shadow, .shadow-md, .shadow-lg, .shadow-inner, .shadow-inner1px) {
|
||||
box-shadow: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 991.98px) {
|
||||
.nitro-card-shell {
|
||||
width: min(calc(100vw - 16px), 100%) !important;
|
||||
max-width: calc(100vw - 16px) !important;
|
||||
max-height: calc(100vh - 16px) !important;
|
||||
}
|
||||
|
||||
.nitro-card-header-shell {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.nitro-card-title {
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.nitro-card-content-shell {
|
||||
padding: 8px !important;
|
||||
}
|
||||
|
||||
.nitro-card-tabs-shell {
|
||||
flex-wrap: wrap;
|
||||
gap: 3px;
|
||||
padding: 4px 6px 0;
|
||||
}
|
||||
|
||||
.nitro-card-tab-item {
|
||||
padding: 4px 9px;
|
||||
}
|
||||
|
||||
.nitro-card-shell,
|
||||
.nitro-card-content-shell {
|
||||
p,
|
||||
label,
|
||||
li,
|
||||
td,
|
||||
th,
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
button {
|
||||
font-size: 11.5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -571,16 +791,6 @@ body {
|
||||
font-size: var(--font-size, 16px); /* Fallback to 16px if not set */
|
||||
}
|
||||
|
||||
/* Header and Tab Colors */
|
||||
|
||||
.bg-card-header {
|
||||
background-color: #1e7295; /* e.g., #2c3e50 */
|
||||
}
|
||||
|
||||
.bg-card-tabs {
|
||||
background-color: #185d79; /* Match bg-card-header */
|
||||
}
|
||||
|
||||
.nitro-wired {
|
||||
background: #d5d5d5;
|
||||
border: 1px solid #8f8f8f !important;
|
||||
|
||||
+170
-201
@@ -1,220 +1,146 @@
|
||||
.nitro-card {
|
||||
resize: both;
|
||||
border: 2px solid #000 !important;
|
||||
border-radius: 10px;
|
||||
background: #f2f2eb;
|
||||
box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
|
||||
|
||||
@include media-breakpoint-down(lg) {
|
||||
max-width: 100vw !important;
|
||||
max-height: 100vh !important;
|
||||
}
|
||||
.nitro-card-header {
|
||||
position: relative;
|
||||
min-height: 36px;
|
||||
max-height: 36px;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 5px;
|
||||
background: #30728c;
|
||||
border: 2px solid #3c88a6;
|
||||
border-bottom-color: #000;
|
||||
border-radius: 8px 8px 0 0;
|
||||
box-shadow: none;
|
||||
|
||||
&.theme-primary {
|
||||
border: 1px solid #283F5D;
|
||||
|
||||
.nitro-card-header {
|
||||
min-height: 33px;
|
||||
max-height: 33px;
|
||||
background: #1E7295;
|
||||
|
||||
.nitro-card-header-text {
|
||||
color: #FFF;
|
||||
text-shadow: 0px 4px 4px rgba(#000, 0.25);
|
||||
@include font-size(1.35);
|
||||
}
|
||||
|
||||
.nitro-card-header-close {
|
||||
cursor: pointer;
|
||||
padding: 2px 2px;
|
||||
line-height: 1;
|
||||
border-radius: .25rem;
|
||||
box-shadow: 0 0 0 1.6px #FFF;
|
||||
border: 2px solid #921911;
|
||||
background: repeating-linear-gradient(
|
||||
rgba(245, 80, 65, 1),
|
||||
rgba(245, 80, 65, 1) 50%,
|
||||
rgba(194, 48, 39, 1) 50%,
|
||||
rgba(194, 48, 39, 1) 100%
|
||||
);
|
||||
|
||||
&:hover {
|
||||
filter: brightness(1.2);
|
||||
}
|
||||
|
||||
&:active {
|
||||
filter: brightness(0.8);
|
||||
}
|
||||
}
|
||||
|
||||
.nitro-card-header-report-camera {
|
||||
cursor: pointer;
|
||||
padding: 1px 3px;
|
||||
line-height: 1;
|
||||
border-radius: .25rem;
|
||||
box-shadow: 0 0 0 1.6px #FFF;
|
||||
border: 2px solid #921911;
|
||||
background: repeating-linear-gradient(
|
||||
rgba(245, 80, 65, 1),
|
||||
rgba(245, 80, 65, 1) 50%,
|
||||
rgba(194, 48, 39, 1) 50%,
|
||||
rgba(194, 48, 39, 1) 100%
|
||||
);
|
||||
|
||||
&:hover {
|
||||
filter: brightness(1.2);
|
||||
}
|
||||
|
||||
&:active {
|
||||
filter: brightness(0.8);
|
||||
}
|
||||
}
|
||||
&:before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nitro-card-tabs {
|
||||
background-color: #185D79;
|
||||
|
||||
.nav-item {
|
||||
padding: .2rem .8rm;
|
||||
background-color: #B6BEC5;
|
||||
color: #000;
|
||||
z-index: 1;
|
||||
margin-bottom: -1px;
|
||||
|
||||
&.active {
|
||||
background-color: #DFDFDF;
|
||||
border-color: #283F5D #283F5D #DFDFDF !important;
|
||||
border-bottom: 1px solid black;
|
||||
|
||||
&:before {
|
||||
background: #FFF;
|
||||
}
|
||||
}
|
||||
|
||||
&:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 93%;
|
||||
height: 3px;
|
||||
border-radius: 0.25rem;
|
||||
top: 1.5px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
margin: auto;
|
||||
background: #c2c9d1;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.nitro-card-header-text {
|
||||
color: #fff;
|
||||
text-shadow: 1px 1px 1px #000;
|
||||
font-family: UbuntuCondensed, Ubuntu, sans-serif;
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
line-height: 1;
|
||||
min-height: auto;
|
||||
}
|
||||
|
||||
.content-area {
|
||||
background-color: #DFDFDF;
|
||||
.nitro-card-header-close {
|
||||
cursor: pointer;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
padding: 0;
|
||||
line-height: 1;
|
||||
border-radius: 4px;
|
||||
border: 2px solid #000;
|
||||
box-shadow: none;
|
||||
background: #bf2c2c;
|
||||
|
||||
&:hover {
|
||||
border-color: #fff;
|
||||
filter: brightness(1.08);
|
||||
}
|
||||
|
||||
&:active {
|
||||
filter: brightness(0.96);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.theme-primary-slim {
|
||||
border: 1px solid #283F5D;
|
||||
.nitro-card-tabs {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 4px;
|
||||
min-height: auto;
|
||||
max-height: none;
|
||||
padding: 4px 8px 0;
|
||||
background: #d9ded7;
|
||||
border-bottom: 2px solid #c4cabf;
|
||||
|
||||
.nitro-card-header {
|
||||
position: relative;
|
||||
min-height: 28px;
|
||||
max-height: 28px;
|
||||
background: repeating-linear-gradient(#2DABC2, #2DABC2 50%, #2B91A7 50%, #2B91A7 100%);
|
||||
border-bottom: 2px solid darken(#2B91A7, 5);
|
||||
box-shadow: 0 2px white;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding-top:2px;
|
||||
.nav-item {
|
||||
padding: 0.35rem 0.8rem;
|
||||
margin-bottom: -1px;
|
||||
color: #000;
|
||||
background: #d2d7cf;
|
||||
border: 2px solid #000;
|
||||
border-bottom: 0;
|
||||
border-radius: 8px 8px 0 0;
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
|
||||
|
||||
&:before {
|
||||
position: absolute;
|
||||
content: ' ';
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background-color: rgba(#FFF, 0.3);
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nitro-card-header-text {
|
||||
color: #FFF;
|
||||
text-shadow: 0px 4px 4px rgba(#000, 0.25);
|
||||
@include font-size (1.125);
|
||||
min-height: 21px;
|
||||
}
|
||||
|
||||
.nitro-card-header-close {
|
||||
cursor: pointer;
|
||||
padding: 0px 2px;
|
||||
line-height: 1;
|
||||
@include font-size(.675);
|
||||
border-radius: .25rem;
|
||||
box-shadow: 0 0 0 1.6px #FFF;
|
||||
border: 2px solid #921911;
|
||||
background: repeating-linear-gradient(
|
||||
rgba(245, 80, 65, 1),
|
||||
rgba(245, 80, 65, 1) 50%,
|
||||
rgba(194, 48, 39, 1) 50%,
|
||||
rgba(194, 48, 39, 1) 100%
|
||||
);
|
||||
|
||||
&:hover {
|
||||
filter: brightness(1.2);
|
||||
}
|
||||
|
||||
&:active {
|
||||
filter: brightness(0.8);
|
||||
}
|
||||
}
|
||||
|
||||
.nitro-card-header-report-camera {
|
||||
cursor: pointer;
|
||||
padding: 0px 2px;
|
||||
margin-right: 4px;
|
||||
line-height: 1;
|
||||
@include font-size(.675);
|
||||
border-radius: .25rem;
|
||||
box-shadow: 0 0 0 1.6px #FFF;
|
||||
border: 2px solid #921911;
|
||||
background: repeating-linear-gradient(
|
||||
rgba(245, 80, 65, 1),
|
||||
rgba(245, 80, 65, 1) 50%,
|
||||
rgba(194, 48, 39, 1) 50%,
|
||||
rgba(194, 48, 39, 1) 100%
|
||||
);
|
||||
|
||||
&:hover {
|
||||
filter: brightness(1.2);
|
||||
}
|
||||
|
||||
&:active {
|
||||
filter: brightness(0.8);
|
||||
}
|
||||
&.active {
|
||||
background: #f2f2eb;
|
||||
border-color: #000 !important;
|
||||
border-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.nitro-card-tabs {
|
||||
background-color: #185D79;
|
||||
}
|
||||
|
||||
.content-area {
|
||||
background-color: #DFDFDF;
|
||||
}
|
||||
.content-area {
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
padding: 10px;
|
||||
background: #f2f2eb;
|
||||
border: 0;
|
||||
border-top: 0;
|
||||
border-radius: 0 0 8px 8px;
|
||||
font-family: Ubuntu, sans-serif;
|
||||
color: #111;
|
||||
}
|
||||
}
|
||||
|
||||
.content-area {
|
||||
height: 100%;
|
||||
padding-top: 8px;
|
||||
padding-bottom: 8px;
|
||||
overflow: auto;
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: Ubuntu, sans-serif;
|
||||
font-weight: 700;
|
||||
line-height: 1.15;
|
||||
color: #111;
|
||||
}
|
||||
|
||||
p,
|
||||
span,
|
||||
label,
|
||||
li,
|
||||
td,
|
||||
th,
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
button {
|
||||
font-family: Ubuntu, sans-serif;
|
||||
color: #111;
|
||||
}
|
||||
|
||||
p,
|
||||
label,
|
||||
li,
|
||||
td,
|
||||
th,
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
button {
|
||||
font-size: 12px;
|
||||
line-height: 1.25;
|
||||
}
|
||||
|
||||
&.theme-dark {
|
||||
background-color: #1C323F !important;
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(lg) {
|
||||
.content-area {
|
||||
height: 100% !important;
|
||||
min-height: auto !important;
|
||||
max-height: 100% !important;
|
||||
background-color: #1c323f !important;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -223,19 +149,11 @@
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.nitro-card-tabs {
|
||||
height: 100%;
|
||||
min-height: 133px;
|
||||
max-height: 133px;
|
||||
border-bottom: 1px solid #283F5D;
|
||||
}
|
||||
|
||||
.nitro-card-accordion-set {
|
||||
|
||||
&.active {
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
background: rgba(#FFF, 0.5);
|
||||
background: rgba(#fff, 0.5);
|
||||
border-bottom: 1px solid rgba(#000, 0.2);
|
||||
}
|
||||
|
||||
@@ -243,3 +161,54 @@
|
||||
border-bottom: 1px solid rgba(#000, 0.2);
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(lg) {
|
||||
.nitro-card {
|
||||
resize: none !important;
|
||||
max-width: calc(100vw - 16px) !important;
|
||||
max-height: calc(100vh - 16px) !important;
|
||||
}
|
||||
|
||||
.nitro-card {
|
||||
.nitro-card-header {
|
||||
min-height: 32px;
|
||||
max-height: 32px;
|
||||
padding: 4px;
|
||||
|
||||
.nitro-card-header-text {
|
||||
font-size: 17px;
|
||||
}
|
||||
}
|
||||
|
||||
.nitro-card-tabs {
|
||||
padding: 4px 6px 0;
|
||||
gap: 3px;
|
||||
|
||||
.nav-item {
|
||||
padding: 0.25rem 0.55rem;
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
.content-area {
|
||||
padding: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.content-area {
|
||||
min-height: auto !important;
|
||||
max-height: 100% !important;
|
||||
|
||||
p,
|
||||
label,
|
||||
li,
|
||||
td,
|
||||
th,
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
button {
|
||||
font-size: 11.5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+386
-97
@@ -1,111 +1,400 @@
|
||||
.nitro-purse-container {
|
||||
font-size: 1em;
|
||||
pointer-events: all;
|
||||
|
||||
width: 100%;
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
.nitro-purse-shell {
|
||||
width: 100%;
|
||||
max-width: 188px;
|
||||
margin-top: 6px;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.nitro-purse-shell.is-closed {
|
||||
width: 52px;
|
||||
max-width: 52px;
|
||||
}
|
||||
|
||||
.nitro-purse {
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
border: 1px solid rgba(255, 255, 255, 0.07);
|
||||
border-radius: 10px;
|
||||
background: rgba(10, 10, 12, 0.58);
|
||||
box-shadow:
|
||||
inset 0 1px 0 rgba(255, 255, 255, 0.05),
|
||||
0 8px 18px rgba(0, 0, 0, 0.14);
|
||||
transition: width 0.24s cubic-bezier(0.22, 1, 0.36, 1), max-width 0.24s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s ease;
|
||||
}
|
||||
|
||||
.nitro-purse.is-closed {
|
||||
width: 52px;
|
||||
}
|
||||
|
||||
.nitro-purse__header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 0.5rem;
|
||||
padding: 5px 7px;
|
||||
cursor: pointer;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
|
||||
background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
|
||||
transition: background-color 0.2s ease, border-color 0.2s ease;
|
||||
}
|
||||
|
||||
.nitro-purse__header.is-closed {
|
||||
justify-content: flex-end;
|
||||
gap: 5px;
|
||||
padding: 5px 6px;
|
||||
}
|
||||
|
||||
.nitro-purse__header-main {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nitro-purse__header-main.is-closed {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.nitro-purse__header-icon {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.nitro-purse__header-image {
|
||||
display: block;
|
||||
width: auto;
|
||||
height: 14px;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.nitro-purse__header-title {
|
||||
font-size: 0.82rem;
|
||||
font-weight: 700;
|
||||
line-height: 1;
|
||||
color: rgba(255, 255, 255, 0.92) !important;
|
||||
letter-spacing: 0.01em;
|
||||
}
|
||||
|
||||
.nitro-purse__header-toggle {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border-radius: 6px;
|
||||
color: rgba(255, 255, 255, 0.82);
|
||||
background: rgba(255, 255, 255, 0.06);
|
||||
transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.2s ease;
|
||||
}
|
||||
|
||||
.nitro-purse__header-toggle.is-open {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.nitro-purse__content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
padding: 6px;
|
||||
overflow: hidden;
|
||||
transform-origin: top;
|
||||
transition:
|
||||
max-height 0.58s cubic-bezier(0.16, 1, 0.3, 1),
|
||||
opacity 0.38s ease-out,
|
||||
transform 0.58s cubic-bezier(0.16, 1, 0.3, 1),
|
||||
padding 0.4s ease-out;
|
||||
max-height: 280px;
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.nitro-purse__content.is-closed {
|
||||
max-height: 0;
|
||||
opacity: 0;
|
||||
transform: translateY(-8px) scaleY(0.95);
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.nitro-purse__summary,
|
||||
.nitro-purse__seasonal {
|
||||
transition:
|
||||
opacity 0.32s ease-out,
|
||||
transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
|
||||
}
|
||||
|
||||
.nitro-purse__summary {
|
||||
transition-delay: 0.08s;
|
||||
}
|
||||
|
||||
.nitro-purse__seasonal {
|
||||
transition-delay: 0.16s;
|
||||
}
|
||||
|
||||
.nitro-purse__content.is-closed .nitro-purse__summary,
|
||||
.nitro-purse__content.is-closed .nitro-purse__seasonal {
|
||||
opacity: 0;
|
||||
transform: translateY(-6px);
|
||||
transition-delay: 0s;
|
||||
}
|
||||
|
||||
.nitro-purse__summary {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) 30px 26px;
|
||||
gap: 5px;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.nitro-purse__summary.is-no-hc {
|
||||
grid-template-columns: minmax(0, 1fr) 26px;
|
||||
}
|
||||
|
||||
.nitro-purse__primary,
|
||||
.nitro-purse__seasonal {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 3px;
|
||||
}
|
||||
|
||||
.nitro-purse .nitro-purse-button,
|
||||
.nitro-purse-seasonal-currency {
|
||||
min-height: 22px;
|
||||
padding: 2px 0;
|
||||
border: 0 !important;
|
||||
border-radius: 0 !important;
|
||||
background: transparent !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.nitro-purse .allcurrencypurse,
|
||||
.nitro-purse-seasonal-currency {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nitro-purse .allcurrencypurse::after,
|
||||
.nitro-purse-seasonal-currency::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: -1px;
|
||||
height: 1px;
|
||||
background: rgba(255, 255, 255, 0.08);
|
||||
}
|
||||
|
||||
.nitro-purse__primary > :last-child::after,
|
||||
.nitro-purse__seasonal > :last-child::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nitro-purse .allcurrencypurse .text-white {
|
||||
font-size: 0.76rem;
|
||||
font-weight: 700;
|
||||
line-height: 1;
|
||||
letter-spacing: 0.01em;
|
||||
}
|
||||
|
||||
.nitro-purse .nitro-purse-button.currency--1 .text-white {
|
||||
color: #7fdcff !important;
|
||||
}
|
||||
|
||||
.nitro-purse .nitro-purse-button.currency-0 .text-white {
|
||||
color: #ffd76d !important;
|
||||
}
|
||||
|
||||
.nitro-purse .nitro-purse-button.currency-5 .text-white {
|
||||
color: #df95ff !important;
|
||||
}
|
||||
|
||||
.nitro-purse-subscription {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 2px;
|
||||
min-height: 62px;
|
||||
cursor: pointer;
|
||||
border-left: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border-right: 1px solid rgba(255, 255, 255, 0.08);
|
||||
background: rgba(255, 255, 255, 0.02);
|
||||
}
|
||||
|
||||
.nitro-purse-subscription__icon {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
.nitro-purse-subscription__copy {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
gap: 1px;
|
||||
}
|
||||
|
||||
.nitro-purse-subscription__label {
|
||||
font-size: 0.5rem;
|
||||
font-weight: 700;
|
||||
color: rgba(255, 255, 255, 0.62) !important;
|
||||
letter-spacing: 0.08em;
|
||||
}
|
||||
|
||||
.nitro-purse-subscription__value {
|
||||
font-size: 0.54rem;
|
||||
font-weight: 700;
|
||||
line-height: 1.05;
|
||||
color: #ffffff !important;
|
||||
}
|
||||
|
||||
.nitro-purse__actions {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 3px;
|
||||
}
|
||||
|
||||
.nitro-purse__action-button {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 20px;
|
||||
padding: 0;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border-radius: 7px;
|
||||
color: rgba(255, 255, 255, 0.88);
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
transition: background-color 0.18s ease, transform 0.18s ease;
|
||||
}
|
||||
|
||||
.nitro-purse__action-button:hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.nitro-purse__action-button .nitro-icon {
|
||||
transform: scale(0.82);
|
||||
}
|
||||
|
||||
.nitro-purse-seasonal-currency > div {
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.seasonal-row {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.seasonal-text-padding,
|
||||
.seasonal-amount {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.seasonal-text {
|
||||
min-width: 0;
|
||||
font-size: 0.76rem;
|
||||
font-weight: 700;
|
||||
color: rgba(255, 255, 255, 0.76) !important;
|
||||
line-height: 1;
|
||||
letter-spacing: 0.01em;
|
||||
}
|
||||
|
||||
.seasonal-amount {
|
||||
margin-left: auto;
|
||||
white-space: nowrap;
|
||||
flex: 0 0 auto;
|
||||
font-size: 0.76rem;
|
||||
font-weight: 700;
|
||||
line-height: 1;
|
||||
color: rgba(255, 255, 255, 0.96) !important;
|
||||
}
|
||||
|
||||
.seasonal-image-padding {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0;
|
||||
border-radius: 0;
|
||||
background: transparent;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.seasonal-image {
|
||||
display: block;
|
||||
width: auto;
|
||||
height: 13px;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.nitro-purse-shell {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.nitro-purse-shell.is-closed {
|
||||
max-width: 52px;
|
||||
}
|
||||
|
||||
.nitro-purse {
|
||||
margin-top: 4px;
|
||||
|
||||
.nitro-purse-subscription {
|
||||
background-color: rgba($light, 0.1);
|
||||
}
|
||||
|
||||
.nitro-purse-button {
|
||||
padding: 3px 2px;
|
||||
}
|
||||
.coffecurrencybutton{
|
||||
border-radius: 0.5rem !important;
|
||||
background-color: #b69b83;
|
||||
border: 2px solid hsla(0deg, 0%, 100%, 0.5);
|
||||
margin-bottom: 3px;
|
||||
padding: 0px !important;
|
||||
width: 30px;
|
||||
pointer-events: all;
|
||||
}
|
||||
.borderhccontent{
|
||||
background-color: #212131;
|
||||
border-radius: 0.5rem!important;
|
||||
border: 2px solid #383853;
|
||||
height: calc(100% - 3px);
|
||||
}
|
||||
.nitro-purse-button.currency--1 {
|
||||
background: #e8b125;
|
||||
border: 2px solid #f4d892;
|
||||
}
|
||||
.nitro-purse-button.currency-0 {
|
||||
background: #c364c1;
|
||||
border: 2px solid #ecb3ea;
|
||||
}
|
||||
.nitro-purse-button.currency-5 {
|
||||
background: #6bafaa;
|
||||
border: 2px solid #ace6e2;
|
||||
}
|
||||
.allcurrencypurse{
|
||||
border-radius: 5px!important;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
border-radius: 9px;
|
||||
}
|
||||
|
||||
.nitro-purse-seasonal-currency {
|
||||
background-color: #212131;
|
||||
background: linear-gradient(to right, #5f5f8d, transparent);
|
||||
height: 30px;
|
||||
margin-bottom: 4px;
|
||||
border-radius: 0.5rem !important;
|
||||
}
|
||||
|
||||
.seasonal-image-padding {
|
||||
padding: 6px;
|
||||
.nitro-purse__content {
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
.seasonal-text-padding,
|
||||
.nitro-purse__summary {
|
||||
grid-template-columns: minmax(0, 1fr) 28px 24px;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.nitro-purse__summary.is-no-hc {
|
||||
grid-template-columns: minmax(0, 1fr) 24px;
|
||||
}
|
||||
|
||||
.nitro-purse-subscription {
|
||||
min-height: 58px;
|
||||
}
|
||||
|
||||
.nitro-purse .allcurrencypurse .text-white,
|
||||
.seasonal-text,
|
||||
.seasonal-amount {
|
||||
margin-left: 4px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
font-size: 0.72rem;
|
||||
}
|
||||
|
||||
.nitro-purse-seasonal-currency.purple {
|
||||
&.purple {
|
||||
background: linear-gradient(to right, #b17fbe, transparent);
|
||||
border-top-right-radius: 0.5rem;
|
||||
border-bottom-right-radius: 0.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.nitro-purse-seasonal-currency.bronze {
|
||||
.bronze {
|
||||
background: linear-gradient(to right, #d4943c, transparent);
|
||||
border-top-right-radius: 0.5rem;
|
||||
border-bottom-right-radius: 0.5rem;
|
||||
}
|
||||
.nitro-purse__header-title {
|
||||
font-size: 0.78rem;
|
||||
}
|
||||
}
|
||||
|
||||
.nitro-purse-seasonal-currency.pink {
|
||||
.pink {
|
||||
background: linear-gradient(to right, #d89ba8, transparent);
|
||||
border-top-right-radius: 0.5rem;
|
||||
border-bottom-right-radius: 0.5rem;
|
||||
}
|
||||
}
|
||||
@media (max-width: 420px) {
|
||||
.nitro-purse__summary {
|
||||
grid-template-columns: minmax(0, 1fr) 26px 22px;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.nitro-purse-seasonal-currency.blue {
|
||||
.blue{
|
||||
background: linear-gradient(to right, #95c3e5, transparent);
|
||||
border-top-right-radius: 0.5rem;
|
||||
border-bottom-right-radius: 0.5rem;
|
||||
}
|
||||
}
|
||||
.nitro-purse__summary.is-no-hc {
|
||||
grid-template-columns: minmax(0, 1fr) 22px;
|
||||
}
|
||||
|
||||
.nitro-purse-seasonal-currency.red {
|
||||
&.red{
|
||||
background: linear-gradient(to right, #ff0004, transparent);
|
||||
border-top-right-radius: 0.5rem;
|
||||
border-bottom-right-radius: 0.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
.nitro-purse-subscription {
|
||||
min-height: 54px;
|
||||
}
|
||||
|
||||
.topcurrencygen {
|
||||
margin-top: 2px;
|
||||
}
|
||||
.nitro-purse-subscription__value {
|
||||
font-size: 0.55rem;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,16 +1,65 @@
|
||||
.nitro-room-tools-container {
|
||||
position: absolute;
|
||||
bottom:60px;
|
||||
left: 15px;
|
||||
bottom: 118px;
|
||||
left: 0;
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
gap: 0;
|
||||
z-index: 71;
|
||||
|
||||
.nitro-room-tools-rail {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nitro-room-tools-toggle {
|
||||
position: absolute;
|
||||
left: calc(100% - 1px);
|
||||
top: 50%;
|
||||
width: 22px;
|
||||
height: 96px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
border-top-right-radius: 10px;
|
||||
border-bottom-right-radius: 10px;
|
||||
background: rgba(10, 10, 12, 0.58);
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
|
||||
transition: background .2s ease, border-color .2s ease;
|
||||
padding: 0;
|
||||
transform: translateY(-50%);
|
||||
z-index: 72;
|
||||
|
||||
&:hover {
|
||||
background: rgba(18, 18, 22, 0.72);
|
||||
border-color: rgba(255, 255, 255, 0.12);
|
||||
}
|
||||
|
||||
&.is-open {
|
||||
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
|
||||
}
|
||||
}
|
||||
|
||||
.nitro-room-tools {
|
||||
background: #212131;
|
||||
box-shadow: inset 0px 5px lighten(rgba(#000, .6), 2.5), inset 0 -4px darken(rgba(#000, .6), 4);
|
||||
border-top-right-radius: .25rem;
|
||||
border-bottom-right-radius: .25rem;
|
||||
background: rgba(10, 10, 12, 0.58);
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
border-top-right-radius: 12px;
|
||||
border-bottom-right-radius: 12px;
|
||||
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
|
||||
transition: all .2s ease;
|
||||
z-index: 71;
|
||||
margin-left: -20px;
|
||||
margin-left: 0;
|
||||
gap: 4px;
|
||||
padding: 6px 5px;
|
||||
min-width: 36px;
|
||||
min-height: 96px;
|
||||
|
||||
.list-group-item {
|
||||
background: transparent;
|
||||
@@ -49,32 +98,37 @@
|
||||
.nitro-room-tools-side-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-left: 10px;
|
||||
margin-left: 26px;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.nitro-room-history {
|
||||
background: #212131;
|
||||
box-shadow: inset 0px 5px lighten(rgba(#000, .6), 2.5), inset 0 -4px darken(rgba(#000, .6), 4);
|
||||
background: rgba(10, 10, 12, 0.58);
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
|
||||
transition: all .2s ease;
|
||||
width: 150px;
|
||||
overflow: hidden;
|
||||
z-index: 3;
|
||||
border-radius: 14px;
|
||||
}
|
||||
|
||||
.nitro-room-tools-info {
|
||||
background: #212131;
|
||||
box-shadow: inset 0px 5px lighten(rgba(#000, .6), 2.5), inset 0 -4px darken(rgba(#000, .6), 4);
|
||||
background: rgba(10, 10, 12, 0.58);
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
|
||||
transition: all .2s ease;
|
||||
max-width: 250px;
|
||||
border-radius: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
.nitro-room-tools-history {
|
||||
position: absolute;
|
||||
left: calc(100% - 2px);
|
||||
margin-left: 2px;
|
||||
height: 5%;
|
||||
top: 0;
|
||||
left: calc(100% + 4px);
|
||||
margin-left: 0;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.wordquiz-question {
|
||||
@@ -194,4 +248,4 @@
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user