repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | /* Global styles */ |
| #2 | :root { |
| #3 | --bg-color: #1a1a2e; |
| #4 | --surface-color: #16213e; |
| #5 | --surface-hover: #1f3460; |
| #6 | --primary-color: #e94560; |
| #7 | --primary-hover: #ff6b6b; |
| #8 | --success-color: #4ade80; |
| #9 | --warning-color: #fbbf24; |
| #10 | --error-color: #ef4444; |
| #11 | --text-primary: #f8f9fa; |
| #12 | --text-secondary: #a0aec0; |
| #13 | --text-muted: #6b7280; |
| #14 | --border-color: #2d3748; |
| #15 | --border-radius: 8px; |
| #16 | --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3); |
| #17 | } |
| #18 | |
| #19 | * { |
| #20 | box-sizing: border-box; |
| #21 | margin: 0; |
| #22 | padding: 0; |
| #23 | } |
| #24 | |
| #25 | html, body { |
| #26 | height: 100%; |
| #27 | } |
| #28 | |
| #29 | body { |
| #30 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; |
| #31 | background-color: var(--bg-color); |
| #32 | color: var(--text-primary); |
| #33 | line-height: 1.6; |
| #34 | } |
| #35 | |
| #36 | #root { |
| #37 | min-height: 100%; |
| #38 | display: flex; |
| #39 | flex-direction: column; |
| #40 | } |
| #41 | |
| #42 | a { |
| #43 | color: var(--primary-color); |
| #44 | text-decoration: none; |
| #45 | } |
| #46 | |
| #47 | a:hover { |
| #48 | color: var(--primary-hover); |
| #49 | text-decoration: underline; |
| #50 | } |
| #51 | |
| #52 | button { |
| #53 | cursor: pointer; |
| #54 | font-family: inherit; |
| #55 | font-size: inherit; |
| #56 | } |
| #57 | |
| #58 | /* Utility classes */ |
| #59 | .sr-only { |
| #60 | position: absolute; |
| #61 | width: 1px; |
| #62 | height: 1px; |
| #63 | padding: 0; |
| #64 | margin: -1px; |
| #65 | overflow: hidden; |
| #66 | clip: rect(0, 0, 0, 0); |
| #67 | white-space: nowrap; |
| #68 | border-width: 0; |
| #69 | } |
| #70 |