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 | .token { |
| #2 | word-break: break-word; /* Break long words */ |
| #3 | overflow-wrap: break-word; /* Wrap text if it's too long */ |
| #4 | width: 100%; |
| #5 | white-space: pre-wrap; |
| #6 | } |
| #7 | |
| #8 | .prose li p { |
| #9 | margin-top: -19px; |
| #10 | } |
| #11 | |
| #12 | @keyframes highlightSweep { |
| #13 | 0% { |
| #14 | transform: scaleX(0); |
| #15 | opacity: 0; |
| #16 | } |
| #17 | 100% { |
| #18 | transform: scaleX(1); |
| #19 | opacity: 1; |
| #20 | } |
| #21 | } |
| #22 | |
| #23 | .highlight-text { |
| #24 | display: inline-block; |
| #25 | position: relative; |
| #26 | font-weight: normal; |
| #27 | padding: 0; |
| #28 | border-radius: 4px; |
| #29 | } |
| #30 | |
| #31 | .highlight-text::before { |
| #32 | content: ""; |
| #33 | position: absolute; |
| #34 | left: 0; |
| #35 | right: 0; |
| #36 | top: 0; |
| #37 | bottom: 0; |
| #38 | background: rgb(233 213 255 / 0.7); |
| #39 | transform-origin: left; |
| #40 | transform: scaleX(0); |
| #41 | opacity: 0; |
| #42 | z-index: -1; |
| #43 | border-radius: inherit; |
| #44 | } |
| #45 | |
| #46 | @keyframes fontWeightAnimation { |
| #47 | 0% { |
| #48 | font-weight: normal; |
| #49 | padding: 0; |
| #50 | } |
| #51 | 100% { |
| #52 | font-weight: 600; |
| #53 | padding: 0 4px; |
| #54 | } |
| #55 | } |
| #56 | |
| #57 | @keyframes backgroundColorAnimation { |
| #58 | 0% { |
| #59 | background-color: transparent; |
| #60 | } |
| #61 | 100% { |
| #62 | background-color: rgba(180, 231, 255, 0.7); |
| #63 | } |
| #64 | } |
| #65 | |
| #66 | .highlight-text.animate { |
| #67 | animation: |
| #68 | fontWeightAnimation 0.1s ease-out forwards, |
| #69 | backgroundColorAnimation 0.1s ease-out forwards; |
| #70 | animation-delay: 0.88s, 1.1s; |
| #71 | } |
| #72 | |
| #73 | .highlight-text.dark { |
| #74 | background-color: rgba(213, 242, 255, 0.7); |
| #75 | color: #000; |
| #76 | } |
| #77 | |
| #78 | .highlight-text.animate::before { |
| #79 | animation: highlightSweep 0.5s ease-out forwards; |
| #80 | animation-delay: 0.6s; |
| #81 | animation-fill-mode: forwards; |
| #82 | animation-iteration-count: 1; |
| #83 | } |
| #84 | |
| #85 | :root[class~="dark"] .highlight-text::before { |
| #86 | background: rgb(88 28 135 / 0.5); |
| #87 | } |
| #88 | |
| #89 | @keyframes blink { |
| #90 | 0%, 100% { opacity: 0; } |
| #91 | 50% { opacity: 1; } |
| #92 | } |
| #93 | |
| #94 | .markdown-cursor { |
| #95 | display: inline-block; |
| #96 | animation: blink 0.8s ease-in-out infinite; |
| #97 | color: rgba(213, 242, 255, 0.7); |
| #98 | margin-left: 1px; |
| #99 | font-size: 1.2em; |
| #100 | line-height: 1; |
| #101 | vertical-align: baseline; |
| #102 | position: relative; |
| #103 | top: 2px; |
| #104 | } |
| #105 | |
| #106 | :root[class~="dark"] .markdown-cursor { |
| #107 | color: #6366f1; |
| #108 | } |