mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-10 02:54:15 +00:00
351 lines
4.9 KiB
Plaintext
351 lines
4.9 KiB
Plaintext
@import "antd/dist/antd.variable.less";
|
|
@import "theme/vars.less";
|
|
@import "theme/fonts.css";
|
|
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
|
|
width: 0;
|
|
height: 0;
|
|
z-index: 0;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
position: absolute;
|
|
z-index: 200;
|
|
|
|
height: 6px;
|
|
margin: 5px 10px 5px 5px;
|
|
transition: all 200ms ease-in-out;
|
|
|
|
border: 4px solid rgba(0, 0, 0, 0);
|
|
background-color: rgba(0, 0, 0, 0.15);
|
|
background-clip: padding-box;
|
|
|
|
-webkit-border-radius: 7px;
|
|
}
|
|
|
|
::-webkit-scrollbar-button {
|
|
width: 0;
|
|
height: 0;
|
|
display: none;
|
|
}
|
|
|
|
::-webkit-scrollbar-corner {
|
|
background-color: transparent;
|
|
}
|
|
|
|
html {
|
|
overflow: hidden;
|
|
height: 100%;
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
background-color: var(--background-color-primary) !important;
|
|
|
|
svg {
|
|
margin-right: 10px;
|
|
vertical-align: -0.125em;
|
|
}
|
|
}
|
|
|
|
body {
|
|
overflow: hidden;
|
|
-webkit-overflow-scrolling: touch;
|
|
-webkit-app-region: no-drag;
|
|
|
|
height: 100%;
|
|
|
|
user-select: none;
|
|
--webkit-user-select: none;
|
|
|
|
scroll-behavior: smooth;
|
|
text-rendering: optimizeLegibility !important;
|
|
|
|
background-color: var(--background-color-primary) !important;
|
|
font-family: var(--fontFamily);
|
|
}
|
|
|
|
#root {
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
position: fixed;
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
background-color: var(--background-color-primary) !important;
|
|
}
|
|
|
|
#nprogress {
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100vw;
|
|
|
|
.bar {
|
|
height: 2px;
|
|
background: #48acf0;
|
|
}
|
|
}
|
|
|
|
.ant-layout,
|
|
.content_layout,
|
|
.app_layout {
|
|
background: var(--background-color-primary) !important;
|
|
background-color: var(--background-color-primary) !important;
|
|
|
|
position: relative;
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
max-height: 100vh;
|
|
|
|
overflow: hidden;
|
|
transition: all 150ms ease-in-out;
|
|
|
|
::-webkit-scrollbar {
|
|
display: block;
|
|
position: absolute;
|
|
|
|
width: 14px;
|
|
height: 18px;
|
|
z-index: 200;
|
|
transition: all 200ms ease-in-out;
|
|
}
|
|
|
|
&.mobile {
|
|
//padding-top: 20px;
|
|
|
|
::-webkit-scrollbar {
|
|
display: none !important;
|
|
width: 0;
|
|
height: 0;
|
|
z-index: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.layout_page {
|
|
position: relative;
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
height: 100%;
|
|
|
|
margin: 10px 10px 30px 16px;
|
|
|
|
overflow-x: hidden;
|
|
overflow-y: overlay;
|
|
|
|
transition: all 150ms ease-in-out;
|
|
|
|
&.noMargin {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.layout_page {
|
|
padding: 10px;
|
|
margin: 0;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
span,
|
|
p {
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
|
|
.postCard {
|
|
min-width: 30px;
|
|
}
|
|
}
|
|
|
|
.fade-transverse-active {
|
|
transition: all 250ms;
|
|
height: fit-content;
|
|
width: 100%;
|
|
}
|
|
|
|
.fade-transverse-enter {
|
|
opacity: 0;
|
|
transform: translateX(-30px);
|
|
}
|
|
|
|
.fade-transverse-leave {
|
|
opacity: 0;
|
|
transform: translateX(30px);
|
|
}
|
|
|
|
.fade-scale-leave-active,
|
|
.fade-scale-enter-active {
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.fade-scale-enter {
|
|
opacity: 0;
|
|
transform: scale(1.2);
|
|
}
|
|
|
|
.fade-scale-leave {
|
|
opacity: 0;
|
|
transform: scale(0.8);
|
|
}
|
|
|
|
.fade-opacity-active {
|
|
transition: all 250ms;
|
|
opacity: 1;
|
|
}
|
|
|
|
.fade-opacity-leave {
|
|
opacity: 0;
|
|
}
|
|
|
|
.fade-opacity-enter {
|
|
opacity: 1;
|
|
}
|
|
|
|
.app_initialization {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
padding: 50px;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
>div {
|
|
width: 100%;
|
|
height: fit-content;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
margin-bottom: 50px;
|
|
}
|
|
}
|
|
|
|
.app_crash_wrapper {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
// Fixments
|
|
.ant-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
user-select: none;
|
|
--webkit-user-select: none;
|
|
}
|
|
|
|
.ant-result-extra {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.ant-modal-confirm-btns {
|
|
display: flex;
|
|
}
|
|
|
|
.ant-message {
|
|
svg {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.ant-avatar-square {
|
|
border-radius: 12px;
|
|
}
|
|
|
|
*:not(input):not(textarea) {
|
|
-webkit-user-select: none;
|
|
/* disable selection/Copy of UIWebView */
|
|
-webkit-touch-callout: none;
|
|
/* disable the IOS popup when long-press on a link */
|
|
}
|
|
|
|
.splash_wrapper {
|
|
overflow: hidden;
|
|
|
|
//background-color: rgba(240, 242, 245, 0.8);
|
|
backdrop-filter: blur(10px);
|
|
--webkit-backdrop-filter: blur(10px);
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 1000;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.splash_logo {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
img {
|
|
width: fit-content;
|
|
max-width: 50%;
|
|
max-height: 50%;
|
|
filter: drop-shadow(14px 10px 10px rgba(128, 128, 128, 0.5));
|
|
}
|
|
}
|
|
|
|
@keyframes fadeOut {
|
|
from {
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.ant-result {
|
|
.ant-result-content {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
text-align: center;
|
|
|
|
padding: 10px;
|
|
background-color: var(--background-color-accent);
|
|
color: var(--background-color-primary);
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
p,
|
|
span {
|
|
margin: 0;
|
|
}
|
|
}
|
|
} |