summaryrefslogtreecommitdiffhomepage
path: root/cloud/web/src/ui/style/index.css
diff options
context:
space:
mode:
authorFrank <[email protected]>2025-08-29 23:32:17 -0400
committerFrank <[email protected]>2025-08-29 23:32:17 -0400
commit37f284f9a97d3354143d64fc76c2eb9f7d9ccf9e (patch)
tree053db9abcb2178c71b22ebeadd07f920750ef5d2 /cloud/web/src/ui/style/index.css
parent0178eab29bda2f1b37a29543cd313ede48ad3977 (diff)
downloadopencode-37f284f9a97d3354143d64fc76c2eb9f7d9ccf9e.tar.gz
opencode-37f284f9a97d3354143d64fc76c2eb9f7d9ccf9e.zip
wip: cloud
Diffstat (limited to 'cloud/web/src/ui/style/index.css')
-rw-r--r--cloud/web/src/ui/style/index.css50
1 files changed, 0 insertions, 50 deletions
diff --git a/cloud/web/src/ui/style/index.css b/cloud/web/src/ui/style/index.css
deleted file mode 100644
index 117f596d0..000000000
--- a/cloud/web/src/ui/style/index.css
+++ /dev/null
@@ -1,50 +0,0 @@
-/* tokens */
-@import "./token/color.css";
-@import "./token/reset.css";
-@import "./token/animation.css";
-@import "./token/font.css";
-@import "./token/space.css";
-
-/* components */
-@import "./component/label.css";
-@import "./component/input.css";
-@import "./component/button.css";
-@import "./component/dialog.css";
-@import "./component/title-bar.css";
-
-body {
- font-family: var(--font-mono);
- line-height: 1;
- color: var(--color-text);
- background-color: var(--color-bg);
- cursor: default;
- user-select: none;
- text-underline-offset: 0.1875rem;
-}
-
-a {
- text-decoration: underline;
- &:active {
- color: var(--color-text-accent);
- }
-}
-
-::selection {
- background-color: var(--color-text-accent-invert);
-}
-
-/* Responsive utilities */
-[data-max-width] {
- width: 100%;
-
- & > * {
- max-width: 90rem;
- margin-left: auto;
- margin-right: auto;
- width: 100%;
- }
-
- &[data-max-width-64] > * {
- max-width: 64rem;
- }
-}