123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- @mixin light {
- /* color */
- --white: white;
- --black: rgb(48, 48, 48);
- --gray: rgb(250, 250, 250);
- --primary: rgb(29, 147, 171);
- --second: rgb(231, 248, 255);
- --hover-color: #f3f3f3;
- --bar-color: rgba(0, 0, 0, 0.1);
- --theme-color: var(--gray);
- /* shadow */
- --shadow: 50px 50px 100px 10px rgb(0, 0, 0, 0.1);
- --card-shadow: 0px 2px 4px 0px rgb(0, 0, 0, 0.05);
- /* stroke */
- --border-in-light: 1px solid rgb(222, 222, 222);
- }
- @mixin dark {
- /* color */
- --white: rgb(30, 30, 30);
- --black: rgb(187, 187, 187);
- --gray: rgb(21, 21, 21);
- --primary: rgb(29, 147, 171);
- --second: rgb(27 38 42);
- --hover-color: #323232;
- --bar-color: rgba(255, 255, 255, 0.1);
- --border-in-light: 1px solid rgba(255, 255, 255, 0.192);
- --theme-color: var(--gray);
- }
- .light {
- @include light;
- }
- .dark {
- @include dark;
- }
- .mask {
- filter: invert(0.8);
- }
- :root {
- @include light;
- --window-width: 90vw;
- --window-height: 90vh;
- --sidebar-width: 300px;
- --window-content-width: calc(100% - var(--sidebar-width));
- --message-max-width: 80%;
- }
- @media only screen and (max-width: 600px) {
- :root {
- --window-width: 100vw;
- --window-height: 100vh;
- --sidebar-width: 100vw;
- --window-content-width: var(--window-width);
- --message-max-width: 100%;
- }
- .no-mobile {
- display: none;
- }
- }
- @media (prefers-color-scheme: dark) {
- :root {
- @include dark;
- }
- }
- body {
- background-color: var(--gray);
- color: var(--black);
- margin: 0;
- padding: 0;
- height: 100vh;
- width: 100vw;
- display: flex;
- justify-content: center;
- align-items: center;
- user-select: none;
- font-family: "Noto Sans SC", "SF Pro SC", "SF Pro Text", "SF Pro Icons",
- "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
- @media only screen and (max-width: 600px) {
- background-color: var(--second);
- }
- }
- ::-webkit-scrollbar {
- --bar-width: 5px;
- width: var(--bar-width);
- height: var(--bar-width);
- }
- ::-webkit-scrollbar-track {
- background-color: transparent;
- }
- ::-webkit-scrollbar-thumb {
- background-color: var(--bar-color);
- border-radius: 20px;
- background-clip: content-box;
- border: 1px solid transparent;
- }
- select {
- border: var(--border-in-light);
- padding: 8px 10px;
- border-radius: 10px;
- appearance: none;
- cursor: pointer;
- background-color: var(--white);
- color: var(--black);
- }
- input[type="checkbox"] {
- cursor: pointer;
- background-color: var(--white);
- color: var(--black);
- appearance: none;
- border: var(--border-in-light);
- border-radius: 5px;
- height: 16px;
- width: 16px;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- }
- input[type="checkbox"]:checked::after {
- display: inline-block;
- width: 8px;
- height: 8px;
- background-color: var(--primary);
- content: " ";
- border-radius: 2px;
- }
- input[type="range"] {
- appearance: none;
- border: var(--border-in-light);
- border-radius: 10px;
- padding: 5px 15px 5px 10px;
- background-color: var(--white);
- color: var(--black);
- &::before {
- content: attr(value);
- font-size: 12px;
- }
- }
- input[type="range"]::-webkit-slider-thumb {
- appearance: none;
- height: 8px;
- width: 20px;
- background-color: var(--primary);
- border-radius: 10px;
- cursor: pointer;
- transition: all ease 0.3s;
- margin-left: 5px;
- }
- input[type="range"]::-webkit-slider-thumb:hover {
- transform: scaleY(1.2);
- width: 24px;
- }
- input[type="number"],
- input[type="text"] {
- appearance: none;
- border-radius: 10px;
- border: var(--border-in-light);
- height: 32px;
- box-sizing: border-box;
- background: var(--white);
- color: var(--black);
- padding: 0 10px;
- max-width: 50%;
- }
- div.math {
- overflow-x: auto;
- }
- .modal-mask {
- z-index: 9999;
- position: fixed;
- top: 0;
- left: 0;
- height: 100vh;
- width: 100vw;
- background-color: rgba($color: #000000, $alpha: 0.5);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .link {
- font-size: 12px;
- color: var(--primary);
- text-decoration: none;
- &:hover {
- text-decoration: underline;
- }
- }
- pre {
- position: relative;
- &:hover .copy-code-button {
- pointer-events: all;
- transform: translateX(0px);
- opacity: 0.5;
- }
- .copy-code-button {
- position: absolute;
- right: 10px;
- cursor: pointer;
- padding: 0px 5px;
- background-color: var(--black);
- color: var(--white);
- border: var(--border-in-light);
- border-radius: 10px;
- transform: translateX(10px);
- pointer-events: none;
- opacity: 0;
- transition: all ease 0.3s;
- &:after {
- content: "copy";
- }
- &:hover {
- opacity: 1;
- }
- }
- }
|