mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 21:24:54 +08:00
75 lines
1.4 KiB
CSS
75 lines
1.4 KiB
CSS
@import "tailwind/inputs";
|
|
@import "tailwind/buttons";
|
|
@import "tailwind/modals";
|
|
@import "tailwind/flyouts";
|
|
@import "tailwind/radio";
|
|
@import "tailwind/loader.css";
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
.tw-hidden {
|
|
@apply hidden
|
|
}
|
|
|
|
html {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.border {
|
|
border-style: solid;
|
|
border-color: theme('borderColor.DEFAULT', currentColor);
|
|
}
|
|
|
|
.scroll-container .ps__rail-y{
|
|
background-color: var(--sn-white);
|
|
opacity: 1;
|
|
}
|
|
|
|
.scroll-container.ps-transparent .ps__rail-y{
|
|
background-color: transparent;
|
|
|
|
&::after,
|
|
&::before {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
|
|
.scroll-container .ps__thumb-y{
|
|
background-color: var(--sn-grey);
|
|
opacity: 1;
|
|
right: 5px;
|
|
}
|
|
|
|
.scroll-container .ps__rail-x{
|
|
background-color: var(--sn-white);
|
|
opacity: 1;
|
|
}
|
|
|
|
.scroll-container .ps__thumb-x{
|
|
background-color: var(--sn-grey);
|
|
opacity: 1;
|
|
bottom: 5px;
|
|
}
|
|
|
|
/* Hide caret in Safari */
|
|
#relationships-section summary::-webkit-details-marker {
|
|
display: none;
|
|
}
|
|
|
|
.ag-theme-alpine {
|
|
--ag-font-family: "SN Inter", "Open Sans", Arial, Helvetica, sans-serif !important;
|
|
}
|
|
|
|
.animate-skeleton {
|
|
background-image: linear-gradient(90deg, #ddd 0px, #e8e8e8 40px, #ddd 80px);
|
|
background-size: 500px;
|
|
animation: shine-lines 1.6s infinite linear
|
|
}
|
|
|
|
@keyframes shine-lines {
|
|
0% { background-position: -150px }
|
|
|
|
40%, 100% { background-position: 320px }
|
|
}
|