spb/zyquo-cloud-web Public MIT
Zyquo Cloud Web — every cloud model, one beautiful chat, entirely in your browser.
TypeScript 81.9%
CSS 8.9%
JavaScript 7.5%
Shell 1.1%
HTML 0.6%
1/*2 * global.css3 * Zyquo Cloud Web4 *5 * Author: Simon-Pierre Boucher6 * Mail: contact@spboucher.ai7 *8 * Global resets and base element styles. Everything references tokens.css.9 */1011*,12*::before,13*::after {14 box-sizing: border-box;15}1617html,18body,19#root {20 height: 100%;21 margin: 0;22 padding: 0;23}2425body {26 font-family: var(--z-font-sans);27 font-size: var(--z-font-size-body);28 line-height: var(--z-line-height-body);29 color: var(--z-text-primary);30 background: var(--z-background);31 -webkit-font-smoothing: antialiased;32 text-rendering: optimizeLegibility;33 overflow: hidden;34 overscroll-behavior: none;35}3637button {38 font-family: inherit;39 font-size: inherit;40 color: inherit;41 background: none;42 border: none;43 padding: 0;44 cursor: pointer;45}4647input,48textarea,49select {50 font-family: inherit;51 font-size: inherit;52 color: inherit;53}5455a {56 color: var(--z-accent);57 text-decoration: none;58}59a:hover {60 text-decoration: underline;61}6263code,64pre,65kbd {66 font-family: var(--z-font-mono);67}6869::selection {70 background: var(--z-accent-subtle);71}7273/* Thin, unobtrusive scrollbars */74* {75 scrollbar-width: thin;76 scrollbar-color: var(--z-border) transparent;77}78