154 lines
2.8 KiB
CSS
154 lines
2.8 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
body{
|
|
color:#fff;
|
|
}
|
|
/* :root {
|
|
--foreground-rgb: 0, 0, 0;
|
|
--background-start-rgb: 214, 219, 220;
|
|
--background-end-rgb: 255, 255, 255;
|
|
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--foreground-rgb: 255, 255, 255;
|
|
--background-start-rgb: 0, 0, 0;
|
|
--background-end-rgb: 0, 0, 0;
|
|
}
|
|
} */
|
|
.text-ellipsis-3 {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
-webkit-line-clamp: 3;
|
|
}
|
|
.scrollbarBox {
|
|
/* IE 10+ */
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
.scrollbarBox::-webkit-scrollbar {
|
|
/* display:none; */
|
|
width: 6px;
|
|
}
|
|
|
|
.scrollbarBox::-webkit-scrollbar-thumb {
|
|
border-radius: 10px;
|
|
-webkit-box-shadow: inset 0 0 5px rgba(138, 138, 138, 0.2);
|
|
background: nb-theme(background-basic-color-4);
|
|
|
|
}
|
|
|
|
.scrollbarBox::-webkit-scrollbar-track {
|
|
-webkit-box-shadow: inset 0 0 5px rgba(138, 138, 138, 0.2);
|
|
border-radius: 10px;
|
|
background: nb-theme(background-basic-color-2);
|
|
;
|
|
}
|
|
|
|
.scrollbarBox_hidden {
|
|
scrollbar-width: none;
|
|
/* firefox */
|
|
-ms-overflow-style: none;
|
|
|
|
/* IE 10+ */
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.adm-list-body,
|
|
.adm-list-item {
|
|
border: none !important;
|
|
background: none !important;
|
|
}
|
|
|
|
.whitespace-no-wrap {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
|
|
.imageBlur {
|
|
filter: blur(8px);
|
|
}
|
|
|
|
.tabPinkLine::after {
|
|
content: "";
|
|
position: absolute;
|
|
background-image: url(http://localhost:3000/icons/tabindicator.png);
|
|
height: 34px;
|
|
background-position: -2px -18px;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
z-index: 1;
|
|
width: 34px;
|
|
right: 0;
|
|
bottom: -20px;
|
|
}
|
|
.titlePinkLine::after {
|
|
content: "";
|
|
position: absolute;
|
|
background-image: url(http://localhost:3000/icons/pinkline.png);
|
|
height: 12px;
|
|
width: inherit;
|
|
min-width: 42px;
|
|
max-width: 100%;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
z-index: 1;
|
|
right: -8px;
|
|
bottom: -4px;
|
|
}
|
|
|
|
.adm-floating-panel{
|
|
--border-radius:16px !important;
|
|
}
|
|
.adm-jumbo-tabs-tab-active{
|
|
color:#fff!important;
|
|
font-weight: bold;
|
|
}
|
|
.adm-jumbo-tabs-tab-description{
|
|
background: none;
|
|
width: 100%!important;
|
|
}
|
|
.adm-jumbo-tabs-header{
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 10;
|
|
background-color: #07050A;
|
|
color: #ffffff88;
|
|
}
|
|
.adm-jumbo-tabs-header .adm-jumbo-tabs-tab-list{
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
.adm-floating-panel-header{
|
|
background-color: #07050A!important;
|
|
}
|
|
.adm-tab-bar .adm-tab-bar-item-icon{
|
|
height:32px;
|
|
}
|
|
.adm-image-viewer-slides .adm-image-viewer-slide{
|
|
margin-right: 0;
|
|
}
|
|
|
|
.videoMask{
|
|
display: none;
|
|
}
|
|
.adm-dialog .adm-center-popup-wrap{
|
|
top: 0;
|
|
left: 0;
|
|
transform: none;
|
|
max-width: none;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.adm-dialog .adm-dialog-content{
|
|
max-height: none;
|
|
height: 100%;
|
|
} |